diff options
author | Justin Clark-Casey (justincc) | 2012-02-07 21:40:28 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-07 21:40:28 +0000 |
commit | 1f402fdf5e8ef53a07f98c4447946805791d26bc (patch) | |
tree | d7a0ea0ee0538e0a14bb69dd2e76cf9ac43e34b5 /OpenSim/Services/Connectors/Presence | |
parent | Add TestAddTaskInventoryItem() (diff) | |
download | opensim-SC_OLD-1f402fdf5e8ef53a07f98c4447946805791d26bc.zip opensim-SC_OLD-1f402fdf5e8ef53a07f98c4447946805791d26bc.tar.gz opensim-SC_OLD-1f402fdf5e8ef53a07f98c4447946805791d26bc.tar.bz2 opensim-SC_OLD-1f402fdf5e8ef53a07f98c4447946805791d26bc.tar.xz |
Add url to logging if SynchronousRestFormsRequester.MakRequest() throws an exception in service connectors
Diffstat (limited to 'OpenSim/Services/Connectors/Presence')
-rw-r--r-- | OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs b/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs index 7238afc..f7d8c53 100644 --- a/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs +++ b/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs | |||
@@ -98,11 +98,12 @@ namespace OpenSim.Services.Connectors | |||
98 | sendData["SecureSessionID"] = secureSessionID.ToString(); | 98 | sendData["SecureSessionID"] = secureSessionID.ToString(); |
99 | 99 | ||
100 | string reqString = ServerUtils.BuildQueryString(sendData); | 100 | string reqString = ServerUtils.BuildQueryString(sendData); |
101 | string uri = m_ServerURI + "/presence"; | ||
101 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); | 102 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); |
102 | try | 103 | try |
103 | { | 104 | { |
104 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", | 105 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", |
105 | m_ServerURI + "/presence", | 106 | uri, |
106 | reqString); | 107 | reqString); |
107 | if (reply != string.Empty) | 108 | if (reply != string.Empty) |
108 | { | 109 | { |
@@ -124,7 +125,7 @@ namespace OpenSim.Services.Connectors | |||
124 | } | 125 | } |
125 | catch (Exception e) | 126 | catch (Exception e) |
126 | { | 127 | { |
127 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server: {0}", e.Message); | 128 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server at {0}: {1}", uri, e.Message); |
128 | } | 129 | } |
129 | 130 | ||
130 | return false; | 131 | return false; |
@@ -142,11 +143,12 @@ namespace OpenSim.Services.Connectors | |||
142 | sendData["SessionID"] = sessionID.ToString(); | 143 | sendData["SessionID"] = sessionID.ToString(); |
143 | 144 | ||
144 | string reqString = ServerUtils.BuildQueryString(sendData); | 145 | string reqString = ServerUtils.BuildQueryString(sendData); |
146 | string uri = m_ServerURI + "/presence"; | ||
145 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); | 147 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); |
146 | try | 148 | try |
147 | { | 149 | { |
148 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", | 150 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", |
149 | m_ServerURI + "/presence", | 151 | uri, |
150 | reqString); | 152 | reqString); |
151 | if (reply != string.Empty) | 153 | if (reply != string.Empty) |
152 | { | 154 | { |
@@ -168,7 +170,7 @@ namespace OpenSim.Services.Connectors | |||
168 | } | 170 | } |
169 | catch (Exception e) | 171 | catch (Exception e) |
170 | { | 172 | { |
171 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server: {0}", e.Message); | 173 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server at {0}: {1}", uri, e.Message); |
172 | } | 174 | } |
173 | 175 | ||
174 | return false; | 176 | return false; |
@@ -185,11 +187,12 @@ namespace OpenSim.Services.Connectors | |||
185 | sendData["RegionID"] = regionID.ToString(); | 187 | sendData["RegionID"] = regionID.ToString(); |
186 | 188 | ||
187 | string reqString = ServerUtils.BuildQueryString(sendData); | 189 | string reqString = ServerUtils.BuildQueryString(sendData); |
190 | string uri = m_ServerURI + "/presence"; | ||
188 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); | 191 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); |
189 | try | 192 | try |
190 | { | 193 | { |
191 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", | 194 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", |
192 | m_ServerURI + "/presence", | 195 | uri, |
193 | reqString); | 196 | reqString); |
194 | if (reply != string.Empty) | 197 | if (reply != string.Empty) |
195 | { | 198 | { |
@@ -211,7 +214,7 @@ namespace OpenSim.Services.Connectors | |||
211 | } | 214 | } |
212 | catch (Exception e) | 215 | catch (Exception e) |
213 | { | 216 | { |
214 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server: {0}", e.Message); | 217 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server at {0}: {1}", uri, e.Message); |
215 | } | 218 | } |
216 | 219 | ||
217 | return false; | 220 | return false; |
@@ -229,11 +232,12 @@ namespace OpenSim.Services.Connectors | |||
229 | sendData["RegionID"] = regionID.ToString(); | 232 | sendData["RegionID"] = regionID.ToString(); |
230 | 233 | ||
231 | string reqString = ServerUtils.BuildQueryString(sendData); | 234 | string reqString = ServerUtils.BuildQueryString(sendData); |
235 | string uri = m_ServerURI + "/presence"; | ||
232 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); | 236 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); |
233 | try | 237 | try |
234 | { | 238 | { |
235 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", | 239 | string reply = SynchronousRestFormsRequester.MakeRequest("POST", |
236 | m_ServerURI + "/presence", | 240 | uri, |
237 | reqString); | 241 | reqString); |
238 | if (reply != string.Empty) | 242 | if (reply != string.Empty) |
239 | { | 243 | { |
@@ -255,7 +259,7 @@ namespace OpenSim.Services.Connectors | |||
255 | } | 259 | } |
256 | catch (Exception e) | 260 | catch (Exception e) |
257 | { | 261 | { |
258 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server: {0}", e.Message); | 262 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server at {0}: {1}", uri, e.Message); |
259 | } | 263 | } |
260 | 264 | ||
261 | return false; | 265 | return false; |
@@ -273,11 +277,12 @@ namespace OpenSim.Services.Connectors | |||
273 | 277 | ||
274 | string reply = string.Empty; | 278 | string reply = string.Empty; |
275 | string reqString = ServerUtils.BuildQueryString(sendData); | 279 | string reqString = ServerUtils.BuildQueryString(sendData); |
280 | string uri = m_ServerURI + "/presence"; | ||
276 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); | 281 | // m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); |
277 | try | 282 | try |
278 | { | 283 | { |
279 | reply = SynchronousRestFormsRequester.MakeRequest("POST", | 284 | reply = SynchronousRestFormsRequester.MakeRequest("POST", |
280 | m_ServerURI + "/presence", | 285 | uri, |
281 | reqString); | 286 | reqString); |
282 | if (reply == null || (reply != null && reply == string.Empty)) | 287 | if (reply == null || (reply != null && reply == string.Empty)) |
283 | { | 288 | { |
@@ -287,7 +292,7 @@ namespace OpenSim.Services.Connectors | |||
287 | } | 292 | } |
288 | catch (Exception e) | 293 | catch (Exception e) |
289 | { | 294 | { |
290 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server: {0}", e.Message); | 295 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server at {0}: {1}", uri, e.Message); |
291 | } | 296 | } |
292 | 297 | ||
293 | Dictionary<string, object> replyData = ServerUtils.ParseXmlResponse(reply); | 298 | Dictionary<string, object> replyData = ServerUtils.ParseXmlResponse(reply); |
@@ -316,11 +321,12 @@ namespace OpenSim.Services.Connectors | |||
316 | 321 | ||
317 | string reply = string.Empty; | 322 | string reply = string.Empty; |
318 | string reqString = ServerUtils.BuildQueryString(sendData); | 323 | string reqString = ServerUtils.BuildQueryString(sendData); |
324 | string uri = m_ServerURI + "/presence"; | ||
319 | //m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); | 325 | //m_log.DebugFormat("[PRESENCE CONNECTOR]: queryString = {0}", reqString); |
320 | try | 326 | try |
321 | { | 327 | { |
322 | reply = SynchronousRestFormsRequester.MakeRequest("POST", | 328 | reply = SynchronousRestFormsRequester.MakeRequest("POST", |
323 | m_ServerURI + "/presence", | 329 | uri, |
324 | reqString); | 330 | reqString); |
325 | if (reply == null || (reply != null && reply == string.Empty)) | 331 | if (reply == null || (reply != null && reply == string.Empty)) |
326 | { | 332 | { |
@@ -330,7 +336,7 @@ namespace OpenSim.Services.Connectors | |||
330 | } | 336 | } |
331 | catch (Exception e) | 337 | catch (Exception e) |
332 | { | 338 | { |
333 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server: {0}", e.Message); | 339 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Exception when contacting presence server at {0}: {1}", uri, e.Message); |
334 | } | 340 | } |
335 | 341 | ||
336 | List<PresenceInfo> rinfos = new List<PresenceInfo>(); | 342 | List<PresenceInfo> rinfos = new List<PresenceInfo>(); |