in reply to Re^4: convert SOAP message to perl data structure
in thread convert SOAP message to perl data structure
If you are using LWP::UserAgent as it appears then you might just as well do something like:
You should read the XML::Simple documentation for more on how to control the parsed data structure.# .. your modules use XML::Simple; use Data::Dumper; # make request and get response; # ... my $data = XMLin($response->as_string); # the following just to show you the structure. print Dumper($data);
/J\
|
|---|