/ Published in: ColdFusion
Expand |
Embed | Plain Text
<cfset tempFileName = "#createUUID()#.xml" /> <cfhttp url="http://cicsa:13304/storeOrderReview" method="post" result="httpResponse" file="#tempFileName#" path="#getTempDirectory()#"> <cfhttpparam type="header" name="content-length" value="#len(soapBody)#"> <cfhttpparam type="header" name="charset" value="utf-8"> <cfhttpparam type="header" name="Accept-Encoding" value="*" /> <cfhttpparam type="header" name="TE" value="deflate;q=0" /> <cfhttpparam type="xml" value="#trim(soapBody)#" /> </cfhttp> <cfset xmlContent = xmlParse('#getTempDirectory()#/#tempFileName#') /> <!--- <cfdump var="#httpResponse.filecontent#"> ---> <cfset BSO_Parent = "#XMLSearch(xmlContent, "//*[local-name()='svho_order_summary']")#">
You need to login to post a comment.
