aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseHttpServer.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-21Thank you kindly, TLaukkan for a patch that:Charles Krinke1-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.
2009-04-09* Terminate OpenSim startup if we cannot listen to the designated HTTP portJustin Clarke Casey1-2/+6
* This makes the problem much more obvious to the user, and OpenSim isn't that useful without inbound http anyway
2009-03-25cleanupDr Scofield1-2/+2
2009-03-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey1-52/+3
via CommunicationsManager directly
2009-03-19* Lock http handlers dictionary in other places as well to avoid race conditionsJustin Clarke Casey1-47/+56
* No adverse effects on a quick multi-machine grid test
2009-03-19* Add necessary locking to BaseHttpServer.RemoveHTTPHandler()Justin Clarke Casey1-7/+14
2009-03-19* Add documentation to BaseHttpServer.AddHTTPHandler()Justin Clarke Casey1-13/+41
2009-03-11* Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey1-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)
2009-03-10* minor: reduce some code duplication in BaseHttpServerJustin Clarke Casey1-24/+17
2009-03-10fixing out-of-sync error in BaseHttpServerDr Scofield1-16/+19
2009-03-07* Adding application/x-oar to the list of content types to which the HTTP ↵Teravus Ovares1-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.
2009-02-12* Lock remaining m_rpcHandlers use since these accesses are not guaranteed ↵Justin Clarke Casey1-2/+8
to be thread safe
2009-02-12* Apply http://opensimulator.org/mantis/view.php?id=3138Justin Clarke Casey1-0/+20
* Adds a GetXmlRPCHandler() to the BaseHttpServer * Thanks mpallari
2009-02-12* optimized usings.lbsa711-8/+8
2009-01-13* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-01-13* minor; Very minor non-functional tidy upsJustin Clarke Casey1-11/+6
2009-01-13* minor: Add a couple of code comments about enabling httpserver loggingJustin Clarke Casey1-10/+14
2009-01-08* Adds the variables passed to the hashtable BaseHttpServer passes in.Teravus Ovares1-0/+7
* Null check on Sessions_report.
2009-01-05* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-01-03* Updates the sim stats module. Cleans out some of the rot.Teravus Ovares1-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.
2008-12-31Added http-method to the hashtable that gets passed to GenericHTTPMethods.diva1-1/+1
2008-12-20* A few more fixes to HttpServer.Teravus Ovares1-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)
2008-12-18* Tweak my previously mentioned nasty hack so it's a little less nastyTeravus Ovares1-6/+8
2008-12-18* Add a nasty hack to try and give the HttpServer a few extra lives until we ↵Teravus Ovares1-2/+29
dig more into what's causing it to stop listening.
2008-12-18* Caught unhandled IOException, and outputted it to log.lbsa711-1/+5
2008-12-18* Added more articulate logging of HttpServer so we can diagnose issues.Teravus Ovares1-0/+38
2008-12-18* Committing an opensim level error message on httpserver. This might help ↵Teravus Ovares1-0/+6
with the eventqueue http server death.
2008-12-01Added a Catch(InvalidOperationException) to BaseHttpServer.HandleRequest(). ↵MW1-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.
2008-11-25* Adding the incoming url as Param[2] in the XmlRpcRequestlbsa711-1/+3
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker1-9/+9
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker1-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
2008-11-17* Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey1-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
2008-11-12Change HTTP server backlog/acceptors to 64, per Adam ZMelanie Thielker1-1/+1
2008-11-08* Made ClientLoop non-infinite, ClientLoop will now disengage when the ↵Adam Frisby1-3/+1
client has logged out. * Cleaned up a section of LLClientView * Removed unused 'using' from HTTPServer * Please test this patch.
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-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.
2008-10-25Fixed the cause of a hidden Exception which prevented BaseHttpServer to answerHomer Horwitz1-1/+2
when a non-existing XmlRpc method was called. Now, it will correctly respond with a faultCode/faultMessage.
2008-10-23Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield1-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).
2008-10-22- Added BaseHttpServer.StopHomer Horwitz1-0/+5
- Added "register" command to MessagingServer to re-register with the UserServer after that crashed/was restarted.
2008-10-14* Remove a warning from BaseHttpServerTeravus Ovares1-1/+1
2008-10-10* Just some OGP maintenance. Standards adherence type stuff. Teravus Ovares1-1/+34
2008-10-06cleaning up OSHttpResponse: note that read access to extra headerDr Scofield1-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.
2008-10-06cleaning up OSHttpRequest removing old Http stuff. also adding testDr Scofield1-184/+2
case for OSHttpRequest (not very fancy yet, but still).
2008-10-03* Committing a few keep-alive changes. Cleaned up some log messagesTeravus Ovares1-6/+21
2008-10-03* minor: remove warnings (the code cleaners strike again)Justin Clarke Casey1-4/+4
2008-10-03* EventQueueGet is now working.Teravus Ovares1-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
2008-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-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.
2008-09-30* Replacing Net.HttpListener with HttpServer. Teravus Ovares1-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!
2008-09-30* Get the code up to speed with my -#dev e-mail example. (uncomment out ↵Teravus Ovares1-4/+17
lines 227 - 235 to test.
2008-09-29* minor: remove warningsJustin Clarke Casey1-6/+7
2008-09-27* Event queue is now polling.. Teravus Ovares1-2/+4
* returns FAKEEVENT instead of the connection returning a 502. It doesn't like our 502's for some reason.. so, in leau of this.. send it a fake event. * Once again, this is still 'really early' code, so please don't blame us if you have no more threads left.