http://qs321.pair.com?node_id=876060


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

er... I just noticed that post is Catalyst specific. Although it does explain a lot of the background needed in that area.

In that case, the docs of XML::Compile::SOAP, XML::Compile::WSDL, SOAP::Simple should be of help.

daniel

Replies are listed 'Best First'.
Re^6: SOAP call tweaks required
by Anonymous Monk on Dec 08, 2010 at 17:04 UTC
    That still misses the point. Telling the OP to jump ship instead of helping him jump ship. SOAP::Lite has its flaws, but the OPs code works as is.

      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