I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-07-27 08:43:58.295908-07 by sah
xsi:type attribute
Is there a way to suppress the generation of the xsi:type attribute in the soap:body of a request
Direct Responses: 12852 | Write a response
Posted on 2010-07-29 04:32:33.459382-07 by rahed in response to 12839
Re: xsi:type attribute
$soap = SOAP::Lite->new(uri => 'myuri', proxy => 'myproxy); $soap->autotype(0);

should suppress type attributes.

Radek
Direct Responses: Write a response