aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Grid/GridInfoHandlers.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-5/+5
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-9/+12
2012-01-19Change URI to lowercase to match existingBlueWall1-1/+1
2012-01-19Add fetching of SRV_HomeURI to "/json_grid_info"BlueWall1-1/+36
Make SRV_HomeURI available on the GridInfoService through the "/json_grid_info" URI. This i s mainly to service OSSL, but can be seen externally via the URI.
2012-01-17Add json handler for GridInfoBlueWall1-0/+15
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)1-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.
2011-10-12Get rid of some traces of the old pre-ROBUST grid architecture configJustin Clark-Casey (justincc)1-13/+5
2011-05-14The get_grid_info REST call now encodes XML EntitiesSignpostMarv Martin1-1/+2
2010-08-11minor: change some logging levelsJustin Clark-Casey (justincc)1-3/+2
2010-08-11minor: change "no [GridInfo] config" warning to refer to "configuration ↵Justin Clark-Casey (justincc)1-1/+1
files" rather than "OpenSim.ini"
2010-01-10Moved GridInfo service from where it was to Handlers/GridDiva Canto1-27/+5
2009-07-10* minor: standardize some logging messagesJustin Clarke Casey1-7/+10
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-1/+2
needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-2/+2
2009-04-17* Some more work on refactoring configs;lbsa711-2/+2
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames1-172/+172
2009-03-29Another bit of refactoring to try to make sense of ↵diva1-172/+172
OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
2009-03-11* fix build breakJustin Clarke Casey1-1/+2
2009-03-11* Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey1-3/+9
* 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-02-12* optimized usings.lbsa711-1/+0
2008-08-28Update svn properties, formatting cleanup.Jeff Ames1-7/+7
2008-08-28this fixes the crash reported by mantis #2046: user server crashing ifDr Scofield1-6/+21
no OpenSim.ini file found by GridInfoService. GridInfoService now will just issue a warning that GridInfo will NOT be available to your users if no OpenSim.ini file is available. due to the static nature of UserConfig (configuration options hardcoded) i don't think it's currently an option to move GridInfo into user_server.xml but if anyone wants to look into this i'd be delighted...
2008-08-22bug fixes:Dr Scofield1-35/+31
- GridInfoServices was not paying attention to location of ini file - typo in RemoteAdminPlugin
2008-08-16* Move GridInfoService into Framework.Communications and eliminate ↵Justin Clarke Casey1-1/+1
Common.Communications for now (since this was the only class in that project)
2008-07-28Trying to guestimate sensible default values for GridInfoService if noDr Scofield1-7/+37
[GridInfo] section is supplied by OpenSim.ini; also adding log warning if that is the case.
2008-07-28moving GridInfo application plugin into a common standalone/gridDr Scofield1-50/+53
service, adding a plain REST GET handler returning XML (no LLSD), adding appropriate add handler calls to OpenSimBase and UserServer.
2008-07-25oops. forgot to add addin.xml for GridInfoPlugin. also, slightDr Scofield1-1/+2
reordering of plugin initialisation to ensure that it will return base information about grid, even if [GridInfo] config section is not there.
2008-07-25first cut at a GridInfo plugin (mantis #1825). Currently just spitsDr Scofield1-0/+121
out everything in the [GridInfo] section :-D Also, not yet LLSD but XmlRpc, LLSD via GET will follow. OpenSim.ini.example contains sample values and explanation. Oh, and default values provided are platform: OpenSim mode: standalone | grid have fun.