in reply to Re: Retrieving Specific Contents of SOAP Response via SOAP::Lite
in thread Retrieving Specific Contents of SOAP Response via SOAP::Lite

Poj, as always, great explanation!! One single doubt, in the below what is the purpose of "'phone.xml'"

my $dom = XML::LibXML->load_xml( location => 'phone.xml' );
  • Comment on Re^2: Retrieving Specific Contents of SOAP Response via SOAP::Lite
  • Download Code

Replies are listed 'Best First'.
Re^3: Retrieving Specific Contents of SOAP Response via SOAP::Lite
by poj (Abbot) on Mar 22, 2017 at 06:37 UTC

    phone.xml was your soap message I put in a file. I guess you need to change that to

    my $dom = XML::LibXML->load_xml( string => $xml_string );
    

    See XML::LibXML::Parser

    poj