for some cases , ignoring location from initialization throw exception
PHP Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host
Better call and define the end point location manually.
(PHP 5 >= 5.0.4, PHP 7, PHP 8)
SoapClient::__setLocation — Configure l'URL du service Web à utiliser
Configure l'URL cible, à qui seront envoyés les requêtes SOAP.
Ce revient à spécifier l'option location
lors de
la construction du client SoapClient.
Note:
Cette méthode est optionnelle. SoapClient utilise l'URL indiquée dans le fichier WDSL par défaut.
location
La nouvelle URL.
L'ancienne URL.
Version | Description |
---|---|
8.0.3 |
location est désormais nullable.
|
Exemple #1 Exemple avec SoapClient::__setLocation()
<?php
$client = new SoapClient('http://example.com/webservice.php?wsdl');
$client->__setLocation('http://www.somethirdparty.com');
$old_location = $client->__setLocation(); // unsets the location option
echo $old_location;
?>
Résultat de l'exemple ci-dessus est similaire à :
http://www.somethirdparty.com
for some cases , ignoring location from initialization throw exception
PHP Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host
Better call and define the end point location manually.