http://bugs.winehq.org/show_bug.cgi?id=27536
Summary: XMLHTTP POST, server receive incorrect data Product: Wine Version: 1.3.22 Platform: x86 URL: http://http://netikka.net/dev/upload2.exe OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: msxml3 AssignedTo: wine-bugs@winehq.org ReportedBy: ocean04@suomi24.fi
Example: http://netikka.net/dev/upload2.exe
xmlhttp.open('POST', 'http://netikka.net/dev/debug/debug.php', true); xmlhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); xmlhttp.send('test=123');
Server receive: Array([t] => 1 2 3)
Correct (Windows): Array([test] => 123)
Run, click, results can be viewed: http://netikka.net/dev/debug/request.txt
winetricks msxml6 helps