GridInfo

From OpenSimulator

Revision as of 20:05, 3 March 2012 by MakoBot (Talk | contribs)

Jump to: navigation, search

The GridInfo protocol was suggested by mana janus to facilitate autoconfiguration of clients. With the GridInfo protocol a smart client only needs to have the URI of the user server or the standalone server and can then obtain parameters such as the welcome page, the helper URI (for the economy subsystem), the name of the grid and other information automatically.

Retrieving the GridInfo is just a simple HTTP GET call to /get_grid_info on either the standalone server's URL or on the grid's user server:

% GET http://127.0.0.1:9000/get_grid_info | xml_pp
<gridinfo>
  <login>http://127.0.0.1:9000/</login>
  <gridname>the lost continent of hippo</gridname>
  <mode>standalone</mode>
  <register>http://127.0.0.1/register</register>
  <platform>OpenSim</platform>
  <help>http://127.0.0.1/help</help>
  <about>http://127.0.0.1/about/</about>
  <welcome>http://127.0.0.1/welcome</welcome>
  <gridnick>hippogrid</gridnick>
  <password>http://127.0.0.1/password</password>
  <economy>http://127.0.0.1:9000/</economy>
</gridinfo>

which was "generated" by the following [GridInfo] section:

[GridInfo]
; login uri
login = http://127.0.0.1:9000/
; login page
welcome = http://127.0.0.1/welcome
; helper uri
economy = http://127.0.0.1:9000/
; web page of grid
about = http://127.0.0.1/about/
; account creation
register = http://127.0.0.1/register
; help
help = http://127.0.0.1/help
; password help
password = http://127.0.0.1/password
; long grid name
gridname = "the lost continent of hippo"
; short grid name
gridnick = "hippogrid"

Have a look at OpenSim.ini.example for all GridInfo options --- note, that you can add additional keys there, they are automatically included in the response.

NOTE: The configuration location of GridInfo has changed. 

  • In versions 0.6.9 and below, it is found in OpenSim.ini
  • In version 0.7.0, GridInfo is missing.  Please update to 0.7.0.1 or newer
  • In version 0.7.0.1 and newer, it is located in StandaloneCommon.ini. For HyperGrids, it is located in Robust.ini
Personal tools
General
About This Wiki