diff options
author | Diva Canto | 2012-09-30 07:48:03 -0700 |
---|---|---|
committer | Diva Canto | 2012-09-30 07:48:03 -0700 |
commit | 91a5c602e313b96ffaf1d50b7f0d2923a2e141ba (patch) | |
tree | 3c76fe34e863fa990c6da0f72d8350c7476cf1e4 /OpenSim/Framework/Communications/RestClient.cs | |
parent | Added request.Proxy=null everywhere, as discussed in http://stackoverflow.com... (diff) | |
download | opensim-SC_OLD-91a5c602e313b96ffaf1d50b7f0d2923a2e141ba.zip opensim-SC_OLD-91a5c602e313b96ffaf1d50b7f0d2923a2e141ba.tar.gz opensim-SC_OLD-91a5c602e313b96ffaf1d50b7f0d2923a2e141ba.tar.bz2 opensim-SC_OLD-91a5c602e313b96ffaf1d50b7f0d2923a2e141ba.tar.xz |
Revert "Added request.Proxy=null everywhere, as discussed in http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow."
But the patch is here, in case anyone wants to try it.
This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient.cs')
-rw-r--r-- | OpenSim/Framework/Communications/RestClient.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/RestClient.cs b/OpenSim/Framework/Communications/RestClient.cs index 226e52f..97b3b60 100644 --- a/OpenSim/Framework/Communications/RestClient.cs +++ b/OpenSim/Framework/Communications/RestClient.cs | |||
@@ -306,7 +306,6 @@ namespace OpenSim.Framework.Communications | |||
306 | _request.ContentType = "application/xml"; | 306 | _request.ContentType = "application/xml"; |
307 | _request.Timeout = 200000; | 307 | _request.Timeout = 200000; |
308 | _request.Method = RequestMethod; | 308 | _request.Method = RequestMethod; |
309 | _request.Proxy = null; | ||
310 | _asyncException = null; | 309 | _asyncException = null; |
311 | 310 | ||
312 | // IAsyncResult responseAsyncResult = _request.BeginGetResponse(new AsyncCallback(ResponseIsReadyDelegate), _request); | 311 | // IAsyncResult responseAsyncResult = _request.BeginGetResponse(new AsyncCallback(ResponseIsReadyDelegate), _request); |
@@ -366,7 +365,6 @@ namespace OpenSim.Framework.Communications | |||
366 | _request.ContentType = "application/xml"; | 365 | _request.ContentType = "application/xml"; |
367 | _request.Timeout = 900000; | 366 | _request.Timeout = 900000; |
368 | _request.Method = RequestMethod; | 367 | _request.Method = RequestMethod; |
369 | _request.Proxy = null; | ||
370 | _asyncException = null; | 368 | _asyncException = null; |
371 | _request.ContentLength = src.Length; | 369 | _request.ContentLength = src.Length; |
372 | 370 | ||