SoapClient::__setLocation

(PHP 5 >= 5.0.4, PHP 7)

SoapClient::__setLocationSets the location of the Web service to use

Opis

public SoapClient::__setLocation ([ string $new_location ] ) : string

Sets the endpoint URL that will be touched by following SOAP requests. This is equivalent to specifying the location option when constructing the SoapClient.

Informacja:

Calling this method is optional. The SoapClient uses the endpoint from the WSDL file by default.

Parametry

new_location

The new endpoint URL.

Zwracane wartości

The old endpoint URL.

Przykłady

Przykład #1 SoapClient::__setLocation() example

<?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;

?>

Powyższy przykład wyświetli coś podobnego do:

http://www.somethirdparty.com

Zobacz też:

add a note add a note

User Contributed Notes 1 note

up
-1
maoneid at gmail dot com
5 years ago
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.
To Top