[11836] Some more documentation and information for soap example

This commit is contained in:
Nighoo 2011-10-10 22:45:48 +03:00 committed by Schmoozerd
parent 63f9e43385
commit 97a1884ea4
2 changed files with 9 additions and 1 deletions

View file

@ -21,10 +21,18 @@
* MaNGOSsoap client example * MaNGOSsoap client example
* *
* a simple example how to invoke commands using SOAP * a simple example how to invoke commands using SOAP
*
* Make sure you enabled SOAP in your mangosd.conf!
* SOAP.Enabled = 1
*/ */
/*
* $username and $password MUST be uppercase
* account $username needs at least SEC_ADMINISTRATOR
*/
$username = 'ADMINISTRATOR'; $username = 'ADMINISTRATOR';
$password = 'ADMINISTRATOR'; $password = 'ADMINISTRATOR';
$host = "localhost"; $host = "localhost";
$soapport = 7878; $soapport = 7878;
$command = "server info"; $command = "server info";

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "11835" #define REVISION_NR "11836"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__