How do I post xml to the remote server? They gave me the url to post the xml
data to, that will in turn echo back the requested xml data, but what's the
process?
Simplified, this is what I have so far...
<cfxml variable="search">
<NexRes product="cars">
...child_elements...
</NexRes>
</cfxml>
<cfhttp method="POST" url="http://domain.com/file.cgi">
?????????
I read something about using cfcontent and ToString()?? Confused. Please help.
romeogq - 30 Aug 2005 17:25 GMT
Nevermind, I got it.
<cfxml variable="search">
... xml-blah xml-blah xml-blah ...
</cfxml>
<cfhttp method="POST" url="http://domain.com/xml/xps.cgi">
<cfhttpparam type="xml" value="#search#">
</cfhttp>
<cfset returned_xml-blah= xmlparse(cfhttp.FileContent)>