The ManaWeb Connector is a package of methods provided by ManaWeb to allow foreign applications to access data of the running ManaServ server. A common example is a list of online users that are currently connected to the server. ManaWeb is able to deliver the data in different formats to be as open as possible for all kinds of applications, e.g. plain text or XML.
There is no public installation of the Account Manager respective the connector. If you set up an installation of your own, just navigate your browser to the main page of ManaWeb and add a “index.php/connector/” to the URL. The URL might look like this:
http://localhost/manaweb/index.php/connector/
.
This is the root URL of the connector. Now you have to extend the URL with the name of the connector function you want to execute, e.g. onlineuser which will give you this URL:
http://localhost/manaweb/index.php/connector/onlineuser/
Some methods might need input parameters or support different output formats. All parameters have to be added with a ”/” to the URL, like the method name.
This will give you a list of all users online with a character in ManaServ.
Output format:
<users> <user name="[string]" gender="[number]" map="[number]" login_timestamp="[number]" login_date="[string]" /> <user ...> </users>
"name",gender,map,login_timestamp,"login_date" "name2",gender2,map2,login_timestamp2,"login_date2" ...
The output format of the onlineuser module is specified like so:
connector/onlineuser/[plain|xml|csv]