> That is what I tried. I keep getting an error that I'm trying to
> figure out. It's an odd one.
>
> Channel disconnected before an acknowledgement was received.
>
> I call the cfc in flex who gets the query info and sends it to the
> report. Here's the cfc.
>
> Ideas?
>
> <cffunction name="TALENT_AttendanceSheet" access="remote" >
> <cfargument name="RegID" required="true">
> <cfargument name="SessionNo" required="true">
>
> <cfquery name="getAll" datasource="KimberlyH85">
> select *
> from e_classes
> ORDER BY ProgramOrder, ClassName, ClassDay, ClassTime
> </cfquery>
>
>
> <cfreport template="TALENT_AttendanceSheet.cfr" query="getAll"
> format="PDF">
> </cfreport>
> </cffunction>