Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Create HTTP Request object
Message
From
21/12/2016 11:09:13
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01645753
Message ID:
01645783
Views:
65
>Hi,
>
>Do you know, and if yes, how, to create an HTTP Request object in VFP?
>
>TIA

Depending on your plans, you can use the ServerXMLHTTP class.
LOCAL HttpRequest AS MSXML2.ServerXMLHTTP60
LOCAL HttpResponseEndPoint AS String
LOCAL Reply AS String

m.HttpResponseEndPoint = "https://www.levelextreme.com"

m.HttpRequest = CREATEOBJECT("MSXML2.ServerXMLHTTP.6.0")

m.HttpRequest.Open("GET", m.HttpResponseEndPoint, .F.)
m.HttpRequest.Send()

m.Reply = m.HttpRequest.Responsetext

? m.Reply
----------------------------------
António Tavares Lopes
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform