Zester has asked for the wisdom of the Perl Monks concerning the following question:
Show me please, how I can disable autotyping of tags in response of SOAP-server (SOAP :: Lite)?
On SOAP-client I use code like this
use SOAP::Lite; # SOAP library # SOAP tunning my $soap = SOAP::Lite -> ns('http://localhost/AnPackage', 'ns4') -> proxy('http://localhost/cgi-bin/AnService.cgi'); # Disable XML-typing $soap->autotype(0);
I do not know how to do it on SOAP-server
Thanks
|
|---|