I'm looking to pass values retrieved from a esri:query to a coldfusion cfc in order to retrieve related data from a table that is stored in another data source. has anyone had any success in doing this type of work using and esri:query and coldfusion.
Any insight on the matter would be appreciated.
var deptInfo:Object = new Object();
var newDept:Boolean = chNewDept.selected ? true : false;
deptInfo = {
DepartmentID : cbEditDept.selectedItem.DepartmentID,
Department : tiEditDeptName.text,
Division : cbEditDivision.selectedItem.Division,
newDept : newDept};
ro.saveDepartment(deptInfo);
and here is the cfc part
<cffunction name="saveDepartment">
<cfargument name="deptInfo" type="struct" required="true">
...
</cffunction>