Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make sure we always dispose of disposables inside RestClient.Request() | Justin Clark-Casey (justincc) | 2014-12-20 | 1 | -26/+30 |
| | |||||
* | minor: Correct propery doc RestClient._resource spelling mistake | Justin Clark-Casey (justincc) | 2014-12-20 | 1 | -1/+1 |
| | |||||
* | Label all threadpool calls being made in core OpenSimulator. This is to add ↵ | Justin Clark-Casey (justincc) | 2014-11-25 | 1 | -1/+1 |
| | | | | | | problem diagnosis. "show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats. | ||||
* | Log RestClient requests similarly to WebClient (e.g, "debug http all 6" logs ↵ | Oren Hurvitz | 2014-07-21 | 1 | -6/+30 |
| | | | | the entire request and response) | ||||
* | Close streams immediately when we finish using them | Oren Hurvitz | 2014-07-21 | 1 | -1/+28 |
| | |||||
* | Turn RestClient.Request() logging down the debug and comment out for now. | Justin Clark-Casey (justincc) | 2014-07-09 | 1 | -5/+5 |
| | |||||
* | Add a 0 parameter overload for RestClient.Request() for use when no auth is ↵ | dahlia | 2014-05-30 | 1 | -0/+8 |
| | | | | required. This preserves API compatibility for external modules using this function. | ||||
* | Adds optional HTTP Basic Authentication to Robust service connectors. | Diva Canto | 2014-05-23 | 1 | -4/+25 |
| | |||||
* | Reduced log levels for REST 404 errors to DEBUG | Oren Hurvitz | 2014-04-03 | 1 | -1/+2 |
| | |||||
* | Better error messages in RestClient | Oren Hurvitz | 2014-04-03 | 1 | -3/+2 |
| | |||||
* | Revert "Added request.Proxy=null everywhere, as discussed in ↵ | Diva Canto | 2012-09-30 | 1 | -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 Canto | 2012-09-30 | 1 | -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 Hurliman | 2009-10-21 | 1 | -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.NHibernate | John Hurliman | 2009-10-19 | 1 | -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 Hurliman | 2009-10-09 | 1 | -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 Canto | 2009-10-06 | 1 | -2/+2 |
| | |||||
* | Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵ | Jeff Ames | 2009-06-01 | 1 | -1/+1 |
| | | | | LICENSE.txt. | ||||
* | * Protects RestClient from crashing with dictionary exception, which leads ↵ | Sean Dague | 2009-03-06 | 1 | -2/+24 |
| | | | | to the client thread crashing if uncaught. | ||||
* | Distinguish 404 errors in RestClient.Request(). | Mike Mazur | 2009-02-25 | 1 | -2/+10 |
| | | | | | Mantis #3225. | ||||
* | * optimized usings. | lbsa71 | 2009-02-12 | 1 | -1/+1 |
| | |||||
* | Set request method for REST requests with no input. | Mike Mazur | 2009-01-21 | 1 | -0/+1 |
| | |||||
* | Attempt to fix an issue I havebeen seeing, where asset server failure | Melanie Thielker | 2008-08-31 | 1 | -1/+12 |
| | | | | | | | results in a memory leak which will make the region crash and burn after a while. | ||||
* | dr scofield's warning safari: | Dr Scofield | 2008-06-27 | 1 | -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 Casey | 2008-06-13 | 1 | -1/+1 |
| | | | | currently not actually used | ||||
* | Add copyright notices. | Jeff Ames | 2008-05-20 | 1 | -0/+27 |
| | | | | | Fix spelling typo (Thanks ChrisDown for pointing this out) | ||||
* | Formatting cleanup. | Jeff Ames | 2008-05-16 | 1 | -6/+6 |
| | |||||
* | * As part of the region registration process, the grid service now requests ↵ | Justin Clarke Casey | 2008-05-13 | 1 | -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 Ames | 2008-05-02 | 1 | -367/+367 |
| | |||||
* | * Breaking all the code, breaking all the code..! | Adam Frisby | 2008-05-01 | 1 | -2/+2 |
| | | | | | * Made a bunch more members static, removed some dead code, general cleaning. | ||||
* | * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵ | Adam Frisby | 2008-05-01 | 1 | -0/+368 |
with namespaces. |