aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/OSHttpRequest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-228/+0
|
* * optimized usings.lbsa712009-02-121-1/+1
|
* cleaning up OSHttpResponse: note that read access to extra headerDr Scofield2008-10-061-8/+12
| | | | | | | | | | | | | | | 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.
* cleaning up OSHttpRequest removing old Http stuff. also adding testDr Scofield2008-10-061-130/+86
| | | | | | | case for OSHttpRequest (not very fancy yet, but still).
* - Fix invalid cast in OSHttpRequestHomer Horwitz2008-10-021-3/+3
| | | | | | - Web-map should work again :)
* * Adds error handlers for errors parsing the querystring passed on the ↵Teravus Ovares2008-10-011-3/+18
| | | | | | | OSHttpRequest constructor. * maybe.. it was a key that was null. Obviously you can't still a null key in a string key'ed collection.
* * Replacing Net.HttpListener with HttpServer. Teravus Ovares2008-09-301-34/+34
| | | | | | | | * 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!
* temporarily disabling HttpServer related stuff (take #2: Exclude takesDr Scofield2008-09-251-44/+44
| | | | | | | regex not shell glob)
* Formatting cleanup.Jeff Ames2008-08-181-22/+0
|
* rearranging variables in OSHttpRequest and adding Query property.Dr Scofield2008-07-171-22/+45
|
* further work in progress on the HttpServer side: XmlRpc handler pathDr Scofield2008-07-141-3/+36
| | | | | | | | almost complete and soon to be ready for testing; OSHttpResponse code out.
* adding support for IP EndPoint whitelisting in HttpServer code.Dr Scofield2008-07-071-6/+17
|
* further progress on HttpServer integration: OSHttpRequest can now beDr Scofield2008-07-071-19/+45
| | | | | | instantiated from both .NET and HttpServer code path.
* dr scofield's warning safari: hunting down those little buggersDr Scofield2008-06-271-2/+2
|
* status: work-in-progress, non-functionalDr Scofield2008-06-271-0/+5
| | | | | | fleshing out OSHttpRequestPump code.
* further work on the HttpServer stuff. not functional yet. just sharing Dr Scofield2008-06-251-0/+13
| | | | | | what crimes i'm committing.
* * adding XmppPresenceStanza and deserialization/reification supportDr Scofield2008-06-041-0/+5
| | | | | | | | | | | | having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
* this is a snapshot of the OSHttpServer work-in-progress. it's an initial ↵Dr Scofield2008-05-291-0/+14
| | | | | | | | skeleton, far from complete, just want to check in early and often.
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-251-2/+2
|
* adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield2008-05-191-0/+145
HttpListenerResponse respectively. enhancing IStreamHandler and IStreamedHandler interfaces so that OSHttp{Request,Response} get passed in, allowing RestHandlers to set response status code, redirections, etc.