diff options
author | mingchen | 2007-11-03 15:09:21 +0000 |
---|---|---|
committer | mingchen | 2007-11-03 15:09:21 +0000 |
commit | 51488ee7f415950583ba389582692900a2c32831 (patch) | |
tree | 7b63fdbb54e9a1bbb3ae7a6ed8d6eac8933e8dbb /share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt | |
parent | testing different rest post method/class for Grid asset client. (possible tha... (diff) | |
download | opensim-SC-51488ee7f415950583ba389582692900a2c32831.zip opensim-SC-51488ee7f415950583ba389582692900a2c32831.tar.gz opensim-SC-51488ee7f415950583ba389582692900a2c32831.tar.bz2 opensim-SC-51488ee7f415950583ba389582692900a2c32831.tar.xz |
*Moved region loading into its own interface IRegionLoader
*Added ability to load regioninfo remotely from a webserver from a single file. See share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt for more info and an example file.
Diffstat (limited to 'share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt')
-rw-r--r-- | share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt b/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt new file mode 100644 index 0000000..f3afd43 --- /dev/null +++ b/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt | |||
@@ -0,0 +1,9 @@ | |||
1 | The remote region loading ability allows easier management of what regions a simulator run s from a webserver. | ||
2 | In OpenSim.ini, change the 'region_info_source = filesystem' under [Startup] to 'region_info_source = web'. | ||
3 | Then change the line 'regionload_webserver_url = ' to 'regionload_webserver_url = http://127.0.0.1/default.xml' | ||
4 | replacing 'http://127.0.0.1/default.xml' with the URL of the region XML file. | ||
5 | |||
6 | The XML file of a remote region is similar to the filesystem version, except it is in one file instead of multiple | ||
7 | region_xxx.xml files. | ||
8 | |||
9 | See example_web.xml for an example on how to make a web version for region loading. \ No newline at end of file | ||