http://bugs.winehq.org/show_bug.cgi?id=10802
Summary: msxml3 : header of xml files Product: Wine Version: 0.9.51. Platform: PC URL: http://home.scarlet.be/linux/compteco/testxml.zip OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-msxml AssignedTo: wine-bugs@winehq.org ReportedBy: vincent.hardy.be@gmail.com
See delphi 5 test program at URL above.
This program create a little test.xml file.
With native msxml3.dll, test.xml file is like this (correct) : -- <?xml version="1.0" encoding="UTF-8"?> <Document>test</Document> --
With builtin msxml3.dll, test.xml file is like this (bad) : -- <?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?> <Document>test</Document> --