I am receiving a XML Document, which has in one of the nodes another XML Document. Like this for example:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<doc><?xml version="1.0" encoding="UTF-8"?><root><content></content></root></doc>
</root>
So far i have been reading the value of the tag to a string and then used the loaded it to another XML Document.
The problem is now that i ran into encoding problems with special characters like ä,ö,ü…
Is there a way to use xslt in order to solve this task of extracting the xml document?
did you try to use :
?