http://www.perlmonks.org?node_id=876073


in reply to Re^6: SOAP call tweaks required
in thread SOAP call tweaks required

First of all: Obtain the WSDL for the service you are consuming. Read the post I linked for background on that.

Once you have the WSDL, you just need to:

my $srv = SOAP::Simple->new($wsdl_file); $srv->method(@args)

And that's all...

daniel