aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/HttpServer_OpenSim.dll (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mantis: 7936 replace httpServer_OpenSim.dll with a new one restoring some ↵UbitUmarov2016-06-281-0/+0
| | | | checks lost in last update
* Replace the http server dll with the right pair dll + xmlDiva Canto2016-06-231-0/+0
|
* Update HttpServer_OpenSim.dll to fix an inventory loading bug.Melanie Thielker2016-06-231-0/+0
|
* New HttpServer_OpenSim.dll with increased limits on number of connections, ↵Diva Canto2013-06-041-0/+0
| | | | requests, etc.
* *Yet another HTTPServer update code changes in OpenSim Libs. * This fixes a ↵teravus2013-03-161-0/+0
| | | | connection close issue by getting rid of the socket references * This adds a connection timeout checker to shutdown poor or evil connections and combats DOS attempts that just connect and make no complete requests and just wait. It also actually implements KeepAlive... instead of just understanding the connection header in the request... you can test by connecting and requesting a keepalive header and sending another request on the same connection. The new timeout checker closes expired keepalive sessions, just make sure you send the request within 70 seconds of connecting or the timeout checker will timeout the connection.
* * Updates HttpServer again to re-add the code that closes the stream and ↵teravus2013-03-141-0/+0
| | | | connection when It's done sending. Be on the lookout for an old linux/mono bug where the client doesn't get the last bit of the stream before it is disconnected!. Code on opensim-libs. All tests pass.. HttpServer's internal tests pass.. but just a bad feeling. More people should test :)
* This is the final commit that enables the Websocket handlerteravus2013-02-071-0/+0
|
* We're not really done here.. but we're getting there. Socket Read is ↵teravus2013-02-051-0/+0
| | | | working.. Still have to do Header.ToBytes and compose a websocket frame with a payload.
* Replace HttpServer_OpenSim.dll with Oren Hurvitz's patch applied.justincc2011-11-181-0/+0
| | | | | | This will hopefully address mantis 5471, 5694 and 5718. This code is now in opensim-libs, along with Diva's slightly older patches (which were already applied to the DLLs in the opensim tree). Thanks Oren!
* add the executable bit to all bundled DLLs so that these are preserved when ↵Justin Clark-Casey (justincc)2011-04-271-0/+0
| | | | | | using git or untarring releases under cygwin on windows Mono doesn't care if the
* Catch HttpServer exception: mantis #5381Diva Canto2011-02-151-0/+0
|
* Fixed a couple of tests in the HttpServer. Not sure if this is enough. ↵Diva Canto2011-02-121-0/+0
| | | | Mantis #5373 and #5384
* Replaced the HttpServer_OpenSim.dll with one compiled for .NET 3.5 (the last ↵Diva Canto2010-12-181-0/+0
| | | | one was 4.0, and that doesn't work). Also added the corresponding .xml and .pdb, if that makes any difference.
* Replaced HttpServer_OpenSim.dll with a version that locks certain ops in ↵Diva Canto2010-12-181-0/+0
| | | | HttpForm -- mantis #5128.
* Patch from jhurliman to HttpServerTeravus Ovares (Dan Olivares)2009-08-251-0/+0
| | | | | | Fixes cookie handling and header name casing in HttpServer Currently, cookies are never being processed on incoming HTTP requests. This patch makes sure cookies are parsed and inserted into IHttpRequest.Cookies, and fixes incoming headers to always have lower-case names. http://opensimulator.org/mantis/view.php?id=4052
* * Update HTTP Server with jhurliman's longheader fix. Changes 1024 with 4096.Teravus Ovares (Dan Olivares)2009-08-181-0/+0
|
* * Reattempt at a compileTeravus Ovares2009-07-301-0/+0
|
* * Fixed another potential httpserver leak.Teravus Ovares2009-07-301-0/+0
|
* * An attempt to fix mantis #3953Teravus Ovares2009-07-291-0/+0
|
* * Adds the ability to have a thread efficient long poll service (such as the ↵Teravus Ovares2009-07-291-0/+0
| | | | | | | | | eventqueue) * If this doesn't melt the Http Server, this will significantly reduce the number of threads in use on regions with many users. * Adds AddPollServiceHTTPHandler, and RemovePollServiceHTTPHandler to BaseHttpServer * Generic enough to be used for many long poll services, not only the EventQueue.
* * Updated C# WebServer to the latest available source download (r19869) and ↵Teravus Ovares2009-07-211-0/+0
| | | | | | | | | | applied a few mods from the old version (now up on opensim-libs (VS 3.5 project). * Made various changes to BaseHttpServer to accommodate the new interfaces. * This version has been significantly re-architected and may fail in unusual and insidious ways. * Please pay attention to any errors you get and post a Mantis if you can reproduce an issue with the HTTPServer. I'm including the pdb and having the http server compiled in debug for a few weeks so that when an error occurs, it'll print the pertenant data. * Once again, this is the full C# WebServer, not the lite branch that is included in LibOMV (we need SSL!)
* * This updates LibOMV to the current release 0.6.0 on March 19 2009Teravus Ovares2009-03-271-0/+0
* Important: HttpServer.dll was changed to HttpServer_OpenSim.dll so that the HttpServer references do not conflict if you've copied the OpenMetaverse.Http.dll and requirements to the OpenSimulator bin folder. This means that if you reference HttpServer.dll in any projects, you will need to change the reference to HttpServer_OpenSim.dll. It still uses the Same HttpServer namespace though.