Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
XML over HTTPS POST.
Message
 
To
29/08/2006 14:12:56
General information
Forum:
Visual FoxPro
Category:
Windows API functions
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP1
Network:
Windows NT
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01149489
Message ID:
01149609
Views:
18
>Greetings.
>
>Has anyone ever done XML over HTTPS POST using VFP8.0?
>
>I think I need to us di_MD5DLL.dll, but I'm not sure.
>
>Any help is appreciated.

You don't need westwind. You just need the operating system unless your project reuires MSXML3.0 or MSXML4.0. In that case ISE offers a merge module to install. I'ne read, however, that the MSXML merge objects are large and consume a lot of resources to install.

David showed you some stuff - but I have snever seen "server" in an HTTP POST, except on a server page (ASP).
I use this in for some projects - ot's like David's but no "Server":
lcURL=[http://www.r6solutions.com/MyASP.asp]
oHTTP=NewOBJECT("MSXML2.XMLHTTP")
oHTTP.open([POST],lcURL,.f.)
oHttp.setRequestHeader("Content-Type", "text/xml")
oHttp.send(lcSendBody) &&lcSendBody is the XML string
oHTTP.abort && Don't know why I do this!
It sends an XML string in the requestheader.
Imagination is more important than knowledge
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform