The problem is that you are trying to treat a complex object as a simple value.
Take the following example. I am creating array that holds 2 values. If I were to dump it everything would be fine but If I tried to output it like below I would get the same error you are. <cfset skills = ArrayNew(1)> <cfset arrayAppend(skills,"ColdFusion")> <cfset arrayAppend(skills,"JavaScript")> <cfoutput>#skills#</cfoutput> This is because the compiler does not understand what you are trying to do. If you want to see the string representation of this object you could always use the toString() method. <cfoutput>#skills.toString()#</cfoutput> Hope this clears it up a little. Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Wed, Sep 17, 2008 at 12:29 PM, Richard White <[EMAIL PROTECTED]> wrote: > to provide more details... i have just got an error and it tells that > complex error types cannot be converted to simple values... but gives me no > clue as to what line of code it is talking about, so i am having to search > through the code to find it > > thanks > > > hi, > > > > i testing my cfc's by using the cfinvoke. and then if there is an > > error when running the cfc's then i have an exception handler to give > > me the details of the error > > > > however, although it gives me the details of the error it only > > provides me with the tag context until it hits the cfinvoke tag - any > > of the processing inside of the cfc's are not included in the tag > > context and therefore even though it may tell me i have an error with > > something it doesnt tell me what page and what line the error occured > > > > does anyone have a solution for this? not too sure if i have explaine > > this correctly but basically i want it to point me to the cfc function > > where the error occured and what line it occured on > > > > thanks > > > > richard > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312699 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

