<cfhttp url = "http://10.1.6.211/ProposalGenerator.aspx" METHOD="POST"
throwOnError = "yes" >
<cfhttpparam name="propxml" TYPE="FORMFIELD" value="#propxml#">
</cfhttp>

This produces the following error
00 Internal Server Error


The error occurred in C:\Inetpub\wwwroot\test.cfm: line 111

109 : <CFSET propxml = ToString(#myproposalxml#)>
110 : <cfhttp url =
"http://10.1.6.211/TransChoiceProposal/ProposalGenerator.aspx" METHOD="POST"
throwOnError = "yes" >
111 : <cfhttpparam name="propxml" TYPE="FORMFIELD" value="#propxml#">
112 : </cfhttp>
113 :


If I change the value to anything else, i.e. "MONGO" or any other text value,
my code works. .Why won't this accept an xml object as the value? I tried
converting it to a string first and that didn't work either? Any ideas?