Hello!
Is there a reason why applications using xmlhttprequest don't work?
Simple Delphi code.
Uses comobj;
procedure TForm1.Button1Click(Sender: TObject);
var xmlhttp: variant;
begin
xmlhttp:=createoleobject('MSXML2.XMLHTTP.3.0');
xmlhttp.open('GET', edit1.text, true);
xmlhttp.send();
while (xmlhttp.readystate<>4) do application.processmessages;
memo1.lines.add(xmlhttp.responsetext);
end;
Screen cap: http://netikka.net/dev/ole.jpg
Here is zipped exe: http://netikka.net/dev/ole.zip
Click ok -> OLE error 800401F3 (Ubuntu 10.04, Wine 1.31)
Works fine with any Windows.
XmlHttpObject
Try 'winetricks msxml3 ie6', that worked around the problem for me.
I filed
http://bugs.winehq.org/show_bug.cgi?id=24242
and
http://bugs.winehq.org/show_bug.cgi?id=24243
for these problems.
I filed
http://bugs.winehq.org/show_bug.cgi?id=24242
and
http://bugs.winehq.org/show_bug.cgi?id=24243
for these problems.
Using winetricks its fine! 
Bug now seems to be "fixed" 1.35. But example still doesn't work good. Often it gives empty response, sometimes get only part of the page HTML
Btw, here is another example that doesn't work. Just try to use..
http://bsalsa.com/Downloads/EmbeddedWB_ ... e_File.zip

Bug now seems to be "fixed" 1.35. But example still doesn't work good. Often it gives empty response, sometimes get only part of the page HTML

Btw, here is another example that doesn't work. Just try to use..
http://bsalsa.com/Downloads/EmbeddedWB_ ... e_File.zip
Latest 1.35. (any other version you get ole error)
Did you try it, does it work for you?
Problem could also be character encoding related, because it works if url contains something simple..
Anyway, looks like object was only partially implemented. Other members
http://msdn.microsoft.com/en-us/library/ms535874.aspx
Did you try it, does it work for you?
Problem could also be character encoding related, because it works if url contains something simple..
Anyway, looks like object was only partially implemented. Other members
http://msdn.microsoft.com/en-us/library/ms535874.aspx