Using the following code:
<cfsavecontent variable="localscope.soapR
equest">
<cfoutput>
<soap:Envelope xmlns:soap="
http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body xmlns:ns1="
http://xmlns.oracle.com/pcbpel/adapter/db/top/getProjectByNumber"
>
<ns1:getProjectByNumberSel
ect_TMANUM
BERInputPa
rameters>
<ns1:TMANUMBER>#form.tmanu
mber#</ns1
:TMANUMBER
>
</ns1:getProjectByNumberSe
lect_TMANU
MBERInputP
arameters>
</soap:Body>
</soap:Envelope>
</cfoutput>
</cfsavecontent>
<cfhttp url="ENDPoint URI" method="POST">
<cfhttpparam type="HEADER" name="Content-Type" value="text/xml; charset=utf-8">
<cfhttpparam type="HEADER" name="User-Agent" value="Axis/1.1">
<cfhttpparam type="HEADER" name="SOAPAction" value="operation name">
<cfhttpparam type="BODY" value="#trim(localscope.so
apRequest)
#">
</cfhttp>
I am trying to initiate a SOAP call to a service on Oracle's ESB. I keep getting back "java.lang.NullPointerExce
ption." Any ideas as to why that is?