>> $client = new SoapClient('http://example.local/path/to/service.svc?wsdl');
>> $args = array("ted");
>> $results = $client->HelloWorldWithInput($params);
> 
> I got it. Although I swear I tried this earlier, it needs key names in the 
> array, like this:
> 
> $client = new SoapClient('http://example.local/path/to/service.svc?wsdl');
> $args = array('name' => 'ted');
> $results = $client->HelloWorldWithInput($params);

that makes sense if it is looking for named parameters.


-- 
thebigdog

_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to