downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SoapClient::__setSoapHeaders> <SoapClient::__setCookie
[edit] Last updated: Fri, 24 Feb 2012

view this page in

SoapClient::__setLocation

(PHP 5 >= 5.0.1)

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

Descrição

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

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

Nota:

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

Parâmetros

new_location

The new endpoint URL.

Valor Retornado

The old endpoint URL.

Exemplos

Exemplo #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;

?>

O exemplo acima irá imprimir algo similar a:

http://www.somethirdparty.com

Veja Também



add a note add a note User Contributed Notes SoapClient::__setLocation
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites