Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
XML over HTTPS POST.
Message
 
À
29/08/2006 14:12:56
Information générale
Forum:
Visual FoxPro
Catégorie:
Fonctions Windows API
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP1
Network:
Windows NT
Database:
Visual FoxPro
Divers
Thread ID:
01149489
Message ID:
01149609
Vues:
12
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform