setDebug(2); # ask the client to send the message to the server $response = $client->send($message); # handle the response if (!$response->faultCode()) { print "
I got this value back
" .
		htmlentities($response->serialize()). "

\n"; } else { print "Fault
"; print "Code: " . htmlentities($response->faultCode()) . "
" . "Reason: '" . htmlentities($response->faultString()) . "'
"; } ?>