in reply to
SOAP::Lite problem
use
+trace => [ transport => sub { print $_[0]->as_string } ];
to check that you request is correct
Comment on
Re: SOAP::Lite problem
Download
Code
Replies are listed 'Best First'.
Re^2: SOAP::Lite problem
by
Anonymous Monk
on Oct 19, 2015 at 07:41 UTC
Its better to use
use SOAP::Lite +trace => 'debug';
the xml is formatted pretty
[reply]
[d/l]
Re^3: SOAP::Lite problem
by
Anonymous Monk
on Oct 20, 2015 at 00:56 UTC
Ha its actually
use SOAP::Lite +trace => 'debug', readable => 1;
[reply]
[d/l]
In Section
Seekers of Perl Wisdom