I import some XML data using R6 DXLImporter class. There is no problem, if I use “encoding=‘utf-8’” in XML header.However, if I use “encoding=‘windows-1250’” (central european windows encoding), DXLImporter throws following error:
Type:Transcoding exception.
Message:Could not create converter for following encoding:windows-1250.
I removed all “accented” characters from XML body, but error occured again. (I don’t have problem to view this XML file in IE6 with MSXML parser.)
Question: Is this limitation of DXLImporter or is there any problem in my approach?