|
|
|
Forum Member
      
Group: Customers
Last Login: 8/4/2009 4:04:48 AM
GenoPro Version: 2.0.1.5
Posts: 25,
Visits: 70
|
|
The XML output, produced by COM GetTextXML() call, contains invalid from my point encoding name in XML header:
| <?xml version='1.0' encoding='unicode'?> |
Some parsers cannot recognize this encoding (it should be either UTF-8 or UTF-16, see here for complete list of character sets). File->Export->XML produces the correct XML:
| <?xml version='1.0' encoding='UTF-8'?> |
Actually GetTextXML() generates the data in windows-1251 (my local charset), and all umlauts are gone (e.g. "Kohl" instead of "Köhl"). Also it generates strange end-of-lines, which is a mixture of DOS and UNIX style: \x0D\x0D\x0A
|
|
|
|