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 — Define la localización del servicio Web a utilizar
Define la URL de conexión que será usada por las siguientes peticiones SOAP. Esto es equivalente a
especificar la opción location
cuando se construye el SoapClient.
Nota:
Llamar este método es opcional. El SoapClient utiliza la URL de conexión desde el fichero WSDL por defecto.
new_location
La nueva URL de conexión.
La anterior URL de conexión.
Ejemplo #1 Ejemplo de SoapClient::__setLocation()
<?php
$client = new SoapClient('http://example.com/webservice.php?wsdl');
$client->__setLocation('http://www.somethirdparty.com');
$old_location = $client->__setLocation(); // Desactiva la opción location
echo $old_location;
?>
El resultado del ejemplo sería algo similar a:
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.