Re: Does anyone know where this error is generated?

2003-03-27 Thread Bryan Stevenson
Use CFTRY/CATCH wrapped around the whole page. If that error happens then display a nicer message. Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

RE: Does anyone know where this error is generated?

2003-03-27 Thread Douglas.Knudsen
a custom error template is good...cferror tag...but you should probably figure out why this is occuring. What version of CF are you using? Using Access DBs anywhere? Check your logs in the CFADMIN tool for long running requests. Something is holding up cfserver threads somewhere it seems.

Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
that it was actually generated through IIS and not CF. Anyone have further thoughts? - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 27, 2003 1:21 PM Subject: RE: Does anyone know where this error is generated? a custom error template is good

Re: Does anyone know where this error is generated?

2003-03-27 Thread ksuh
Subject: Re: Does anyone know where this error is generated? Douglas, We're working on resolving unlocked session variables, as well as otherknown causes (culled from various sources), and there aren't any Access DBs on our servers, all SQL2000 and Oracle. This is definitely a priority

RE: Does anyone know where this error is generated?

2003-03-27 Thread Douglas.Knudsen
: Thursday, March 27, 2003 2:04 PM To: CF-Talk Subject: Re: Does anyone know where this error is generated? Douglas, We're working on resolving unlocked session variables, as well as other known causes (culled from various sources), and there aren't any Access DBs on our servers, all SQL2000

Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
to the user. There are a large number of sites here, so it takes some time to resolve all that. Still wondering - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 27, 2003 2:18 PM Subject: Re: Does anyone know where this error is generated

RE: Does anyone know where this error is generated?

2003-03-27 Thread Dave Watts
The message is from CF, not IIS. If you've stopped the CF service, if you try to request a .cfm page, this error will appear. This isn't exactly the case. The message is from the CF ISAPI extension, and to the best of my knowledge there's no way to change it in CF 5. In CFMX with Updater

Re: Does anyone know where this error is generated?

2003-03-27 Thread jon hall
One way would be to develop an ISAPI filter or extension that determines if the CF service is started, if so, pass request to CF, if not, send user to pretty error page. -- jon mailto:[EMAIL PROTECTED] Thursday, March 27, 2003, 2:28:35 PM, you wrote: CW Not to be dense, but if CF service is

Re: RE: Does anyone know where this error is generated?

2003-03-27 Thread ksuh
This isn't exactly the case. The message is from the CF ISAPI extension, and to the best of my knowledge there's no way to change it in CF 5. Yes. I just didn't want to explain the nuts and bolts :) It should be mentioned for clarity that it's not the ISAPI extension that's causing the

Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
PROTECTED] Sent: Thursday, March 27, 2003 2:42 PM Subject: RE: Does anyone know where this error is generated? The message is from CF, not IIS. If you've stopped the CF service, if you try to request a .cfm page, this error will appear. This isn't exactly the case. The message is from the CF

Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
Downside of that would be additional load for every request, would it not? - Original Message - From: jon hall [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 27, 2003 2:47 PM Subject: Re: Does anyone know where this error is generated? One way would be to develop