Ben, bir sorum var ben bir web sayfası geliştirme ve ben SOAP üzerinden bir sunucu ile iletişim kurarlar. Benim kod php olduğunu.
$client = new SoapClient(null, array("location" => "$serverpath",
"uri" => "$namespace",
"style" => SOAP_RPC,
"use" => SOAP_ENCODED ));
try
{
$returnedValue = $client->getInfo($user);
} catch (SoapException $exception)
{
$returnedIDValue = "Caught Soap Exception: $exception\n";
}
SOAP hizmetleri aşağı olduğunda sorun şu, ben herhangi bir istisna alamadım, program sadece durur.
Herhangi bir öneri? Ben nazikçe bu davayı ele almak istiyorum.
Thanks in advantage Alejandra