aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-06Mantis #2133Melanie Thielker1-1/+1
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares3-4/+4
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames2-21/+21
2008-08-26* One more tweak to the application/xml vs application/llsd+xml routineTeravus Ovares1-4/+3
2008-08-26* It turns out that Mono doesn't currently support setting the Certificate ↵Teravus Ovares1-1/+6
validation handler, however, it throws a NotImplemented exception. * Added Try/Catch/Message
2008-08-26* Workaround for application/llsd+xml requests coming in as application/xmlTeravus Ovares1-0/+48
* When OGP is active, disable SSL certificate chain validation. I'll add more options here to come, as well as a way to test against a group of known certificate subjects.
2008-08-25* Append thread information on to the end of period diagnostics informationJustin Clarke Casey1-2/+5
* This is working towards finding out why many more client threads are hanging about on wright plaza than there are actual agents
2008-08-25* minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey1-15/+29
than displays information directly
2008-08-25* minor: upgrade version info to post 0.5.9Justin Clarke Casey1-1/+1
2008-08-25Update svn properties.Jeff Ames1-33/+33
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares3-24/+180
currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
2008-08-23Mantis#2032. Thank you kindly, Tyre for a patch that:Charles Krinke1-0/+1
This small patch provides the required changes to populate the columns agentIP and agentPort in table "agents" Tested with mysql (but should work for all supported db engines)
2008-08-19Update svn properties, formatting cleanup.Jeff Ames1-4/+4
2008-08-18* It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey1-0/+30
resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
2008-08-18Formatting cleanup.Jeff Ames11-140/+117
2008-08-16* Insert a new 'set log level [level] command on the console'Justin Clarke Casey1-5/+80
* The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
2008-08-15From: Richard Alimi <ralimi@us.ibm.com>Dr Scofield1-1/+2
The following is a patch that disables the addition of the Content-Length HTTP response header when a chunked response is being sent.
2008-08-14Thanks, BlueWall, for a patch that:Dahlia Trimble1-1/+1
Binary distributions of OpenSim are not able to get the version info because they lack the ../.svn/entries file. This file exists in the ./bin./svn directory, which would be in a binary distribution. The included patch changes the path from ../.svn/entries to .svn/entries, which allows the version information to be show in "help/about"
2008-08-09* Add line to log notifying of inventory -> user grid server trust failureJustin Clarke Casey1-1/+14
* add code comments
2008-08-01* Register main thread as console thread with thread trackerJustin Clarke Casey1-0/+4
2008-08-01* minor: get rid of count number from 'show threads' display since they all ↵Justin Clarke Casey1-12/+1
have IDs
2008-08-01* Drop cached inventory from the local region when a user crosses out into a ↵Justin Clarke Casey1-1/+1
remote region * May resolves inventory problems that occur when the user moves between two regions` * e.g. if the user moves to a second region, adds an inventory item, moves back to the original region then tries to manipulate that item * Not yet implemented for teleport
2008-07-28moving GridInfo application plugin into a common standalone/gridDr Scofield1-2/+2
service, adding a plain REST GET handler returning XML (no LLSD), adding appropriate add handler calls to OpenSimBase and UserServer.
2008-07-25From: awebbDr Scofield1-11/+16
Further improvements to the REST handlers.
2008-07-24oops...forgot to svn add OSHttpHttpHandler.cs last week.Dr Scofield1-0/+145
NOTE: this code is work-in-progress, it's not live. it's so far harmless and just wants to play. it should not bite anyone (yeah, that's what they all say, i know...)
2008-07-23adding files that were not included in r5589Johan Berntsson1-0/+223
2008-07-22* minor: Make create user command appear on the region console only if the ↵Justin Clarke Casey1-0/+1
region is running standalone
2008-07-18pulling query handling through the handlers. adding (non-functional,Dr Scofield2-2/+4
work-in-progress) HttpHandler. NOTE: non-active code. does not glow in the dark. non-combustible.
2008-07-18simplifying OSHTtpHandler (a bit), adding query string matching,Dr Scofield3-120/+118
adapting OSHttpXmlRpcHandler accordingly. NOTE: this code is not live.
2008-07-18force Culture to en-US in BaseHttpserver.HandleRequest() --- thisDr Scofield1-0/+3
fixes mantis #1748 and #1771.
2008-07-17rearranging variables in OSHttpRequest and adding Query property.Dr Scofield1-22/+45
2008-07-17morphing OSHttpHandler interface into an abstract base class. addingDr Scofield3-109/+108
HTTP method matching support. adapting OSHttpXmlRpcHandler accordingly. dropping OSHttpXmlProcessor delegate in favour of good old XmlRpcMethodHandler delegate (was the same signature).
2008-07-15cleanup: fixing CamelCase issue with RestDeserialiseHandler.Dr Scofield1-2/+2
2008-07-15fixes handler scoring method. XmlRpc code path now fully working withDr Scofield2-7/+61
HttpServer. :-)
2008-07-15fixes a couple of issues i introduced yesterday, one of them MapBlock ↵Dr Scofield2-55/+56
queries crashing.
2008-07-15Mantis#1745. Thank you kindly, Lulurun for a patch that:Charles Krinke1-2/+2
Fixes simulator webmap functionality.
2008-07-14further work in progress on the HttpServer side: XmlRpc handler pathDr Scofield6-79/+594
almost complete and soon to be ready for testing; OSHttpResponse code out.
2008-07-11* Move thread tracking code to base opensim server so that it's available ↵Justin Clarke Casey1-6/+31
for all servers (UGAIM as well as Region) * This will work as long as those servers are actually registering any threads they use (does not include stuff plucked from the thread pool) * command is now "show threads" rather than threads
2008-07-08Mantis#1685. Thank you kindly, Mjm for a patch that:Charles Krinke1-1/+12
The attached patch tries to read the SVN revision from local file "svn_revision" before checking "../.svn/entries". This allows simulators not running from the source tree to properly display the SVN revision, if the installer generates the "svn_revision" file.
2008-07-07adding support for IP EndPoint whitelisting in HttpServer code.Dr Scofield2-10/+24
2008-07-07switching to safer locks.Dr Scofield1-4/+6
2008-07-07further progress on HttpServer integration: OSHttpRequest can now beDr Scofield4-26/+65
instantiated from both .NET and HttpServer code path.
2008-07-06Copyright notices and formatting cleanup.Jeff Ames1-1/+1
2008-06-30properly explaining each #pragma warning disableDr Scofield2-26/+39
massaging OSHttpRequestPump to not abort on exceptions...
2008-06-27dr scofield's warning safari:Dr Scofield1-1/+2
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-06-27dr scofield's warning safari: hunting down those little buggersDr Scofield3-5/+6
2008-06-27status: work-in-progress, non-functionalDr Scofield3-0/+165
fleshing out OSHttpRequestPump code.
2008-06-27status: work in progress, non-functionalDr Scofield2-41/+127
having OSHttpHandler as a delegate was not too hot, i'm refactoring it into an interface.
2008-06-27Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke1-1/+1
Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
2008-06-26WORK-IN-PRGRESS: beware of falling pieces and shifting Dr Scofield1-0/+53
tectonic plates: starting AddHandler() code.