in reply to Re^3: How to fetch the value using LWP:: UserAgent
in thread How to fetch the value using LWP:: UserAgent
I am Done but using Simple module
if ($response->is_success) { my $data = $response->decoded_content; open (MYFILE, '>>data.xml'); print MYFILE "$data"; close MYFILE; my $xml = new XML::Simple; my $data1 = $xml->XMLin("data.xml"); print $data1->{connectionid}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: How to fetch the value using LWP:: UserAgent
by aitap (Curate) on Jul 16, 2012 at 13:09 UTC | |
by panapka (Initiate) on Jul 17, 2012 at 04:45 UTC |