Copy <html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php
$client = new SoapClient("/var/www/AXLAPI.wsdl",
array('trace'=>true,
'exceptions'=>true,
'location'=>"https://<server>:8443/axl",
'login'=>'adminUserID',
'password'=>'password',
));
$response = $client->getUser(array("userid"=>"dstaudt"));
echo("First Name: ".$response->return->user->firstName)."<br>";
echo("Last Name: ".$response->return->user->lastName);
?>
</body>
</html>