RestConsole

From OpenSimulator

Revision as of 05:13, 6 September 2009 by Melanie (Talk | contribs)

Jump to: navigation, search

About

The REST console makes remote administration of the various OpenSim services possible.

In order to make the protocol more efficient, the help functionality has been pushed to the client side. Rather than sending each keystroke to the server, only validated command lines are sent. To make this possible, the server sends a "connect burst" of data, which is the tree of allowed commands and their help information. This can be used by the client to create the "help" command output locally as well as provide command line help interactively.

The sample console client, OpenSim.ConsoleClient.exe, shows how this is done.

Syntax

We take the user service(http://foo.bar:8002) as example here. Startup the user service with:

mono OpenSim.Grid.UserServer.exe -console rest

First start a new session by sending a POST. Params: USER, PASS

http://foo.bar:8002/StartSession/ 

Return: (XML) <ConsoleSession><SessionID></SessionID><Prompt></Prompt></ConsoleSession>

Now we got the SessionID, which can be used to send a command. Use the SessionID as ID param, and send a POST again. Params: ID, COMMAND

http://foo.bar:8002/SessionCommand/

Return: (XML) <ConsoleSession><Result></Result></ConsoleSession> If everything went well, the command should have been executed. Try another command.

When you want to close down the connection, send a POST again. PARAMS: ID

http://foo.bar:8002/CloseSession/

Return: (XML) <ConsoleSession><Result></Result></ConsoleSession> The session is closed, and you have to login again, when you want to send a command again.

Examples

In python:

Personal tools
General
About This Wiki