Help for this page

Select Code to Download


  1. or download this
    my $response = $s->invoke("disk-list-info");
    
  2. or download this
    print $response;   
    returns -  
    NaElement=HASH(0x84b3408)
    
  3. or download this
    print Dumper($response)
    returns - 
    ...
                                                                          
    +                      'content' => '13',
                                                                          
    +                      'name' => 'bay',
    ........................
    
  4. or download this
    $xmldoc = XMLin($response); - This errors out with - 
    
    read on filehandle failed: Can't locate object method "read" via packa
    +ge "NaElement" at /usr/lib/perl5/XML/LibXML.pm line 531. at /usr/lib/
    +perl5/XML/LibXML/SAX.pm line 64
     at /usr/share/perl5/XML/Simple.pm line 295
    
  5. or download this
    XMLin(\%response) - same error. \