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 |
$sys_userid = 1; |
|
19 |
$sys_groupid = 1; |
b1a6a5
|
20 |
|
413d3b
|
21 |
$record_record = $client->client_get_sites_by_user($session_id, $sys_userid, $sys_groupid); |
T |
22 |
|
|
23 |
print_r($record_record); |
b1a6a5
|
24 |
|
413d3b
|
25 |
if($client->logout($session_id)) { |
T |
26 |
echo 'Logged out.<br />'; |
|
27 |
} |
b1a6a5
|
28 |
|
MC |
29 |
|
413d3b
|
30 |
} catch (SoapFault $e) { |
T |
31 |
echo $client->__getLastResponse(); |
|
32 |
die('SOAP Error: '.$e->getMessage()); |
|
33 |
} |
|
34 |
|
|
35 |
?> |