Under Construction...
WORK IN PROGRESS
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <myendpoint xmlns="http://www.avectra.com/2005/"> <userName>myusername</userName> <password>mypassword</password> </myendpoint> </soap:Body></soap:Envelope><cfset cfhttp = new http(method = "POST", charset = "utf-8", url = arguments.soapurl, throwonerror = "yes", timeout = 60) /> <cfscript> cfhttp.setMethod ("post"); cfhttp.addParam(name = "content-type", type = "header", value = "text/xml"); cfhttp.addParam(name = "charset", type = "header", value = "utf-8"); cfhttp.addParam(name = "SOAPAction", type = "header", value = trim(arguments.soapactionurl)); cfhttp.addParam(name = "content-length", type = "header", value = len(trim(arguments.soapBody))); cfhttp.addParam(name = "message", type = "xml", value = trim(arguments.soapBody)); cfhttp = cfhttp.send().getPrefix(); </cfscript>