aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/OSHttpResponse.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cleaning up OSHttpResponse: note that read access to extra headerDr Scofield2008-10-061-148/+52
| | | | | | | | | | | | | | | fields is GONE (HttpServer does not support that), you can read the "normal" HTTP headers available via properties, and you can add headers. also, it is now possible to set a timeout for KeepAlive (for those clients that pay attention to it). this also fixes the broken REST inventory/assets/appearance services, they should be working again. testcase for OSHttpResponse will follow.
* * Fixes a http protocol violation in HttpServer in Linux. ↵Teravus Ovares2008-10-031-1/+6
| | | | | | | StringWriter.Append() vs StringWriter.Append("\r\n"); StringWriter.Append() produces "\n" in *nix* * This doesn't solve anything. Just gets the protocol right.
* * Replacing Net.HttpListener with HttpServer. Teravus Ovares2008-09-301-12/+18
| | | | | | | | * This is a HUGE update.. and should be considered fraut with peril. * SSL Mode isn't available *yet* but I'll work on that next. * DrScofld is still working on a radical new thread pump scheme for this which will be implemented soon. * This could break the Build! This could break your Grid!
* * Get the code up to speed with my -#dev e-mail example. (uncomment out ↵Teravus Ovares2008-09-301-0/+17
| | | | lines 227 - 235 to test.
* temporarily disabling HttpServer related stuff (take #2: Exclude takesDr Scofield2008-09-251-4/+4
| | | | | | | regex not shell glob)
* Formatting cleanup.Jeff Ames2008-08-181-37/+37
|
* fixes a couple of issues i introduced yesterday, one of them MapBlock ↵Dr Scofield2008-07-151-54/+55
| | | | queries crashing.
* Mantis#1745. Thank you kindly, Lulurun for a patch that:Charles Krinke2008-07-151-2/+2
| | | | | Fixes simulator webmap functionality.
* further work in progress on the HttpServer side: XmlRpc handler pathDr Scofield2008-07-141-50/+255
| | | | | | | | almost complete and soon to be ready for testing; OSHttpResponse code out.
* further progress on HttpServer integration: OSHttpRequest can now beDr Scofield2008-07-071-2/+2
| | | | | | instantiated from both .NET and HttpServer code path.
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-251-16/+16
|
* adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield2008-05-191-0/+165
HttpListenerResponse respectively. enhancing IStreamHandler and IStreamedHandler interfaces so that OSHttp{Request,Response} get passed in, allowing RestHandlers to set response status code, redirections, etc.