Hello World!
XML;
try {
$client = new WSClient(array( "to" => "https://2ec2.wso2.org/samples/echo_service.php",
"CACert" => "./resources/cacert.pem"));
$responseMessage = $client->request( $requestPayloadString );
printf("Response = %s
", htmlspecialchars($responseMessage->str));
} catch (Exception $e) {
if ($e instanceof WSFault) {
printf("Soap Fault: %s\n", $e->Reason);
} else {
printf("Message = %s\n",$e->getMessage());
}
}
?>