I have two systems, one RHEL5 and one Ubuntu 10.04, and they exhibit differing behavior. I'm using perl's XML::Simple to parse the response of a call to some SaaS software. The response is:
<xml answer="{"foo": "bar"}" />
The ubuntu system correctly returns {"foo": "bar"}, but the RHEL5 system leaves the quoted entities in the attribute tag, and I cannot seem to find the option to change this.
Yes, the XML::Simple versions are slightly different (and I cannot change that); RHEL5: 2.14, Ubuntu: 2.18. I'd love to solve this so that the behavior is consistent.