Help for this page

Select Code to Download


  1. or download this
       <complexType name="Context">
        <sequence>
    ...
         <element name="user" nillable="true" type="soapenc:string"/>
        </sequence>
       </complexType>
    
  2. or download this
    Type 'Context' can't be found in a schema class 'SOAP::Serializer'
    
  3. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP:ENV 
    ...
        <user xsi:type="xsd:string">jbbec</user>
      </namesp1:Context>
    </SOAP:ENV>
    
  4. 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
    
  5. or download this
    package ContextType;
    use strict;
    ...
            my $self = $class->SUPER::new($data, $obj_fields);
            return bless($self, $class);
    }