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>