<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
You dont mean this site ? <a class="moz-txt-link-freetext" href="http://opensimulator.org/wiki/RemoteAdmin">http://opensimulator.org/wiki/RemoteAdmin</a><br>
Problem is there a remote admin and some remote console stuff (last
one i dont know how to use)<br>
i wish remoteadmin did have more commands, its easy to use. and
still secure if it keeps local<br>
<br>
On 2011-11-15 16:58, Ovi Chris Rouly wrote:
<blockquote cite="mid:005b01cca3af$5a444690$0201a8c0@littlebox"
type="cite">
<meta http-equiv="Content-Type" content="text/html;
charset=ISO-8859-1">
<meta content="MSHTML 6.00.2800.1649" name="GENERATOR">
<style></style>
<div><font face="Arial" size="2">Folks,</font></div>
<div> </div>
<div><font face="Arial" size="2">What follows may be of no use to
anyone. But, this week I needed it and couldn't find one like
it (or anything even close to it). What it is is a simple
example of the input required by OpenSim 0.7.2 through its
[Remote Admin] control port in order to control, for example,
the "create a new user" function.</font></div>
<div> </div>
<div><font face="Arial" size="2">Shown below is a plain text
string that OpenSim 0.7.2 will accept through the remoteAdmin
control port. Some of you may know and understand the
implications of using an XML-based remote procedure calling
(RPC) service to control an external application via a few key
control tokens, an available network connection, and the
former's transmission through that connection. Others may
not. So, to be brief, I'll just say that the remoteAdmin port
provides such a functionality. And, in order to take
advantage of OpenSim's remote admin facility, I "knitted"
together some C# source that produced the remoteAdmin control
port's required HTTP/1.0 protocol stream with its embedded
data tokens. The example that follows is that plain text
control/data stream output. I have found that this string
will cause OpenSim to "create a new user" on my box with its
StandAlone 0.7.2 instance.</font></div>
<div> </div>
<div><font face="Arial" size="2">Maybe I'm wrong, but since I had
to work fairly hard to gain this "template string" (and its
implications for all the other remoteAdmin functions), I
thought maybe it might have value for someone else in the
group. Thus, may I offer to toss it out to the OpenSim Users
Group. The web site (see the reference below) has other more
language-specific, abstract, yet "vital" resources. In
particular, the C# methods were *INVALUABLE* as were Justin's
helpful words.</font></div>
<div> </div>
<div><font face="Arial" size="2">Respectfully,</font></div>
<div> </div>
<div><font face="Arial" size="2">Chris</font></div>
<div> </div>
<div><font face="Arial" size="2">ref: <a moz-do-not-send="true"
href="http://opensimulator.org/wiki/RemoteAdmin">http://opensimulator.org/wiki/RemoteAdmin</a></font></div>
<div> </div>
<div><font face="Arial" size="2">>>>>>>EXAMPLE
FOLLOWS<<<<<<<<br>
<br>
POST admin_create_user HTTP/1.0<br>
Host: <a moz-do-not-send="true"
href="http://10.0.0.12:16384/">http://10.0.0.12:16384/</a><br>
Content-type: text/xml<br>
Content-Length: 993<br>
<br>
<?xml version="1.0"?><br>
<methodCall><br>
<methodName>admin_create_user</methodName><br>
<params><br>
<param><br>
<value><br>
<struct><br>
<member><br>
<name>password</name><br>
<value><string>password</string></value><br>
</member><br>
<member><br>
<name>user_firstname</name><br>
<value><string>male</string></value><br>
</member><br>
<member><br>
<name>user_lastname</name><br>
<value><string>9999</string></value><br>
</member><br>
<member><br>
<name>user_password</name><br>
<value><string>password</string></value><br>
</member><br>
<member><br>
<name>user_email</name><br>
<value><string><a class="moz-txt-link-abbreviated" href="mailto:none@email.com">none@email.com</a></string></value><br>
</member><br>
<member><br>
<name>start_region_x</name><br>
<value><int>128</int></value><br>
</member><br>
<member><br>
<name>start_region_y</name><br>
<value><int>128</int></value><br>
</member><br>
</struct><br>
</value><br>
</param><br>
</params><br>
</methodCall><br>
</font></div>
<div> </div>
<div> </div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<br>
<pre wrap="">_______________________________________________
Opensim-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Opensim-users@lists.berlios.de">Opensim-users@lists.berlios.de</a>
<a class="moz-txt-link-freetext" href="https://lists.berlios.de/mailman/listinfo/opensim-users">https://lists.berlios.de/mailman/listinfo/opensim-users</a>
</pre>
</blockquote>
<br>
</body>
</html>