aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* With mic's permission, adjust long call time info messages to 500ms from 200msJustin Clark-Casey (justincc)2011-01-191-1/+1
|
* Added more performance checks to the HTTP server. Each requestMic Bowman2011-01-051-47/+68
| | | | | coming through the WebUtil fns has a request id in the header that can match the request to the actual work done by the service
* Cleaned up debugging messages in the WebRequest handlersMic Bowman2011-01-031-5/+8
|
* Standardize the way WebRequests are made in the SimulationServiceConnector. ↵Mic Bowman2010-12-291-3/+165
| | | | | | Added debugging calls for tracking performance of web requests.
* Added ability for GetTexture to serve multiple formats. The format may come ↵Diva Canto2010-12-081-0/+81
| | | | as an extra query parameter in the URL format=<format> (this was tested and working) or it may come in the Accept header (code added, but not tested). The result of the conversion is placed in the asset cache, under the name <uuid>-<format>.
* * Tweaked WebUtil.PostToService() to help debug an object disposed exceptionJohn Hurliman2010-07-291-3/+4
|
* * SimianAssetServiceConnector Delete() was expecting the wrong type of ↵John Hurliman2010-06-241-1/+1
| | | | | | response, reporting false errors * Fixed a typo in a WebUtil error message
* * Better error logging for failed SimianGrid web service callsJohn Hurliman2010-04-221-3/+8
|
* * Fixed a bug with null value handling in WebUtil.BuildQueryString()John Hurliman2010-03-261-2/+6
| | | | | * Changed the null check back in estate manager setup but fixed the case for an existing account being found * Implemented SetPassword() in the SimianGrid auth connector
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-1/+28
|
* * Added three new helper utility files to OpenSim.Framework. MultipartForm ↵John Hurliman2010-03-031-0/+330
is used for constructing multipart/form-data requests. UntrustedWebRequest places sanity checks and policy on requests to HTTP endpoints that are not in the same trust domain (useful for Hypergrid, OpenID, etc). WebUtil contains misc. functions for managing URLs and network streams