Returns an XML object that contains the entire SOAP response after invoking a web service.
getSOAPResponse(webservice)
→ returns any
Create a SOAP webservice to call, then we can use getSOAPResponse() to view the full response
soapURL = "https://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php?wsdl";
ws = createObject("webservice", soapURL);
zipLatLong = ws.LatLonListZipCode("10001");
res = getSOAPResponse(ws);
writeDump(res);
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.