Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
$root appears to be blank, so I don't know why that is happening. Payoneer responds with so many different things, not the same format everytime, so I need to use something basic.my $ob = new XML::Bare( text => "$page" ); my $root = $ob->parse(); #Where $page contains something like this: <?xml version="1.0" encoding="ISO-8859-1" ?> <PayoneerResponse> <Echo> <Status>000</Status> <Description>Echo Ok - All systems are up.</Description> </Echo> </PayoneerResponse>
|
|---|