diff options
author | Diva Canto | 2012-09-30 07:22:55 -0700 |
---|---|---|
committer | Diva Canto | 2012-09-30 07:22:55 -0700 |
commit | 531edd51d82ecd6a842a2611c99e9919634491ef (patch) | |
tree | 0e28069aa1b2278f91b9275f98db7990abb7d964 /OpenSim/Framework/Communications/RestClient.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-531edd51d82ecd6a842a2611c99e9919634491ef.zip opensim-SC_OLD-531edd51d82ecd6a842a2611c99e9919634491ef.tar.gz opensim-SC_OLD-531edd51d82ecd6a842a2611c99e9919634491ef.tar.bz2 opensim-SC_OLD-531edd51d82ecd6a842a2611c99e9919634491ef.tar.xz |
Added request.Proxy=null everywhere, as discussed in http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow.
Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient.cs')
-rw-r--r-- | OpenSim/Framework/Communications/RestClient.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/RestClient.cs b/OpenSim/Framework/Communications/RestClient.cs index 97b3b60..226e52f 100644 --- a/OpenSim/Framework/Communications/RestClient.cs +++ b/OpenSim/Framework/Communications/RestClient.cs | |||
@@ -306,6 +306,7 @@ 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; | ||
309 | _asyncException = null; | 310 | _asyncException = null; |
310 | 311 | ||
311 | // IAsyncResult responseAsyncResult = _request.BeginGetResponse(new AsyncCallback(ResponseIsReadyDelegate), _request); | 312 | // IAsyncResult responseAsyncResult = _request.BeginGetResponse(new AsyncCallback(ResponseIsReadyDelegate), _request); |
@@ -365,6 +366,7 @@ namespace OpenSim.Framework.Communications | |||
365 | _request.ContentType = "application/xml"; | 366 | _request.ContentType = "application/xml"; |
366 | _request.Timeout = 900000; | 367 | _request.Timeout = 900000; |
367 | _request.Method = RequestMethod; | 368 | _request.Method = RequestMethod; |
369 | _request.Proxy = null; | ||
368 | _asyncException = null; | 370 | _asyncException = null; |
369 | _request.ContentLength = src.Length; | 371 | _request.ContentLength = src.Length; |
370 | 372 | ||