Help for this page

Select Code to Download


  1. or download this
    #!C:/perl/bin/perl -w
    use strict;
    ...
    
    my $complex = My::Complex->new({string_array => [ 'text1', 'text2', 't
    +ext3' ]});
    print $complex->as_xml_data;
    
  2. or download this
    <string_array type="xsi:SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string
    +[3]">
        <item xsi:type="xsd:string">text1</item>
        <item xsi:type="xsd:string">text2</item>
        <item xsi:type="xsd:string">text3</item>
    </string_array>