add extra logging on message service registrations with the user service
this is to aid in diagnosing http://opensimulator.org/mantis/view.php?id=43510.6.8-post-fixes
parent
d7dc0381b8
commit
73045c5c43
|
@ -167,27 +167,37 @@ namespace OpenSim.Grid.UserServer.Modules
|
|||
}
|
||||
|
||||
public XmlRpcResponse XmlRPCRegisterMessageServer(XmlRpcRequest request, IPEndPoint remoteClient)
|
||||
{
|
||||
{
|
||||
m_log.DebugFormat(
|
||||
"[MSGSERVER]: Beginning processing message service registration request from {0}",
|
||||
remoteClient.Address);
|
||||
|
||||
XmlRpcResponse response = new XmlRpcResponse();
|
||||
Hashtable requestData = (Hashtable)request.Params[0];
|
||||
Hashtable responseData = new Hashtable();
|
||||
|
||||
if (requestData.Contains("uri"))
|
||||
{
|
||||
string URI = (string)requestData["uri"];
|
||||
string sendkey=(string)requestData["sendkey"];
|
||||
string recvkey=(string)requestData["recvkey"];
|
||||
MessageServerInfo m = new MessageServerInfo();
|
||||
m.URI = URI;
|
||||
m.sendkey = sendkey;
|
||||
m.recvkey = recvkey;
|
||||
RegisterMessageServer(URI, m);
|
||||
responseData["responsestring"] = "TRUE";
|
||||
response.Value = responseData;
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[MSGSERVER]: Successfully processed message service registration request from {0}",
|
||||
remoteClient.Address);
|
||||
Hashtable responseData = new Hashtable();
|
||||
|
||||
if (requestData.Contains("uri"))
|
||||
{
|
||||
string URI = (string)requestData["uri"];
|
||||
string sendkey = (string)requestData["sendkey"];
|
||||
string recvkey = (string)requestData["recvkey"];
|
||||
MessageServerInfo m = new MessageServerInfo();
|
||||
m.URI = URI;
|
||||
m.sendkey = sendkey;
|
||||
m.recvkey = recvkey;
|
||||
RegisterMessageServer(URI, m);
|
||||
responseData["responsestring"] = "TRUE";
|
||||
response.Value = responseData;
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[MSGSERVER]: Successfully processed message service registration request from {0}",
|
||||
remoteClient.Address);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_log.ErrorFormat(
|
||||
"[MSGSERVER]: Message service registration request from {0} did not contain a uri, not registering",
|
||||
remoteClient.Address);
|
||||
}
|
||||
|
||||
return response;
|
||||
|
|
Loading…
Reference in New Issue