aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-19With mic's permission, adjust long call time info messages to 500ms from 200msJustin Clark-Casey (justincc)1-1/+1
2011-01-05Added more performance checks to the HTTP server. Each requestMic Bowman1-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
2011-01-03Cleaned up debugging messages in the WebRequest handlersMic Bowman1-5/+8
2010-12-29Standardize the way WebRequests are made in the SimulationServiceConnector. ↵Mic Bowman1-3/+165
Added debugging calls for tracking performance of web requests.
2010-12-08Added ability for GetTexture to serve multiple formats. The format may come ↵Diva Canto1-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>.
2010-07-29* Tweaked WebUtil.PostToService() to help debug an object disposed exceptionJohn Hurliman1-3/+4
2010-06-24* SimianAssetServiceConnector Delete() was expecting the wrong type of ↵John Hurliman1-1/+1
response, reporting false errors * Fixed a typo in a WebUtil error message
2010-04-22* Better error logging for failed SimianGrid web service callsJohn Hurliman1-3/+8
2010-03-26* Fixed a bug with null value handling in WebUtil.BuildQueryString()John Hurliman1-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
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames1-1/+28
2010-03-03* Added three new helper utility files to OpenSim.Framework. MultipartForm ↵John Hurliman1-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