diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index 2cf3665..70b7e89 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -152,7 +152,15 @@ namespace OpenSim.Region.Communications.OGS1 | |||
152 | IList parameters = new ArrayList(); | 152 | IList parameters = new ArrayList(); |
153 | parameters.Add(param); | 153 | parameters.Add(param); |
154 | XmlRpcRequest req = new XmlRpcRequest("logout_of_simulator", parameters); | 154 | XmlRpcRequest req = new XmlRpcRequest("logout_of_simulator", parameters); |
155 | XmlRpcResponse resp = req.Send(m_parent.NetworkServersInfo.UserURL, 3000); | 155 | try |
156 | { | ||
157 | XmlRpcResponse resp = req.Send(m_parent.NetworkServersInfo.UserURL, 3000); | ||
158 | } | ||
159 | catch (System.Net.WebException) | ||
160 | { | ||
161 | MainLog.Instance.Warn("LOGOFF", "Unable to notify grid server of user logoff"); | ||
162 | } | ||
163 | |||
156 | 164 | ||
157 | } | 165 | } |
158 | public UserProfileData GetUserProfile(string firstName, string lastName) | 166 | public UserProfileData GetUserProfile(string firstName, string lastName) |