in reply to How to Parse SOAP::Lite response
I hope that guides you. :)use XML::Parser; .... Build your request and get response.. ... my $response = $userAgent->request($request); Put the response in the XMLparser. my $ref = XMLin($response->content); my $secr = $ref->{'soapenv:Header'}->{'wsse:Security'}; print $secr;
|
|---|