aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/RestClient.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Log RestClient requests similarly to WebClient (e.g, "debug http all 6" logs ↵Oren Hurvitz2014-08-021-6/+30
| | | | the entire request and response)
* Close streams immediately when we finish using themOren Hurvitz2014-08-021-1/+28
|
* Turn RestClient.Request() logging down the debug and comment out for now.Justin Clark-Casey (justincc)2014-08-021-5/+5
|
* Add a 0 parameter overload for RestClient.Request() for use when no auth is ↵dahlia2014-06-101-0/+8
| | | | required. This preserves API compatibility for external modules using this function.
* Adds optional HTTP Basic Authentication to Robust service connectors.Diva Canto2014-05-231-4/+25
|
* Reduced log levels for REST 404 errors to DEBUGOren Hurvitz2014-04-031-1/+2
|
* Better error messages in RestClientOren Hurvitz2014-04-031-3/+2
|
* Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-301-2/+0
| | | | | | | | 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.
* Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-301-0/+2
| | | | | | 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
* * Changed the misc. methods calling ThreadPool.UnsafeQueueUserWorkItem() to ↵John Hurliman2009-10-211-1/+1
| | | | | | Util.FireAndForget() * Changed Util.FireAndForget() to use any of five different methods set with async_call_method in the [Startup] section of OpenSim.ini. Look at the example config for possible values
* * Removed OpenSim.Data.NHibernateJohn Hurliman2009-10-191-1/+1
| | | | * Replaced calls to ThreadPool.QueueUserWorkItem() with ThreadPool.UnsafeQueueUserWorkItem() since OpenSim does not use Code Access Security sandboxing
* Calling .Close() on AutoResetEvent and ManualResetEvent (those classes ↵John Hurliman2009-10-091-3/+3
| | | | contain an unmanaged resource that will not automatically be disposed when they are GCed), and commenting out some ManualResetEvents that are not in use yet
* Corrected words in error message.Diva Canto2009-10-061-2/+2
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Protects RestClient from crashing with dictionary exception, which leads ↵Sean Dague2009-03-061-2/+24
| | | | to the client thread crashing if uncaught.
* Distinguish 404 errors in RestClient.Request().Mike Mazur2009-02-251-2/+10
| | | | | Mantis #3225.
* * optimized usings.lbsa712009-02-121-1/+1
|
* Set request method for REST requests with no input.Mike Mazur2009-01-211-0/+1
|
* Attempt to fix an issue I havebeen seeing, where asset server failureMelanie Thielker2008-08-311-1/+12
| | | | | | | results in a memory leak which will make the region crash and burn after a while.
* dr scofield's warning safari:Dr Scofield2008-06-271-4/+5
| | | | | | | | | | * commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
* * minor: comment out confusing DefaultTimeout field in RestClient, which is ↵Justin Clarke Casey2008-06-131-1/+1
| | | | currently not actually used
* Add copyright notices.Jeff Ames2008-05-201-0/+27
| | | | | Fix spelling typo (Thanks ChrisDown for pointing this out)
* Formatting cleanup.Jeff Ames2008-05-161-6/+6
|
* * As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2008-05-131-9/+9
| | | | | | | | | | | | the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
* Update svn properties.Jeff Ames2008-05-021-367/+367
|
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-011-2/+2
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-011-0/+368
with namespaces.