Help for this page

Select Code to Download


  1. or download this
    <APPLIANCE_LIST_OUTPUT>
      <RESPONSE>
    ...
    </APPLIANCE_LIST>
      </RESPONSE>
    </APPLIANCE_LIST_OUTPUT>
    
  2. or download this
    use XML::LibXML qw();
    my $xml = XML::LibXML->load_xml(location => 'output.xml');
    ...
        #print $_->getElementsbyTagName('status') . "\n";
        print $_ . "\n";
    }