We recently heard from some people in our OPS department that mentioned this 
was happening as well.

Personally, I've been using the following template for CFCATCH dumps. Have not 
had a problem so far with it.

<cfswitch expression="#cfcatch.Type#">
        <cfcase value="application">
                <cfset dumplist="type,message,detail,tagcontext,ExtendedInfo">
        </cfcase>
        <cfcase value="database">
                <cfset 
dumplist="type,message,detail,tagcontext,NativeErrorCode,SQLState,Sql,queryError,where">
        </cfcase>
        <cfcase value="expression">
                <cfset dumplist="type,message,detail,tagcontext,ErrNumber">
        </cfcase>
        <cfcase value="lock">
                <cfset 
dumplist="type,message,detail,tagcontext,LockName,LockOperation">
        </cfcase>
        <cfcase value="missingInclude">
                <cfset 
dumplist="type,message,detail,tagcontext,MissingFileName">
        </cfcase>
        <cfcase value="object,security,template">
                <cfset dumplist="type,message,detail,tagcontext">
        </cfcase>
        <cfdefaultcase>
                <cfset dumplist="type,message,detail,tagcontext">
        </cfdefaultcase>
</cfswitch>

<p>
        <u><b>CFCATCH Error Variables</b></u><br>
        <cfloop list="#dumplist#" index="i">
                <u>cfcatch.#i#</u><br>
                <cfdump var="#evaluate("cfcatch." & i)#"><br><br>
        </cfloop>
</p>


>When I try to do <CFDUMP VAR="#CFCATCH#">
> 
>I get the following [Unknown Type] when I used to get the entire CFCatch
>structure dumped, anyone have any ideas why I am now getting this. 
> 
> 
> 
>Trevor Orr
>Summit Projects
>[EMAIL PROTECTED]
>541.387.8883 x213

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210788
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to