http://bugs.winehq.org/show_bug.cgi?id=26339
Summary: MSXML, HTTPS GET don't work Product: Wine Version: 1.3.15 Platform: x86 URL: http://netikka.net/dev/msxml6.exe OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: msxml3 AssignedTo: wine-bugs@winehq.org ReportedBy: ocean04@suomi24.fi
See example. http://netikka.net/dev/msxml6.exe
Click button.. With http address it's fine.
Note: Doesn't even work with winetricks msxml6 ie6
And using msxml3, doesn't make any difference. Ubuntu 10.10.
Code is very simple:
Uses comobj;
procedure TForm1.Button1Click(Sender: TObject); var xmlhttp: variant; starttime: dword; begin starttime:=gettickcount; xmlhttp:=createoleobject('MSXML2.XMLHTTP.6.0'); xmlhttp.open('GET', edit1.text, true); xmlhttp.send(); while (xmlhttp.readystate<>4) and (gettickcount<starttime+30000) do application.processmessages; if gettickcount>starttime+30000 then showmessage('timeout!') else memo1.text:=xmlhttp.responsetext; end;