GetHTTPRequestData() Breaks The SOAP Request / Response Cycle In ColdFusion

<cfcomponent
	output="false"
	hint="I provide application settings and event handlers.">
 
	<cfsetting showdebugoutput="false" />
 
	<cftry>
 
		<cfdump
			var="#GetHTTPRequestData()#"
			format="html"
			output="#ExpandPath( './soaprequest.htm' )#"
			/>
 
		<cfcatch>
 
			<cfdump
				var="#CFCATCH#"
				format="html"
				output="#ExpandPath( './soaprequest.htm' )#"
				/>
 
		</cfcatch>
 
	</cftry>
 
</cfcomponent>

For Cut-and-Paste