aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Grid/GridServerPostHandler.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Close streams immediately when we finish using themOren Hurvitz2014-08-021-13/+2
|
* Adds optional HTTP Basic Authentication to Robust service connectors.Diva Canto2014-05-231-2/+3
|
* Eliminated many warningsOren Hurvitz2014-04-231-0/+3
|
* varregion: enable teleporting to a varregion by clicking on the map andRobert Adams2014-01-261-1/+2
| | | | | | | pressing the 'teleport' button. This commit adds returning region map info for all the subregions of a varregion. This also handles the selection of the extra region and then the displacement of the postion so the teleport is to the correct location.
* Allow one to specify a DefaultHGRegion flag in [GridService] in order to ↵Justin Clark-Casey (justincc)2013-09-021-0/+33
| | | | | | | | | | allow different default regions for HG and direct grid logins. This requires a new GridService.GetDefaultHypergridRegions() so ROBUST services require updating but not simulators. This method still returns regions flagged with just DefaultRegion after any DefaultHGRegions, so if no DefaultHGRegions are specified then existing configured defaults will still work. Immediate use is for conference where we need to be able to specify different defaults However, this is also generally useful to send experienced HG users to one default location and local users whose specified region fails (e.g. no "home" or "last") to another.
* Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)2013-07-081-1/+1
| | | | | | | | | to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
* Rather than instantiating a UTF8 encoding everywhere when we want to supress ↵Justin Clark-Casey (justincc)2012-07-131-22/+20
| | | | | | the BOM, use a single Util.UTF8NoBomEncoding. This class is thread-safe (as evidenced by the provision of the system-wide Encoding.UTF8 which does not suppress BOM on output).
* Remove the somewhat misleading logging of the string length of some unknown ↵Justin Clark-Casey (justincc)2012-05-031-1/+1
| | | | | | requests, as this appeared to be some kind of numbered error code. This brings these messages into line with similar messages that did not do this.
* Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)2011-12-051-1/+1
| | | | | | | | 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.
* On a Grid Handler exception, explicitly log the exception message and stack ↵Justin Clark-Casey (justincc)2011-02-241-2/+2
| | | | trace so that we get somewhat better diagnostics on windows
* Allow creation of link regions if there is an existing region within a 4096 ↵Marck2010-08-061-0/+33
| | | | | | range. Also add GetHyperlinks() to the grid service.
* Works for grid login.Diva Canto2010-01-291-0/+29
|
* Merge branch 'master' into presence-refactorMelanie2010-01-161-3/+13
|\ | | | | | | | | This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability.
| * Change the error messages on region region registration. This changes URMMelanie2010-01-131-3/+13
| | | | | | | | | | and region. The non-error case should be compatible, so no version bump. Untested.
| * Change the signature of the forms requester data in preparation to gettingMelanie2010-01-051-46/+46
| | | | | | | | to where lists can be sent as requests
* | Added the 2 missing methods in the grid service remote connections.Diva Canto2010-01-141-0/+77
| |
* | Change the signature of the forms requester data in preparation to gettingMelanie2009-12-271-46/+46
|/ | | | to where lists can be sent as requests
* * GridServerPostHandler.cs: Try/catch in HandleDiva Canto2009-10-051-24/+31
| | | | * BaseOpenSimServer.cs: Added thread pool numbers in show threads
* Minor change.Diva Canto2009-10-051-1/+1
|
* Fixed bug introduced in one of the last commits.Diva Canto2009-10-051-1/+1
|
* More error catching/outputting.Diva Canto2009-10-051-4/+14
|
* Merge branch 'grid-service-redux'Melanie2009-09-281-0/+18
|\
| * Forgot a return statement.Diva Canto2009-09-281-1/+1
| |
| * Added Protocol versions back, this time in a range model.Diva Canto2009-09-281-0/+18
| |
* | Change DocToBytes to return no trailing whitespace.Melanie2009-09-281-1/+1
|/
* Added GridForm.html in Tests/Clients/Grid that shows how to interact with a ↵Diva Canto2009-09-251-7/+10
| | | | grid server via regular Web forms. May be good for developing administrative tools.
* GridServerPostHandler finished. GridClient tests all work. More guards on ↵Diva Canto2009-09-241-15/+172
| | | | getting parameters and replies over the wire.
* Added test GridClient, which allowed me to remove a few bugs out of the new ↵Diva Canto2009-09-241-4/+7
| | | | code.
* Changed IGridService to use the new GridRegion data structure instead of old ↵Diva Canto2009-09-231-3/+4
| | | | | | SimpleRegionInfo. Added grid configs to standalones.
* Added grid handler and grid remote connector.Diva Canto2009-09-211-0/+269