Thanks, everyone, for pointing out the goofy errors in the attributes.
I don't know how I got those in there...copy and paste gone wild, or
something.
Maybe just old-age confusion... :o)

Anyway, I got that straightened out and am one to some other errors
with expandPath and variables involved.

Making progress..

Thanks, again!

Rick

-----Original Message-----
From: Kris Jones [mailto:kris.jon...@verizon.net] 
Sent: Friday, March 06, 2009 4:01 PM
To: cf-talk
Subject: Re: I give...anything inherently wrong with this code that would
cause this error?


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:320191
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