Whatever message this page gives is out now! Go check it out!
GetSOAPResponse(webservice) |
Parameter | Description |
webservice | A webservice object as returned from the cfobject tag or the CreateObject function. |
<!--- Note that you might need to modify the URL in the CreateObject function
to match your server and the location of the headerservice.cfc file if it is
different than shown here. --->
<cfscript>
ws = CreateObject("webservice",
"http://localhost/soapheaders/headerservice.cfc?WSDL");
ws.echo_me("hello world");
resp = getSOAPResponse(ws);
</cfscript>
<cfdump var="#resp#">