@Kabel:
PHP
<?php
try
{
$client = new SoapClient(NULL,
array("location" => "http://[Ihr Server]/[Ihr Service]",
"uri" => "urn:getServerTime",
"style" => SOAP_RPC,
"use" => SOAP_ENCODED));
print($client->__soapCall("getServerTime",
array(),
array("uri" => "urn:getServerTime",
"soapaction" => "urn:getServerTime")));
}
catch (SoapFault $e)
{
print($e);
}
?>
Alles anzeigen
Hier