- or download this
<complexType name="Context">
<sequence>
...
<element name="user" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
- or download this
Type 'Context' can't be found in a schema class 'SOAP::Serializer'
- or download this
<?xml version="1.0" encoding="UTF-8"?>
<SOAP:ENV
...
<user xsi:type="xsd:string">jbbec</user>
</namesp1:Context>
</SOAP:ENV>
- or download this
my $request_obj = ContextType_inner->new({Context=>{
user => 'jbbec',
agent => 1 }});
print $request_obj->as_xml_data;# it's printing what is written above
- or download this
package ContextType;
use strict;
...
my $self = $class->SUPER::new($data, $obj_fields);
return bless($self, $class);
}