Updated Copyright year to 2013
[getmangos.git] / contrib / soap / example.php
blobf2cae53ad9b8a2053a83b5a70997589393bd2781
1 <?php
2 /*
3 * Copyright (C) 2005-2013 MaNGOS <http://getmangos.com/>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 /**
21 * MaNGOSsoap client example
23 * a simple example how to invoke commands using SOAP
25 * Make sure you enabled SOAP in your mangosd.conf!
26 * SOAP.Enabled = 1
30 * $username and $password MUST be uppercase
31 * account $username needs at least SEC_ADMINISTRATOR
33 $username = 'ADMINISTRATOR';
34 $password = 'ADMINISTRATOR';
36 $host = "localhost";
37 $soapport = 7878;
38 $command = "server info";
40 $client = new SoapClient(NULL,
41 array(
42 "location" => "http://$host:$soapport/",
43 "uri" => "urn:MaNGOS",
44 "style" => SOAP_RPC,
45 'login' => $username,
46 'password' => $password
47 ));
49 try {
50 $result = $client->executeCommand(new SoapParam($command, "command"));
52 echo "Command succeeded! Output:<br />\n";
53 echo $result;
55 catch (Exception $e)
57 echo "Command failed! Reason:<br />\n";
58 echo $e->getMessage();