in reply to Re: SOAP::Lite - READING Multiple namespaces
in thread SOAP::Lite - READING Multiple namespaces

Ok, thank you! That will do the trick.
BUT, how do I get the webservice response to a file (or a variable) in the first place?
(The XML file used in the example is dumped via traceall...)
Usually, I operate on the result the following way:
my $soapAnswer = $soapHanterare->call($setup => @setup_values); my $faultstring = $soapSvar->valueof('//faultstring');

Sorry for all the stupid questions...but, see it this way, you're helping a former windows developer to the lovely world of Perl:-)

Replies are listed 'Best First'.
Re^3: SOAP::Lite - READING Multiple namespaces
by olus (Curate) on Mar 20, 2009 at 15:09 UTC

    check $soapAnswer->result. Dump it to see what you are dealing with.

      Hi,
      Unfortunately that gives me an empty value :-(
      I try to dump it but I get an empty string. How do I do it?