[Bug 26339] New: MSXML, HTTPS GET don't work

wine-bugs at winehq.org wine-bugs at winehq.org
Mon Mar 7 01:53:22 CST 2011


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 at winehq.org
        ReportedBy: ocean04 at 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;

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list