I have this simple code and the huge problem :), using XML::Xpath like:
my $xp = XML::XPath->new(xml => $xmlStr);
now the string that I have is an XML generated from SQL Server query with XML Explicit.The XML String also contains the entities like XXXXxxxxxxxxe® and that registered symbol breaks the parsing.
Please note that I cannot use XML::Entities as the application I am supporting does not have the module and I have a limitation to work on this environment without adding this module.
Thanks for your time & help in advance.