| PHP SOAP Client
|
davidmj

msg:4255379 | 8:47 pm on Jan 19, 2011 (gmt 0) | Hi I am trying to implement a SOAP client The service has a number of properties like login, password, token which I have to somehow pass in in order to access the service How do I implement these in my client? [example] Displays all the methods available from the service
$client = new SoapClient("https://url/url/url?wsdl");# var_dump($client->__getFunctions())
Where and how do I pass in my credentials in order to access the service? Is there a Param array you would normally pass in?
|
Little_G

msg:4255403 | 9:29 pm on Jan 19, 2011 (gmt 0) | Hi, If the service is using HTTP authentication then yes there is a second argument available in the SoapClient constructor where you can set a username and password. Documentation is here [php.net] with examples. Andrew
|
|
|