in reply to Re: SOAP::Lite misbehavior or bug?
in thread SOAP::Lite misbehavior or bug?

The WSDL itself is gigantic, but the appropriate part is
<simpleType name="ConfirmUnsubEnum"> &#8722; <restriction base="xsd:string"> <enumeration value="0"/> <enumeration value="1"/> <enumeration value="2"/> </restriction> </simpleType>

Replies are listed 'Best First'.
Re^3: SOAP::Lite misbehavior or bug?
by Anonymous Monk on Jun 08, 2006 at 20:17 UTC
    Well, I can offer a suggestion for manually encoding your element, which ignores both the WSDL and the broken SOAP::Lite serializer:
    my $confirm = SOAP::Data->new; $confirm->name("{http://the.target.namespace/here}ConfirmUnsubscribes" +); $confirm->type("{http://the.schema.namespace/here}ConfirmUnsubEnum");