I created a simple web service using ColdFusion
CFC. It takes a struct and inserts the info into the database. Works
fine from a direct call using CF's createObject("webservice") so I know
it works...However in AS, I am getting this error: faultCode:DecodingError faultString:'SOAP Response cannot be decoded. Raw response: ' faultDetail:'null' Here is my Web Service Script: var ws:WebService = new WebService(); ws.wsdl = "https://ummciisdevweb22.umich.edu/videotracking/trackerDAO.cfc?wsdl"; ws.addEventListener(FaultEvent.FAULT, alertFault); ws.loadWSDL(); ws.countIt({trackData:trackInfo}); I have looked at 100 different examples and none of them work. Does ANYONE know how I can get this to work? I have a Wednesday deadline to get this thing to work.

