Forgive is my question is stupid... I'm trying to understand the way Opensim is "programmed" following the code and with the documentation...<br><br>Well, if all the GRID servers launch a httpserver and create their xml-rpc... like these in the user server...<br>
<br>m_httpServer.AddXmlRPCHandler("get_user_by_name", m_userManager.XmlRPCGetUserMethodName);<br> m_httpServer.AddXmlRPCHandler("get_user_by_uuid", m_userManager.XmlRPCGetUserMethodUUID);<br>
m_httpServer.AddXmlRPCHandler("get_avatar_picker_avatar", m_userManager.XmlRPCGetAvatarPickerAvatar);<br><br>Should be possible to create a PHP service to emulate the user server, isn't it? A http server is based on open-request-response-close...<br>
<br>And then... where is the authentication? Where is the control of "give me your session id, man"?<br><br>I haven't developed any http standalone server in .Net... so maybe is a dummie question...<br> <br>
<br>Greetings.<br><br><br>