Marius Burkard
2016-07-08 9bcd2fd54728b9e634442f584268da03acaea633
commit | author | age
413d3b 1 <?php
T 2
b1a6a5 3 require 'soap_config.php';
413d3b 4
T 5
6 $client = new SoapClient(null, array('location' => $soap_location,
b1a6a5 7         'uri'      => $soap_uri,
MC 8         'trace' => 1,
9         'exceptions' => 1));
413d3b 10
T 11
12 try {
b1a6a5 13     if($session_id = $client->login($username, $password)) {
413d3b 14         echo 'Logged successfull. Session ID:'.$session_id.'<br />';
T 15     }
b1a6a5 16
413d3b 17     //* Set the function parameters.
T 18     $session = $session_id;
19     echo "Logging out: ";
20     $client->logout($session);
21
22     //Logged out
23     echo "Logged out.";
b1a6a5 24
MC 25
413d3b 26 } catch (SoapFault $e) {
T 27     echo $client->__getLastResponse();
28     die('SOAP Error: '.$e->getMessage());
29 }
30
31 ?>