search for: xmlhttpobject

Displaying 3 results from an estimated 3 matches for "xmlhttpobject".

2010 Sep 02
1
XmlHttpObject
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;
2010 Oct 19
2
Re: XmlHttpObject
Using winetricks its fine! 8) 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 [Rolling Eyes] Btw, here is another example that doesn't work. Just try to use.. http://bsalsa.com/Downloads/EmbeddedWB_Demo_Exe_File.zip
2011 Feb 12
1
Re: XmlHttpObject
Simple application in post #1 still doesn't work (Wine 1.3.13)