in reply to soap::lite response

What am I doing wrong.
You are not using the <code> tags. See Markup in the Monastery.

Try to replace

print $som->result();
with
use Data::Dumper; print Dumper $som->result();
that should help you to figure out what the problem is.

Replies are listed 'Best First'.
Re^2: soap::lite response
by syerrave (Initiate) on Mar 08, 2010 at 15:38 UTC
    Thank You. Will Try this.