Posted by frustratedcoder on 02/14/06 13:41
I need to consume a web service written in Perl but there is no wsdl
file for this service.
The perl soap client that can call and consume this web service looks
like this (if it helps)
#!perl -w
use SOAP::Lite +trace => "debug";
print SOAP::Lite
->uri("urn:WebServices")
->proxy("http://example.com")
->SomeMethodName('param1', 'param2')
->result;
How can this be translated in to something that is easily used in PHP5?
There is no wsdl file describing the web service above.
Navigation:
[Reply to this message]
|