I have a xml file which I have to parse with xslt, but the problem is that in the root node I have a link, which doesn't let me parse the xml file. If I delete that link from the xml file, I can parse the file. xml file looks like this:
<?xml version="1.0" encoding="utf-8"?>
<ROOT xmlns="http://link.org/3.2.1">
<TOP-LEVEL-PACKAGES>
<AR-PACKAGE>
<SHORT-NAME>ActiveEcu</SHORT-NAME>
</AR-PACKAGE>
</TOP-LEVEL-PACKAGES>
</ROOT>
But I should not modify the xml file, so I need a solution to parse it without delete that link. Any solution?