caveat - I have never got SOAP to work -
but it's easy to get VFP to consume xml from a website/ URL - e.g. try this:

LOCAL cURL,  oHttp as xmlhttp
cURL = "http://www.hawthorn-cottage.com/tryText.asp";
oHttp = createobject("Microsoft.XmlHttp")
oHttp.Open("POST", cURL, .F.) && Synchronous
oHttp.Send("")
?oHttp.ResponseText
LOCAL oDom as xmldom
oDom = CREATEOBJECT("Microsoft.xmldom")  && ??
oDom = oHttp.responseXML  && ??
?oDom.baseName  && ''
?oDom.nodeName  && 'document'
RELEASE ALL
CLEAR ALL

On 22/03/2016 00:23, Vince Teachout wrote:
...
I just need to get the returning xml data to the database server, parse it, and apply to the data set.

<snip>

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/[email protected]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to