This validates by calling the cfc directly. Haven't actually called
the function, but I think this would work:

<cfcomponent>

<cffunction
        name="fnProcessForm"
        displayname="fnProcessForm"
        hint="Processes Submitted Form"
        output="false"
        access="remote"
        returnType="struct">

<cfargument name = "dsn" type = "string" required = "yes">

<cfset var valueStruct  =  structNew()>

<cfset valueStruct.key1 = "somevalue" />
<cfset valueStruct.key2 = "someothervalue" />

<cfreturn valueStruct />

</cffunction>

</cfcomponent>

Take a look at: the array references you have in there -- <cfset
arrFiles_200 =  [] /> doesn't look okay to me.

Also, check the way you are calling the function. THat may actually be
the issue.

Cheers,
Kris

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320186
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to