RemoteAdmin:admin region query

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "'''admin_region_query''' remotely allows quary the "health" of a region. === Enabling admin_modify_region === If not all functions are enabled, use admin_region_query to enabl...")
 
m
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''admin_region_query''' remotely allows quary the "health" of a region.  
+
'''admin_region_query''' remotely allows to query the "health" of a region.  
  
  
=== Enabling admin_modify_region ===
+
=== Enabling admin_region_query ===
 
If not all functions are enabled, use admin_region_query to enable the function in the [RemoteAdmin] section
 
If not all functions are enabled, use admin_region_query to enable the function in the [RemoteAdmin] section
 
<source lang="csharp">
 
<source lang="csharp">
Line 31: Line 31:
 
! Values
 
! Values
 
|-
 
|-
| ''region_uuid''
+
| ''region_id''
 
| region uuid of the region.
 
| region uuid of the region.
 
|
 
|
 
|}
 
|}
 
  
 
== Returned Parameters ==
 
== Returned Parameters ==
Line 64: Line 63:
 
When an error occures the following error value are returned
 
When an error occures the following error value are returned
  
*failed to switch to region {REGION NAME}
+
* failed to switch to region {REGION NAME}
*failed to switch to region {REGION UUID}
+
* failed to switch to region {REGION UUID}
*neither region_name nor region_uuid given
+
* neither region_name nor region_uuid given
  
  
Line 75: Line 74:
 
== Example ==
 
== Example ==
 
=== PHP ===
 
=== PHP ===
 +
This example needs the RemoteAdmin PHP Class file available [http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass here].
 +
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
Line 90: Line 91:
 
</source>
 
</source>
  
[[Category:Development]]
+
 
 +
 
 +
[[Category:RemoteAdmin]]
 +
[[Category:RemoteAdmin Commands]]

Revision as of 16:28, 24 October 2015

admin_region_query remotely allows to query the "health" of a region.


Contents

Enabling admin_region_query

If not all functions are enabled, use admin_region_query to enable the function in the [RemoteAdmin] section

enabled_methods = admin_region_query,...

Parameters

Required Parameters

These parameters are required

parameter Description Values
region_name Name of the region, optionaly use region_uuid


Optional Parameters

These parameters are optional and do not need to be set

parameter Description Values
region_id region uuid of the region.

Returned Parameters

Returned Parameters

These parameters are returned by Remote Admin

parameter Description Values
success true when successfull true, false
error error message when not successfull
health health data of the region integer value


Error messages

When an error occures the following error value are returned

  • failed to switch to region {REGION NAME}
  • failed to switch to region {REGION UUID}
  • neither region_name nor region_uuid given


Notes

Example

PHP

This example needs the RemoteAdmin PHP Class file available here.

<?php
 
// Including the RemoteAdmin PHP class.
include('RemoteAdmin.php');
 
// Instantiate the class with parameters identical to the Python example above
$myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret');
 
// Invoke admin_create_user (multiple parameters)
$parameters = array('region_name' => 'My Plaza');
$myRemoteAdmin->SendCommand('admin_region_query', $parameters);
?>
Personal tools
General
About This Wiki