Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

In our company, we are moving our web services from rpc style to document style. I have no problem to write testing (client) programs with SOAP::Lite for rpc style, but don't have any idea how to do the same with document style, or whether SOAP::Lite actually supports document style web services?

Please point me to the right direction, or soem sample code is appreciated. My usual code is something like this:

use strict; use warnings; use SOAP::Lite +trace => qw(all); use SOAP::Lite; my $lite = new SOAP::Lite(uri => 'http://org.jboss.ws/samples/docstyle +/wrapped', proxy => 'http://earth:8080/jbossws-samples-docstyle-wrapped?wsdl'); print $lite->add(1,2)->result;

Replies are listed 'Best First'.
Re: SOAP::Lite and document style
by Khen1950fx (Canon) on Sep 12, 2006 at 12:05 UTC