Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

XML::diff

by neptoner (Initiate)
on Jan 09, 2006 at 22:30 UTC ( [id://522059]=perlquestion: print w/replies, xml ) Need Help??

neptoner has asked for the wisdom of the Perl Monks concerning the following question:

Hello Perl Monks We are using your xml-diff ('XML-Diff' => '0.04')package in one our tool. But while comparing , we get some times certain breaks even though the xmls are same. The tool diffs xmls continuously . Module used:http://morpheus.csustan.edu/perlman/pods/XML/Diff.html On a simulation Two similar xmls are compared in a while loop ,and we got the diffs..i.e diffgrams very differently Sometimes it said they are equal and sometimes it gave differencesCan you please advise us on the same code snippet:
$origResponse='xmlstring1’; $newResponse='xmlstring2’; use XML::Diff; my $diff = XML::Diff->new(); while(1){ print STDERR "$origResponse\n\n"; print STDERR "$newResponse\n\n"; $diffgram = $diff->compare(-old => $origResponse ,-new => $newResponse ,-asString => 1 ); sleep 5; print STDERR "$diffgram\n"; print STDERR "================================================ +===================================================================== +==\n"; }

Replies are listed 'Best First'.
Re: XML::diff
by vek (Prior) on Jan 10, 2006 at 08:10 UTC

    Well, first of all, I would suggest that you provide valid XML examples instead of 'xmlstring1' and 'xmlstring2'. Once you do that, we will be happy to help you out.

    -- vek --

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://522059]
Approved by Old_Gray_Bear
Front-paged by planetscape
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-24 23:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found