Need Web Service Consumption Assistance
I am dipping my toe into the web service world and have a web service from Oracle that I am trying to consume. It is not working as I thought, so any pointers are appreciated.
Here is the cfinvoke code...
<cfinvoke
webservice="http://erpintsrv1-dc-aus:7777/arWs/arWsSoapHttpPort?WSDL"
method="customerXML"
returnvariable="a_customerXMLResponseElement">
<cfinvokeargument name="parameters" value="123456" />
</cfinvoke>
<cfdump var="#a_customerXMLResponseElement#">
Here is the result...

Here is the result from the Oracle interface...
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ns0="http://xxas/integration/arws/ArWs.wsdl/types/">
<env:Body>
<ns0:customerXMLResponseElement>
<result>
<ROWSET>
<ROW
num="1">
<CUSTOMER_NUMBER>123456</CUSTOMER_NUMBER>
<CUSTOMER>MOUNTAIN BUILDING SUPPLY, INC #8228</CUSTOMER>
<PLATFORM>500</PLATFORM>
</ROW>
</ROWSET>
</result>
</ns0:customerXMLResponseElement>
</env:Body>
</env:Envelope>
My thought was once I invoked the web service and dumped it to the page, I would see the above info (customer name, platform, etc.) Instead, I seem to get java class names, methods, etc. Thoughts?
