aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-06-15When setting debug http level, do this for all known http servers, not just ↵Justin Clark-Casey (justincc)1-10/+10
the main instance.
2012-06-14Shuffle "debug http" levels so that 1 and 2 now cause different levels of ↵Justin Clark-Casey (justincc)1-8/+27
warn to be logged if we receive invalid xml for xmlrpc.
2012-06-14Fix a regression in BaseHttpServer.HandleXmlRpcRequests() from recent c6e3752Justin Clark-Casey (justincc)1-1/+1
Accidentally make responseString null by default instead of String.Empty. It needs to be something in case the XmlRpcRequest deserialize throws an exception due to bad xml (a failure which we silently swallow!)
2012-06-13Don't include time to transmit response back to requester when assessing ↵Justin Clark-Casey (justincc)5-314/+169
slow handling of requests. This is to avoid logging a 'slow' request when the source of delay is the viewer in processing a response. This is not something we can do much about on the server end - it's server-side delay that we're interested in. To ensure consistency, this commit also had to refactor and simplify inbound non-poll network request handling, though there should be no functional change. IOSHttpResponse no longer exposes the Send() method, only classes in OpenSim.Framework.Servers.HttpServer should be doing this. Only the GetTextureHandler was sending its own response. Now it leaves this to BaseHttpServer, like all other core handlers.
2012-06-07Make change to fix Windows buildsBlueWall1-1/+1
2012-06-07Allow the thread watchdog to accept an alarm method that is invoked if the ↵Justin Clark-Casey (justincc)1-0/+2
timeout is breached. This alarm can then invoke this to log extra information. This is used in LLUDPServer to show which client was being processed when incoming and outgoing udp watchdog alarms are triggered.
2012-05-24adding status codes from rfc 6585SignpostMarv1-2/+22
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-05-24porting IDE tooltip-friendly documentation tweaks from Aurora-SimSignpostMarv1-134/+223
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2012-05-09Improve logging on the prim inventory script asset request path for future use.Justin Clark-Casey (justincc)1-2/+2
This adds name and description of the request handler to http request logging when DebugLevel >= 1
2012-05-07Log the full exception when errors occur in BaseHttpServerOren Hurvitz1-19/+19
2012-05-04minor: Tweak BaseHttpServer message to make it clear that this relates to ↵Justin Clark-Casey (justincc)1-1/+1
slow handling of inbound requests.
2012-05-03Implement optional name and description on http stream handlers so that we ↵Justin Clark-Casey (justincc)9-35/+88
can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing.
2012-04-27Revert "Log the full exception when errors occur in BaseHttpServer"Justin Clark-Casey (justincc)1-19/+19
This reverts commit e31e7c68c8abfd61fed6dabac5403d8adf42ae87. Applied for patch assessment and accidentally committed too early.
2012-04-27Log the full exception when errors occur in BaseHttpServerOren Hurvitz1-19/+19
2012-04-20Add more exception detail to Exception and IOException throws in ↵Justin Clark-Casey (justincc)1-2/+2
BaseHttpServer.HandleRequest()
2012-04-06Thank you, BaseHttpServer, for telling me where things go wrong.Diva Canto1-2/+2
2012-02-24Stop spurious scene loop startup timeout alarms for scenes with many prims.Justin Clark-Casey (justincc)1-0/+2
On the first frame, all startup scene objects are added to the physics scene. This can cause a considerable delay, so we don't start raising the alarm on scene loop timeouts until the second frame. This commit also slightly changes the behaviour of timeout reporting. Previously, a report was made for the very first timed out thread, ignoring all others until the next watchdog check. Instead, we now report every timed out thread, though we still only do this once no matter how long the timeout.
2011-12-07Stop also adding an ordinary http handler when we set up a poll http handler.Justin Clark-Casey (justincc)2-11/+5
It appears that this is entirely unnecessary since the poll http handlers are dealt with on a separate code path.
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)11-14/+209
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
2011-11-29On "show caps", stop excluding the seed cap but do exclude it elsewhereJustin Clark-Casey (justincc)1-1/+3
2011-11-29With "debug http 1", show the path with the query string instead of just the ↵Justin Clark-Casey (justincc)1-21/+21
path. Also simplifies debug levels to just 0 and 1
2011-11-29Add "debug http" command for currently simple extra debug logging of ↵Justin Clark-Casey (justincc)1-12/+43
non-event queue inbound http requests to a simulator
2011-11-15send a watchdog heartbeat for a poll worker thread when it's actually runJustin Clark-Casey (justincc)1-0/+3
2011-11-07Remove unused avariable in PollServiceRequestManagerJustin Clark-Casey (justincc)1-8/+6
2011-10-25Restart the event queue worker threads that I accidentally disabled earlier ↵Justin Clark-Casey (justincc)1-7/+9
today in 8a0a78c. Also adds these to the watchdogs with very large timeouts (should really be infinite)
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)3-19/+25
of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
2011-10-24Drop some unnecessary ContainsKey() checking before Remove() in BaseHttpServer()Justin Clark-Casey (justincc)1-12/+2
Remove() presumably does this check anyway since it just returns false if the key is not in the collection.
2011-10-24Fix bugs in EventQueueGetModule.ClientClosed() and ↵Justin Clark-Casey (justincc)2-5/+9
BaseHttpServer.RemovePollServerHTTPHandler() that stopped existing code in ClientClosed() from actually tearing down the poll handler Actually doing the tear down appear to have no ill effects with region crossing and teleport.
2011-09-30Add Enabled switch in new [Attachments] section in OpenSimDefaults.ini to ↵Justin Clark-Casey (justincc)1-1/+1
allow attachments to be temporarily turned off. This is for debugging purposes. Defaults to Attachments Enabled
2011-08-22read m_rpcHandlersKeepAlive under appropriate lockJustin Clark-Casey (justincc)1-2/+4
2011-08-22oops, fix build break from last commitJustin Clark-Casey (justincc)1-12/+8
2011-08-22improve locking of m_agentHandlers in BaseHttpServerJustin Clark-Casey (justincc)1-10/+10
2011-08-22improve locking of m_HTTPHandlers in BaseHttpServerJustin Clark-Casey (justincc)1-2/+2
2011-08-22improve locking of m_streamHandlers in BaseHttpServerJustin Clark-Casey (justincc)1-2/+4
2011-08-22remove necessity to catch a KeyNotFoundException in ↵Justin Clark-Casey (justincc)1-11/+6
BaseHttpServer.RemoveLLSDHandler()
2011-08-22improve locking of m_llsdHandlers in BaseHttpServerJustin Clark-Casey (justincc)1-30/+32
2011-08-22minor: remove mono compiler warningJustin Clark-Casey (justincc)1-3/+3
2011-08-22improve locking of m_rpcHandlers in BaseHttpServerJustin Clark-Casey (justincc)1-1/+2
2011-06-12First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto1-2/+2
some issues with the zoom level -- TBD.
2011-05-05Adding ssl supportBlueWall1-0/+14
Adding ssl support for "Out of Band" applications such as the remote admin module or Robust services
2011-04-20Get Viewer 2 voice working with OpenSim.Justin Clark-Casey (justincc)1-1/+1
See http://opensimulator.org/mantis/view.php?id=5336 It turns out that viewer 2 was upset by the lack of a response to viv_watcher.php. This would send it into a continuous login loop. Viewer 1 was quite happy to ignore the lack of response. This commit puts in the bare minimum 'OK' message in response to viv_watcher.php. This allows viewer 2 voice to connect and appears to work. However, at some point we need to fill out the watcher response, whatever that is.
2011-04-12Moved 3 request handlers from OpenSim.Framework.Servers.HttpServer up to ↵Diva Canto3-445/+0
OpenSim.Framework -- just pasted them in WebUtil. This is so that code that uses the Service connectors don't need to include the HttpServer dll -- that was odd.
2011-03-17Thanks Kevin Cozens for a patch that:BlueWall1-1/+1
Fixes several spelling mistakes
2011-03-16minor: bring comment into line with code realityJustin Clark-Casey (justincc)1-1/+1
2011-03-14Up the timeout on slow requests to 3000 to stop console spam. Make sureMelanie1-5/+21
request method and target are reported correctly and drop the txn id as it's empty 99% of the time.
2011-02-16XFF capitalization strikes again -- this time in the XMLRPC method. mantis #5386Diva Canto1-1/+13
2011-02-05Added a couple of console commands to help diagnose issues:Diva Canto1-0/+32
show circuits: shows the lists of agent circuit data show http-handlers: shows the currently registered http handlers
2011-01-19With mic's permission, adjust long call time info messages to 500ms from 200msJustin Clark-Casey (justincc)1-2/+3
2011-01-05Added more performance checks to the HTTP server. Each requestMic Bowman1-1/+15
coming through the WebUtil fns has a request id in the header that can match the request to the actual work done by the service
2010-12-20Shooting in the dark for solutions to the appearance problemMic Bowman1-2/+2