diff options
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 58e85d8..11eaa5f 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -130,12 +130,19 @@ namespace OpenSim.Grid.UserServer | |||
130 | theUser.currentAgent.currentRegion = SimInfo.UUID; | 130 | theUser.currentAgent.currentRegion = SimInfo.UUID; |
131 | theUser.currentAgent.currentHandle = SimInfo.regionHandle; | 131 | theUser.currentAgent.currentHandle = SimInfo.regionHandle; |
132 | 132 | ||
133 | m_log.Info("[LOGIN]: Sending expect user call to " | 133 | m_log.Info("[LOGIN]: Telling " |
134 | + SimInfo.regionName + " @ " + SimInfo.httpServerURI + " " + | 134 | + SimInfo.regionName + " @ " + SimInfo.httpServerURI + " " + |
135 | SimInfo.regionLocX + "," + SimInfo.regionLocY); | 135 | SimInfo.regionLocX + "," + SimInfo.regionLocY + " to expect user connection"); |
136 | 136 | ||
137 | XmlRpcRequest GridReq = new XmlRpcRequest("expect_user", SendParams); | 137 | XmlRpcRequest GridReq = new XmlRpcRequest("expect_user", SendParams); |
138 | XmlRpcResponse GridResp = GridReq.Send(SimInfo.httpServerURI, 6000); | 138 | XmlRpcResponse GridResp = GridReq.Send(SimInfo.httpServerURI, 6000); |
139 | |||
140 | if (GridResp.IsFault) | ||
141 | { | ||
142 | m_log.ErrorFormat( | ||
143 | "[LOGIN]: XMLRPC request for {0} failed, fault code: {1}, reason: {2}", | ||
144 | SimInfo.httpServerURI, GridResp.FaultCode, GridResp.FaultString); | ||
145 | } | ||
139 | } | 146 | } |
140 | catch (Exception) | 147 | catch (Exception) |
141 | { | 148 | { |