Re: exception handling, kindly help

2004-10-20 Thread cf coder
Can somebody please help? I don't know where to go from here. I'll really appreciate it ~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community.

RE: exception handling, kindly help

2004-10-20 Thread Pascal Peters
even place a cferror tag in a page itself and it should override that of the application.cfm Pascal -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: 20 October 2004 10:43 To: CF-Talk Subject: Re: exception handling, kindly help Can somebody please help? I don't

Re: RE: exception handling, kindly help

2004-10-20 Thread simon
Pascal -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: 20 October 2004 10:43 To: CF-Talk Subject: Re: exception handling, kindly help Can somebody please help? I don't know where to go from here. I'll really appreciate

Re: exception handling, kindly help

2004-10-20 Thread cf coder
thanks for that... I'll give it a bash Regards cfcoder ~| Sams Teach Yourself Regular Expressions in 10 Minutes by Ben Forta http://www.houseoffusion.com/banners/view.cfm?bannerid=40 Message:

Re: exception handling, kindly help

2004-10-20 Thread cf coder
thanks Simon ~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http://www.houseoffusion.com/banners/view.cfm?bannerid=37 Message:

Re: exception handling, kindly help

2004-10-11 Thread cf coder
Hi and thank you all for posting the code. I'm afraid I'm still stuck with this problem. My application uses a lot of iframes and the custom error message can have a green background or a orange background depending on the page the error occurred and to be able to do that I use the custom tag

Re: exception handling, kindly help

2004-10-11 Thread cf coder
Hi and thank you all for posting the code. I'm afraid I'm still stuck with this problem. My application uses a lot of iframes and the custom error message can have a green background or a orange background depending on the page the error occurred and to be able to do that I use the custom tag

Re: exception handling, kindly help

2004-10-08 Thread cf coder
Thank you guys for replying to my thread. Ewok I tried your code, but still don't get back a empty error structure cftry cfcatch type=any cfdump var=#error# !--- I want to see what is returned in this structure --- cfabort cf_caughtIt catchMessage=#cfcatch.message# /cfcatch /cftry

Re: exception handling, kindly help

2004-10-08 Thread cf coder
I'm sorry I made a typo mistake in my last post. What I meant was that the error structure is empty when I try to dump it [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: exception handling, kindly help

2004-10-08 Thread Pascal Peters
To: CF-Talk Subject: Re: exception handling, kindly help Thank you guys for replying to my thread. Ewok I tried your code, but still don't get back a empty error structure cftry cfcatch type=any cfdump var=#error# !--- I want to see what is returned in this structure --- cfabort

Re: exception handling, kindly help

2004-10-08 Thread cf coder
Hi there, sorry for not getting back sooner. I've been banging my head trying to find a solution ALL day. I would really appreciate your help. I have added the custom error message in the error handler file. cfcatch type=any cf_caughtIt catchMessage=#cfcatch.message# /cfcatch I modified

RE: exception handling, kindly help

2004-10-08 Thread Mark A Kruger
as the variable error. Try this: cfdump var=#error# on your error handling template. -Mark -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 12:34 PM To: CF-Talk Subject: Re: exception handling, kindly help Hi there, sorry for not getting back sooner. I've

Re: exception handling, kindly help

2004-10-08 Thread cf coder
thanks Mark, the cfcatch tags are wrapped inside a cftry block, I didn't post it because I thought it wasn't necessary. And secondly the cfcatch tag is not in the error handler page, its on a file where the error has occurred. cfdump var=#error# throws an error and that's because as Pascal

Re: exception handling, kindly help

2004-10-08 Thread cf coder
was empty when I did not expect it to be. From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Thursday, October 07, 2004 11:57 AM To: CF-Talk Subject: Re: exception handling, kindly help On Thu, 07 Oct 2004 12:53:56 -0400, cf coder [EMAIL PROTECTED] wrote

RE: exception handling, kindly help

2004-10-08 Thread Dawson, Michael
. From: cf coder [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 1:03 PM To: CF-Talk Subject: Re: exception handling, kindly help do you know as to why it would throw a COM object error? If so do you know if there is a fix? I have seen instances where this variable is empty.I

RE: exception handling, kindly help

2004-10-08 Thread Mark A Kruger
ok... I'll run off and chase someone else's red herring now (ha). -mark -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: Friday, October 08, 2004 12:55 PM To: CF-Talk Subject: Re: exception handling, kindly help thanks Mark, the cfcatch tags are wrapped inside a cftry

exception handling, kindly help

2004-10-07 Thread cf coder
Hello everybody, I'm hoping someone can help me. I am working on this exception handling code. I have written a custom error handler that displays a custom error message when a coldfusion error occurs and sends an email to the administrator. I want to append the complete error block to the email

RE: exception handling, kindly help

2004-10-07 Thread Tangorre, Michael
From: cf coder [mailto:[EMAIL PROTECTED] Hello everybody, I'm hoping someone can help me. I am working on this exception handling code. I have written a custom error handler that displays a custom error message when a coldfusion error occurs and sends an email to the administrator. I

Re: exception handling, kindly help

2004-10-07 Thread cf coder
cfcatch.details returns nothing. Does it depend on the type of exception I select? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: exception handling, kindly help

2004-10-07 Thread Tangorre, Michael
From: cf coder [mailto:[EMAIL PROTECTED] cfcatch.details returns nothing. Does it depend on the type of exception I select? It is cfcatch.detail Check this page for more in depth info... http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a10.htm#wp33 95038 Michael T. Tangorre

Re: exception handling, kindly help

2004-10-07 Thread Dave Carabetta
On Thu, 07 Oct 2004 12:53:56 -0400, cf coder [EMAIL PROTECTED] wrote: cfcatch.details returns nothing. Does it depend on the type of exception I select? It should be cfcatch.detail. Regards, Dave [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: exception handling, kindly help

2004-10-07 Thread Ewok
Here is the content of one of my cferror templates. It’s an old one, hence the evaluet() I think what you’re looking for is the ERROR.ExtendedInfo Take a look at the entire “ERROR” structure when an error occurs. Im sure everything you’ll want to know is in there font

RE: exception handling, kindly help

2004-10-07 Thread Dawson, Michael
[mailto:[EMAIL PROTECTED] Sent: Thursday, October 07, 2004 11:57 AM To: CF-Talk Subject: Re: exception handling, kindly help On Thu, 07 Oct 2004 12:53:56 -0400, cf coder [EMAIL PROTECTED] wrote: cfcatch.details returns nothing. Does it depend on the type of exception I select

Re: exception handling, kindly help

2004-10-07 Thread Adam Churvis
, October 07, 2004 12:53 PM Subject: Re: exception handling, kindly help cfcatch.details returns nothing. Does it depend on the type of exception I select? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: exception handling, kindly help

2004-10-07 Thread Deanna Schneider
It will also be empty when you have java i/o permission errors. (Just ran into this a moment ago.) - Original Message - From: Dawson, Michael I have seen instances where this variable is empty.I believe it was related to a COM object error.I could be wrong about the exact variable