http://bugs.winehq.org/show_bug.cgi?id=27536
--- Comment #2 from ocean04@suomi24.fi 2011-06-25 14:25:38 CDT --- With these changes to "httprequest.c" POST is working.
- LONG size = SysStringLen(V_BSTR(body)) * sizeof(WCHAR); + LONG size = SysStringLen(V_BSTR(body));
- memcpy(ptr, V_BSTR(body), size); + char ansistr[size]; + WideCharToMultiByte(CP_ACP, 0, V_BSTR(body), -1, ansistr, sizeof(ansistr), NULL, NULL); + memcpy(ptr, ansistr, size);