Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Onreadystatechange for async. call to web service
Message
From
28/02/2005 04:10:18
Chrita Lee
ProMOS Technology Inc.
Hsinchu, Taiwan
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
Onreadystatechange for async. call to web service
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows 2000 SP4
Network:
Windows 2000 Pro
Database:
Visual FoxPro
Miscellaneous
Thread ID:
00991100
Message ID:
00991100
Views:
120
Here is the code in VBScript. Is there any equivalence for GetRef() in FoxPro so I can pass it to onreadystatechange event? I can't do this by implementing interface of MSXML2.XMLHttp.

Any idea is appreciated.(Maybe the Timer approach...)
set oHTTP = WScript.CreateObject("Microsoft.XMLHTTP")
oHTTP.onreadystatechange = GetRef("RespReceived")
oHTTP.open "GET", "http://www.microsoft.com", True
oHTTP.send

Sub RespReceived
       if oHTTP.readystate = 4 then
          bRespReceived = True
       end if
end sub
Next
Reply
Map
View

Click here to load this message in the networking platform