You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
$client = new SoapClient($url, array("trace" => 1, "exception" => 0));
it's possible to set options trace or exception when we instanciate SoapClient.
Now, in Zend Soap, in src/Client.php line 1051 we can see that trace option is always set to true
and there no way set change its value; and for exception option it seems that there is no default value.
If we try to set trace or exception in options parameters we have an error « Unknown SOAP client option ».
Is there another way to set those values ?
Thanks
Best Regards,
Pascall
The text was updated successfully, but these errors were encountered:
In PHP SOAP documentation http://php.net/manual/fr/class.soapclient.php
$client = new SoapClient($url, array("trace" => 1, "exception" => 0));
it's possible to set options trace or exception when we instanciate SoapClient.
Now, in Zend Soap, in src/Client.php line 1051 we can see that trace option is always set to true
and there no way set change its value; and for exception option it seems that there is no default value.
If we try to set trace or exception in options parameters we have an error « Unknown SOAP client option ».
Is there another way to set those values ?
Thanks
Best Regards,
Pascall
The text was updated successfully, but these errors were encountered: