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?