No it won't. For that, your best bet is to use cfhttp to post the data and store the resultant output as a variable:
<cfhttp url="http://myurl.com" method="POST"> <cfhttpparam ...> </cfhttp> <cfset xmlContent = cfhttp.fileContent> <cfset xml_doc = xmlparse(cfhttp.filecontent)> <cfdump var="#xml_doc#"> I'm not sure of the cfhttp syntax off the top of my head (don't copy and paste that) but that should get you started on the right path. HTH Dominic 2008/7/8 LSD 4Me <[EMAIL PROTECTED]>: > Dominic, > > The remote webservice requires data to be POSTed to it and will not accept > GET. Will the xmlparse work with POST requests? > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308753 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

