aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseHttpServer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-1626/+0
|
* Thank you kindly, TLaukkan for a patch that:Charles Krinke2009-04-211-2/+5
| | | | | | | | | Added support for loading bare asset binaries (as opposed to xml encoded asset base) to both sandbox asset service and cable beach. * Added support for enabling region asset service when mxp is enabled. * Moved base http server content type defaulting before invocation of request handle method to allow for variable content type in the response.
* * Terminate OpenSim startup if we cannot listen to the designated HTTP portJustin Clarke Casey2009-04-091-2/+6
| | | | | | * This makes the problem much more obvious to the user, and OpenSim isn't that useful without inbound http anyway
* cleanupDr Scofield2009-03-251-2/+2
|
* * refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey2009-03-191-52/+3
| | | | via CommunicationsManager directly
* * Lock http handlers dictionary in other places as well to avoid race conditionsJustin Clarke Casey2009-03-191-47/+56
| | | | | | * No adverse effects on a quick multi-machine grid test
* * Add necessary locking to BaseHttpServer.RemoveHTTPHandler()Justin Clarke Casey2009-03-191-7/+14
|
* * Add documentation to BaseHttpServer.AddHTTPHandler()Justin Clarke Casey2009-03-191-13/+41
|
* * Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey2009-03-111-2/+0
| | | | | | | * In most cases, the setting in OpenSim.ini.example is taken as the canonical one since this is the file virtually everyone ends up using * OpenSim will start up with a blank OpenSim.ini, in which case sqlite is the default database (as before)
* * minor: reduce some code duplication in BaseHttpServerJustin Clarke Casey2009-03-101-24/+17
|
* fixing out-of-sync error in BaseHttpServerDr Scofield2009-03-101-16/+19
|
* * Adding application/x-oar to the list of content types to which the HTTP ↵Teravus Ovares2009-03-071-1/+5
| | | | Server will return the response as if it was a binary file pending discussion on the [opensim-dev] mailing list to be initiated by dmiles.
* * Lock remaining m_rpcHandlers use since these accesses are not guaranteed ↵Justin Clarke Casey2009-02-121-2/+8
| | | | to be thread safe
* * Apply http://opensimulator.org/mantis/view.php?id=3138Justin Clarke Casey2009-02-121-0/+20
| | | | | | | * Adds a GetXmlRPCHandler() to the BaseHttpServer * Thanks mpallari
* * optimized usings.lbsa712009-02-121-8/+8
|
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-01-131-1/+1
|
* * minor; Very minor non-functional tidy upsJustin Clarke Casey2009-01-131-11/+6
|
* * minor: Add a couple of code comments about enabling httpserver loggingJustin Clarke Casey2009-01-131-10/+14
|
* * Adds the variables passed to the hashtable BaseHttpServer passes in.Teravus Ovares2009-01-081-0/+7
| | | | | * Null check on Sessions_report.
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-01-051-1/+1
|
* * Updates the sim stats module. Cleans out some of the rot.Teravus Ovares2009-01-031-1/+2
| | | | | | | * Adds a prototype web stats module which is disabled by default. It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now. I'll let you know when it's safe. * Adds Prototype for ajaxy web content * removed a warning or two.
* Added http-method to the hashtable that gets passed to GenericHTTPMethods.diva2008-12-311-1/+1
|
* * A few more fixes to HttpServer.Teravus Ovares2008-12-201-2/+9
| | | | | | | | | * http://www.codeplex.com/webserver/WorkItem/View.aspx?WorkItemId=3110 fix erronious call to beginread that caused an exception which was caught and ignored (increase performance) * Pass socket into httpclientcontectImp and call the disconnect + reuse method so the socket can be reused quicker (increase performance) * Ensured that in every error scenario beginAccept is called (stability) * Fixed header casing (standards compliance) * Fixed Connection: close handling (standards compliance)
* * Tweak my previously mentioned nasty hack so it's a little less nastyTeravus Ovares2008-12-181-6/+8
|
* * Add a nasty hack to try and give the HttpServer a few extra lives until we ↵Teravus Ovares2008-12-181-2/+29
| | | | dig more into what's causing it to stop listening.
* * Caught unhandled IOException, and outputted it to log.lbsa712008-12-181-1/+5
|
* * Added more articulate logging of HttpServer so we can diagnose issues.Teravus Ovares2008-12-181-0/+38
|
* * Committing an opensim level error message on httpserver. This might help ↵Teravus Ovares2008-12-181-0/+6
| | | | with the eventqueue http server death.
* Added a Catch(InvalidOperationException) to BaseHttpServer.HandleRequest(). ↵MW2008-12-011-19/+24
| | | | Which is thrown due to errors in the XML deserializing. Without this catch is it easy to bring down any of the opensim servers on purpose by just sending corrupt xml to them.
* * Adding the incoming url as Param[2] in the XmlRpcRequestlbsa712008-11-251-1/+3
|
* Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker2008-11-191-9/+9
| | | | | | libOMV.
* Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker2008-11-191-9/+9
| | | | | | | | | release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
* * Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey2008-11-171-9/+9
| | | | | | | | * Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
* Change HTTP server backlog/acceptors to 64, per Adam ZMelanie Thielker2008-11-121-1/+1
|
* * Made ClientLoop non-infinite, ClientLoop will now disengage when the ↵Adam Frisby2008-11-081-3/+1
| | | | | | | | | | client has logged out. * Cleaned up a section of LLClientView * Removed unused 'using' from HTTPServer * Please test this patch.
* Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz2008-11-011-1/+12
| | | | | | | | | | | | | | on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
* Fixed the cause of a hidden Exception which prevented BaseHttpServer to answerHomer Horwitz2008-10-251-1/+2
| | | | | | | when a non-existing XmlRpc method was called. Now, it will correctly respond with a faultCode/faultMessage.
* Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield2008-10-231-0/+13
| | | | | | | | | | | | | KeepAlive for certain XmlRpc handlers. Making use of new AddXmlRpcHandler method in RemoteAdminPlugin to avoid clients waiting indefinitely for response. taking note of BaseHttpServer parameter in CommunicationsManager constructor (was passed it but then just ignored so far).
* - Added BaseHttpServer.StopHomer Horwitz2008-10-221-0/+5
| | | | | | | - Added "register" command to MessagingServer to re-register with the UserServer after that crashed/was restarted.
* * Remove a warning from BaseHttpServerTeravus Ovares2008-10-141-1/+1
|
* * Just some OGP maintenance. Standards adherence type stuff. Teravus Ovares2008-10-101-1/+34
|
* cleaning up OSHttpResponse: note that read access to extra headerDr Scofield2008-10-061-4/+5
| | | | | | | | | | | | | | | 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-184/+2
| | | | | | | case for OSHttpRequest (not very fancy yet, but still).
* * Committing a few keep-alive changes. Cleaned up some log messagesTeravus Ovares2008-10-031-6/+21
|
* * minor: remove warnings (the code cleaners strike again)Justin Clarke Casey2008-10-031-4/+4
|
* * EventQueueGet is now working.Teravus Ovares2008-10-031-10/+174
| | | | | | | | * Switched it on by default * Updated OpenSim.ini.example to reflect this * Caught a UDP Server issue that occurs when the network pipe is saturated * Still experimental :D
* * Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares2008-10-011-3/+3
| | | | | | | | standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
* * Replacing Net.HttpListener with HttpServer. Teravus Ovares2008-09-301-38/+234
| | | | | | | | * 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-4/+17
| | | | lines 227 - 235 to test.
* * minor: remove warningsJustin Clarke Casey2008-09-291-6/+7
|