Hi Douglas,
Use this code to talk to DataCash:
<!--- Call COM object to post the XML data to DataCash --->
<CFSCRIPT>
objXMLHTTP = createObject("COM","microsoft.xmlhttp");
objXMLHTTP.open("POST","#Attributes.ServerName#",false);
objXMLHTTP.setRequestHeader("Content-Type", "text/xml");
objXMLHTTP.send(XMLDataString);
</CFSCRIPT>
where XMLDataString is your XML...
HTH
Douglas
-----Original Message-----
From: Douglas McKenzie [mailto:[EMAIL PROTECTED]]
Sent: 04 December 2002 01:46
To: CF-Dev
Subject: [ cf-dev ] datacash
Anyone have any experience of using CF to interact with Datacash?
Im trying to send to some testdata in an XML file using cfhttp POST and then
trying to read the response using cfhttp.filecontent
Ive searched their site and the net but no-one seems to have any info on the
subject.
If anyone can give me some pointers I'd be most grateful as its starting to
do my head in!
Cheers,
Douglas McKenzie
----------------------------------------
Internet Developer / Designer
[EMAIL PROTECTED]
020 7267 6718
----------------------------------------
--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]
--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]