Re: Error Messages

2012-11-19 Thread Russ Michaels

the fact u can kill it means it is not a native java thread, if you strack
trace it then you may get some better idea of what it was doing.
One common cause of hanging threads is that user closed browser or went to
another page before the request completed, so the server had no where to
send any response back to.
If you setup crash protection in FR then that should deal with those.



On Mon, Nov 19, 2012 at 4:27 PM, Steve LaBadie wrote:

>
> I found these error messages in the CF Log files. What is happening is the
> home page chokes from anywhere to 1 minute to as much as 20 minutes unless
> I kill it in Fusion Reactor. I would appreciate any insight.
>
> Error","jrpp-547","11/17/12","22:58:25",,"The request has exceeded the
> allowable time limit Tag: CFQUERY The specific sequence of files included
> or processed is: F:\inetpub\wwwroot\index.cfm, line: 1 "
> coldfusion.runtime.RequestTimedOutException: The request has exceeded the
> allowable time limit Tag: CFQUERY
>
> "Error","jrpp-543","11/17/12","22:58:40",,"The request has exceeded the
> allowable time limit Tag: CFQUERY The specific sequence of files included
> or processed is:
> F:\inetpub\wwwroot\academics\colleges\health_sciences\index.cfm, line: 25 "
> coldfusion.runtime.RequestTimedOutException: The request has exceeded the
> allowable time limit Tag: CFQUERY
>
>
> Steve LaBadie, Web Manager
> East Stroudsburg University
> 570-422-3999
> slaba...@esu.edu<mailto:slaba...@esu.edu>
>
> [facebook-16x16]<http://www.facebook.com/eaststroudsburguniversity>
>  [twitter-16x16] <http://twitter.com/esuniversity>   [youtube-16x16] <
> http://www.youtube.com/user/esuedu>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353246
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Error Messages

2012-11-19 Thread Steve LaBadie

I found these error messages in the CF Log files. What is happening is the home 
page chokes from anywhere to 1 minute to as much as 20 minutes unless I kill it 
in Fusion Reactor. I would appreciate any insight.

Error","jrpp-547","11/17/12","22:58:25",,"The request has exceeded the 
allowable time limit Tag: CFQUERY The specific sequence of files included or 
processed is: F:\inetpub\wwwroot\index.cfm, line: 1 "
coldfusion.runtime.RequestTimedOutException: The request has exceeded the 
allowable time limit Tag: CFQUERY

"Error","jrpp-543","11/17/12","22:58:40",,"The request has exceeded the 
allowable time limit Tag: CFQUERY The specific sequence of files included or 
processed is: F:\inetpub\wwwroot\academics\colleges\health_sciences\index.cfm, 
line: 25 "
coldfusion.runtime.RequestTimedOutException: The request has exceeded the 
allowable time limit Tag: CFQUERY


Steve LaBadie, Web Manager
East Stroudsburg University
570-422-3999
slaba...@esu.edu<mailto:slaba...@esu.edu>

[facebook-16x16]<http://www.facebook.com/eaststroudsburguniversity>  
[twitter-16x16] <http://twitter.com/esuniversity>   [youtube-16x16] 
<http://www.youtube.com/user/esuedu>



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353244
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 - CFC doesnt throw any error messages?

2010-04-09 Thread Mike Kear

Followup:I  finally isolated why I was getting no error messages:
 My Application.cfc had an OnError() method but nothing inside it yet.

Normally I come to error handling near the end of a project, to write
graceful error handling throughout the application.  Before then,
graceful error handling is the last thing i need - i need errors shown
in all their nasty horror while I'm developing, so I can fix them
easily.  Instead of commenting out the OnError() method in the
Application.cfc, I had just left it there with nothing inside it.   So
whenever errors were occurring, the application was doing what it was
told to do on an error - namely nothing at all.

When i commented out the whole OnError function in the Application.cfc
(as i normally did in the past) the error reporting behaviour i was
used to returned.

So thanks for your suggestions folks.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332810
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 - CFC doesnt throw any error messages?

2010-04-08 Thread Mike Kear

Thanks Sean, Scott.  Looks like I have to check my CFadmin settings
more closely then.  I have obviously switched off something that
should be turned on.

But it's good to know that if i set everything right, I can have it
just the same as I'm used to.

That's the information I needed to know.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month


On Fri, Apr 9, 2010 at 5:06 AM, Sean Corfield  wrote:
>
> On Thu, Apr 8, 2010 at 12:16 AM, Mike Kear  wrote:
>> In every previous version, when there was a syntax or other error in
>> my code in a CFC,  I'd get an error message that would point me to the
>> line containing the problem.  Now, with CF9 Enterprise,  I get a
>> result from my CFCs or I get nothing.    If there's an error in my
>> code, I have to carefully debug line by line, hoping the line I am
>> changing is the one that will fix the problem. It's extremely time
>> consuming and nowhere near as efficient as "syntax error on line xxx"
>
> Hmm, I still get the exact same level of error reporting on CF9 that
> I'm used to from earlier versions. Sounds like there's something else
> up in your environment?
> --
> Sean A Corfield -- (904) 302-SEAN
> Railo Technologies, Inc. -- http://getrailo.com/
> An Architect's View -- http://corfield.org/
>


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332809
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 - CFC doesnt throw any error messages?

2010-04-08 Thread Sean Corfield

On Thu, Apr 8, 2010 at 12:16 AM, Mike Kear  wrote:
> In every previous version, when there was a syntax or other error in
> my code in a CFC,  I'd get an error message that would point me to the
> line containing the problem.  Now, with CF9 Enterprise,  I get a
> result from my CFCs or I get nothing.    If there's an error in my
> code, I have to carefully debug line by line, hoping the line I am
> changing is the one that will fix the problem. It's extremely time
> consuming and nowhere near as efficient as "syntax error on line xxx"

Hmm, I still get the exact same level of error reporting on CF9 that
I'm used to from earlier versions. Sounds like there's something else
up in your environment?
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret A

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332796
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 - CFC doesnt throw any error messages?

2010-04-08 Thread Scott Brady

I've seen plenty of errors from CFCs (sadly :) ), so there must be something up.

Two things:
1) I assume you've made sure there aren't any try/catch blocks around
the calling code, right?
2) Maybe post some code?

Scott


On Thu, Apr 8, 2010 at 1:16 AM, Mike Kear  wrote:
>
> Is this what's supposed to happen?
>
> In every previous version, when there was a syntax or other error in
> my code in a CFC,  I'd get an error message that would point me to the
> line containing the problem.  Now, with CF9 Enterprise,  I get a
> result from my CFCs or I get nothing.    If there's an error in my
> code, I have to carefully debug line by line, hoping the line I am
> changing is the one that will fix the problem. It's extremely time
> consuming and nowhere near as efficient as "syntax error on line xxx"
>
> Is that what's supposed to happen with CF9? or have I missed something?


-- 
-
Scott Brady
http://www.scottbrady

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332756
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF9 - CFC doesnt throw any error messages?

2010-04-08 Thread Mike Kear

Is this what's supposed to happen?

In every previous version, when there was a syntax or other error in
my code in a CFC,  I'd get an error message that would point me to the
line containing the problem.  Now, with CF9 Enterprise,  I get a
result from my CFCs or I get nothing.If there's an error in my
code, I have to carefully debug line by line, hoping the line I am
changing is the one that will fix the problem. It's extremely time
consuming and nowhere near as efficient as "syntax error on line xxx"

Is that what's supposed to happen with CF9? or have I missed something?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332753
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Adobe error messages

2010-01-27 Thread Judah McAuley

Oh, they aren't for public relations. If that were true, they would be
much more polished and look functional even if they weren't. And they
do have reasonable bug tracking mechanisms for software in
development. If you are in a closed beta, the feedback tools there
work.

Once a product ships, however, there seems to no longer be any
interest whatsoever.

Judah

On Wed, Jan 27, 2010 at 10:01 AM, Rick Faircloth
 wrote:
>
> The reality of Adobe's feedback and bug tracker mechanisms indicate that
> these mechanisms are only for public relations, not true attempts at
> understanding
> what people want, need, or how they feel about current Adobe priorites...
>
> Rick
>
> 
> -
> .sounds like the current executive administration in Washington, D.C.
>
>
> -Original Message-
> From: Qing Xia [mailto:txiasum...@gmail.com]
> Sent: Wednesday, January 27, 2010 11:47 AM
> To: cf-talk
> Subject: Re: (ot) Adobe error messages
>
>
> I submitted to this portal as well and was raving mad afterwards.  (well,
> maybe that was an exaggeration).
>
> They took my submission--and even had a dropdown for me to select the CF
> server version--but afterwards I saw ONLY CF9 errors are displayed. I can't
> even find my own submission when trying to search for it.  How very user
> un-friendly.  Talking about black hole...
>
> On Wed, Jan 27, 2010 at 11:33 AM,  wrote:
>
>>
>> The Adobe go/wish form is a black hole.  The only ColdFusion bug tracker
>> I know of that is public and allows voting is the CF9 bug tracker:
>>
>> http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html
>>
>> Frankly, I don't know why
>> 1) It has such an ugly url
>> 2) It's so darn hard to find (I have to Google for several minutes to
>> find the stupid thing every time)
>> 3) And it only seems to apply to CF9 ("Adobe Beta Software or related
>> documentation")
>>
>> ~Brad
>>
>>  Original Message 
>> Subject: Re: (ot) Adobe error messages
>> From: Qing Xia 
>> Date: Tue, January 26, 2010 4:11 pm
>> To: cf-talk 
>>
>>
>> >
>> >
>> > What NULL ? We're talking about the log file, not the tag.Regardless,
> log
>> > it in Adobe's bug tracker and then post back with the number
>> > so other people can vote for it.
>> >
>> > I did submit it to the wish list at
>> > https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I
>> don't
>> > believe I was given a confirmation number.
>>
>>
>>
>>
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330195
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-27 Thread Rick Faircloth

The reality of Adobe's feedback and bug tracker mechanisms indicate that
these mechanisms are only for public relations, not true attempts at
understanding
what people want, need, or how they feel about current Adobe priorites...

Rick


-
.sounds like the current executive administration in Washington, D.C.


-Original Message-
From: Qing Xia [mailto:txiasum...@gmail.com] 
Sent: Wednesday, January 27, 2010 11:47 AM
To: cf-talk
Subject: Re: (ot) Adobe error messages


I submitted to this portal as well and was raving mad afterwards.  (well,
maybe that was an exaggeration).

They took my submission--and even had a dropdown for me to select the CF
server version--but afterwards I saw ONLY CF9 errors are displayed. I can't
even find my own submission when trying to search for it.  How very user
un-friendly.  Talking about black hole...

On Wed, Jan 27, 2010 at 11:33 AM,  wrote:

>
> The Adobe go/wish form is a black hole.  The only ColdFusion bug tracker
> I know of that is public and allows voting is the CF9 bug tracker:
>
> http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html
>
> Frankly, I don't know why
> 1) It has such an ugly url
> 2) It's so darn hard to find (I have to Google for several minutes to
> find the stupid thing every time)
> 3) And it only seems to apply to CF9 ("Adobe Beta Software or related
> documentation")
>
> ~Brad
>
>  Original Message 
> Subject: Re: (ot) Adobe error messages
> From: Qing Xia 
> Date: Tue, January 26, 2010 4:11 pm
> To: cf-talk 
>
>
> >
> >
> > What NULL ? We're talking about the log file, not the tag.Regardless,
log
> > it in Adobe's bug tracker and then post back with the number
> > so other people can vote for it.
> >
> > I did submit it to the wish list at
> > https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I
> don't
> > believe I was given a confirmation number.
>
>
>
> 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330189
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-27 Thread Qing Xia

I submitted to this portal as well and was raving mad afterwards.  (well,
maybe that was an exaggeration).

They took my submission--and even had a dropdown for me to select the CF
server version--but afterwards I saw ONLY CF9 errors are displayed. I can't
even find my own submission when trying to search for it.  How very user
un-friendly.  Talking about black hole...

On Wed, Jan 27, 2010 at 11:33 AM,  wrote:

>
> The Adobe go/wish form is a black hole.  The only ColdFusion bug tracker
> I know of that is public and allows voting is the CF9 bug tracker:
>
> http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html
>
> Frankly, I don't know why
> 1) It has such an ugly url
> 2) It's so darn hard to find (I have to Google for several minutes to
> find the stupid thing every time)
> 3) And it only seems to apply to CF9 ("Adobe Beta Software or related
> documentation")
>
> ~Brad
>
> ---- Original Message 
> Subject: Re: (ot) Adobe error messages
> From: Qing Xia 
> Date: Tue, January 26, 2010 4:11 pm
> To: cf-talk 
>
>
> >
> >
> > What NULL ? We're talking about the log file, not the tag.Regardless, log
> > it in Adobe's bug tracker and then post back with the number
> > so other people can vote for it.
> >
> > I did submit it to the wish list at
> > https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I
> don't
> > believe I was given a confirmation number.
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330186
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-27 Thread brad

The Adobe go/wish form is a black hole.  The only ColdFusion bug tracker
I know of that is public and allows voting is the CF9 bug tracker:

http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html

Frankly, I don't know why
1) It has such an ugly url
2) It's so darn hard to find (I have to Google for several minutes to
find the stupid thing every time)
3) And it only seems to apply to CF9 ("Adobe Beta Software or related
documentation")

~Brad

 Original Message 
Subject: Re: (ot) Adobe error messages
From: Qing Xia 
Date: Tue, January 26, 2010 4:11 pm
To: cf-talk 


>
>
> What NULL ? We're talking about the log file, not the tag.Regardless, log
> it in Adobe's bug tracker and then post back with the number
> so other people can vote for it.
>
> I did submit it to the wish list at
> https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I don't
> believe I was given a confirmation number.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330185
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: (ot) Adobe error messages

2010-01-27 Thread Tom Chiverton

On Tuesday 26 Jan 2010, Qing Xia wrote:
> > I did submit it to the wish list at
> > https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I don't
> > believe I was given a confirmation number.

Yeah, the bug tracker is now totally broken, as opposed to mearly being nearly 
useless.

-- 
Helping to proactively engineer networks as part of the IT team of the year 
2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330169
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-26 Thread Qing Xia

>
>
> What NULL ? We're talking about the log file, not the tag.Regardless, log
> it in Adobe's bug tracker and then post back with the number
> so other people can vote for it.
>
> I did submit it to the wish list at
> https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I don't
> believe I was given a confirmation number.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-26 Thread Rick Mason

Couldn't they do a search and replace?  Oh wait, Homesite is no longer
available.  Never mind ;<).


Rick

On Tue, Jan 26, 2010 at 11:08 AM, Tom Chiverton <
tom.chiver...@halliwells.com> wrote:

>
> On Tuesday 26 Jan 2010, Qing Xia wrote:
> > It is definitely nice to have--makes the code far cleaner. Plus, it makes
> > the tag more consistent--there is no semantic reason why the NULL
> attribute
> > should work with some functions but not others.
>
> What NULL ? We're talking about the log file, not the tag.
>
> Regardless, log it in Adobe's bug tracker and then post back with the
> number
> so other people can vote for it.
>
> --
> Helping to evangelistically grow global professional back-end data as part
> of
> the IT team of the year 2010, '09 and '08
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England and
> Wales under registered number OC307980 whose registered office address is at
> Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
> list of members is available for inspection at the registered office
> together with a list of those non members who are referred to as partners.
>  We use the word “partner” to refer to a member of the LLP, or an employee
> or consultant with equivalent standing and qualifications. Regulated by the
> Solicitors Regulation Authority.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 2500.
>
> For more information about Halliwells LLP visit www.halliwells.co
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-26 Thread Tom Chiverton

On Tuesday 26 Jan 2010, Qing Xia wrote:
> It is definitely nice to have--makes the code far cleaner. Plus, it makes
> the tag more consistent--there is no semantic reason why the NULL attribute
> should work with some functions but not others.

What NULL ? We're talking about the log file, not the tag.

Regardless, log it in Adobe's bug tracker and then post back with the number 
so other people can vote for it.

-- 
Helping to evangelistically grow global professional back-end data as part of 
the IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330141
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-26 Thread Qing Xia

It is definitely nice to have--makes the code far cleaner. Plus, it makes
the tag more consistent--there is no semantic reason why the NULL attribute
should work with some functions but not others.

On Tue, Jan 26, 2010 at 7:05 AM, Tom Chiverton  wrote:

>
> On Monday 25 Jan 2010, Qing Xia wrote:
> > I wonder how long it is going to take Adobe to replace all the
> > "[Macromedia]" in CF error messages to "[Adobe]".  Completely irrelevant
> > maybe, but nice to have so new CF people don't have to wonder.
>
> You could only do that in a major release (like CF10) because you don't
> know
> what is parsing those logs.
> And is it really that important ?
>
> --
> Helping to simultaneously embrace seamless next-generation enterprise-class
> front-end convergence as part of the IT team of the year 2010, '09 and '08
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England and
> Wales under registered number OC307980 whose registered office address is at
> Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
> list of members is available for inspection at the registered office
> together with a list of those non members who are referred to as partners.
>  We use the word “partner” to refer to a member of the LLP, or an employee
> or consultant with equivalent standing and qualifications. Regulated by the
> Solicitors Regulation Authority.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 2500.
>
> For more information about Halliwells LLP visit www.halliwells.co
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330139
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-26 Thread Tom Chiverton

On Monday 25 Jan 2010, Qing Xia wrote:
> I wonder how long it is going to take Adobe to replace all the
> "[Macromedia]" in CF error messages to "[Adobe]".  Completely irrelevant
> maybe, but nice to have so new CF people don't have to wonder.

You could only do that in a major release (like CF10) because you don't know 
what is parsing those logs.
And is it really that important ?

-- 
Helping to simultaneously embrace seamless next-generation enterprise-class 
front-end convergence as part of the IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Eric Cobb

Hey, if you're going to break something, do it right! 

Thanks,

Eric Cobb
http://www.cfgears.com



Andy Matthews wrote:
> You only get Allaire errors because you code is really sucky.
>
> Minor code problems get you Adobe messages.
> Major code problems get you Macromedia errors.
> Quit your day job code problems give you Allaire errors. 
>
>
> andy
>
> -Original Message-
> From: Eric Cobb [mailto:cft...@ecartech.com] 
> Sent: Monday, January 25, 2010 1:11 PM
> To: cf-talk
> Subject: Re: (ot) Adobe error messages
>
>
> Considering that I still get "Allaire" errors all along, it's probably going
> to be a while.  ;-)
>
> Thanks,
>
> Eric Cobb
> http://www.cfgears.com
>
>
>
> Qing Xia wrote:
>   
>> I wonder how long it is going to take Adobe to replace all the 
>> "[Macromedia]" in CF error messages to "[Adobe]".  Completely 
>> irrelevant maybe, but nice to have so new CF people don't have to wonder.
>>
>>
>>
>> 
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Qing Xia

Kind of like tacit advertising if it can be fixed... But then on the other
hand, I agree this wouldn't be on the top of my wish list for Adobe.

I'd rather they fix the problem of not checking NULL=#YesNoFormat(NOT
isDefined('form.someFromField'))# in the CFQueryParam tag first.

On Mon, Jan 25, 2010 at 3:20 PM, DURETTE, STEVEN J (ATTASIAIT) <
sd1...@att.com> wrote:

>
> I don't know about that...  I think it would be a perfect project for
> Junior Engineers just starting in the group to get into.
>
> Gets them deep into the code without having them do anything too complex
> to begin with!
>
> Steve
>
>
> -Original Message-
> From: Dave Watts [mailto:dwa...@figleaf.com]
> Sent: Monday, January 25, 2010 3:18 PM
> To: cf-talk
> Subject: Re: (ot) Adobe error messages
>
>
> > I can think of plenty of other things I would prefer Adobe engineers
> > spend their time doing.
>
> I agree completely.
>
> > -Camero
>
> who?
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
> GSA Schedule, and provides the highest caliber vendor-authorized
> instruction at our training centers, online, or onsite.
>
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330128
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Cameron Childress

On Mon, Jan 25, 2010 at 3:17 PM, Dave Watts  wrote:
>> -Camero
>
> who?

Freakin line monster ate my name.

-Cameron

...

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330127
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread brad

Macromedia JRun for instance was never re-branded as an Adobe product. 
I kind of figured that had something to do with some of the Macromedia
errors I still see.

~Brad


 Original Message 
Subject: (ot) Adobe error messages
From: Qing Xia 
Date: Mon, January 25, 2010 1:05 pm
To: cf-talk 


I wonder how long it is going to take Adobe to replace all the
"[Macromedia]" in CF error messages to "[Adobe]". Completely irrelevant
maybe, but nice to have so new CF people don't have to wonder.




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread DURETTE, STEVEN J (ATTASIAIT)

I don't know about that...  I think it would be a perfect project for
Junior Engineers just starting in the group to get into.

Gets them deep into the code without having them do anything too complex
to begin with!

Steve


-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Monday, January 25, 2010 3:18 PM
To: cf-talk
Subject: Re: (ot) Adobe error messages


> I can think of plenty of other things I would prefer Adobe engineers
> spend their time doing.

I agree completely.

> -Camero

who?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330124
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Dave Watts

> I can think of plenty of other things I would prefer Adobe engineers
> spend their time doing.

I agree completely.

> -Camero

who?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330123
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread DURETTE, STEVEN J (ATTASIAIT)

LOL!

-Original Message-
From: Andy Matthews [mailto:li...@commadelimited.com] 
Sent: Monday, January 25, 2010 2:51 PM
To: cf-talk
Subject: RE: (ot) Adobe error messages


You only get Allaire errors because you code is really sucky.

Minor code problems get you Adobe messages.
Major code problems get you Macromedia errors.
Quit your day job code problems give you Allaire errors. 


andy

-Original Message-
From: Eric Cobb [mailto:cft...@ecartech.com] 
Sent: Monday, January 25, 2010 1:11 PM
To: cf-talk
Subject: Re: (ot) Adobe error messages


Considering that I still get "Allaire" errors all along, it's probably
going
to be a while.  ;-)

Thanks,

Eric Cobb
http://www.cfgears.com



Qing Xia wrote:
> I wonder how long it is going to take Adobe to replace all the 
> "[Macromedia]" in CF error messages to "[Adobe]".  Completely 
> irrelevant maybe, but nice to have so new CF people don't have to
wonder.
>
>
> 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Adobe error messages

2010-01-25 Thread Andy Matthews

You only get Allaire errors because you code is really sucky.

Minor code problems get you Adobe messages.
Major code problems get you Macromedia errors.
Quit your day job code problems give you Allaire errors. 


andy

-Original Message-
From: Eric Cobb [mailto:cft...@ecartech.com] 
Sent: Monday, January 25, 2010 1:11 PM
To: cf-talk
Subject: Re: (ot) Adobe error messages


Considering that I still get "Allaire" errors all along, it's probably going
to be a while.  ;-)

Thanks,

Eric Cobb
http://www.cfgears.com



Qing Xia wrote:
> I wonder how long it is going to take Adobe to replace all the 
> "[Macromedia]" in CF error messages to "[Adobe]".  Completely 
> irrelevant maybe, but nice to have so new CF people don't have to wonder.
>
>
> 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330121
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Cameron Childress

On Mon, Jan 25, 2010 at 2:05 PM, Qing Xia  wrote:
> I wonder how long it is going to take Adobe to replace all the
> "[Macromedia]" in CF error messages to "[Adobe]".  Completely irrelevant
> maybe, but nice to have so new CF people don't have to wonder.

I can think of plenty of other things I would prefer Adobe engineers
spend their time doing.

-Camero

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330120
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Adobe error messages

2010-01-25 Thread Eric Cobb

Considering that I still get "Allaire" errors all along, it's probably 
going to be a while.  ;-)

Thanks,

Eric Cobb
http://www.cfgears.com



Qing Xia wrote:
> I wonder how long it is going to take Adobe to replace all the
> "[Macromedia]" in CF error messages to "[Adobe]".  Completely irrelevant
> maybe, but nice to have so new CF people don't have to wonder.
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330119
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


(ot) Adobe error messages

2010-01-25 Thread Qing Xia

I wonder how long it is going to take Adobe to replace all the
"[Macromedia]" in CF error messages to "[Adobe]".  Completely irrelevant
maybe, but nice to have so new CF people don't have to wonder.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Translating CFFORM Error Messages

2007-07-06 Thread Paul Hastings
Oğuz_Demirkapı wrote:
>   

why not use resource bundles for this & leave the js lib alone?

~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283094
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Translating CFFORM Error Messages

2007-07-06 Thread Oğuz_Demirkapı
Hi,

Why don't you try to use "message" attribute for cfform items?



If you need to change anything on any default form items, you can copy the 
"/cfide/scripts/" directory into your webroot and change it as you like and 
refer it as following with "scriptsrc" attribute.





I hope this helps.


Sincerely,

Oğuz Demirkapı

Sr. Developer | TeraTech
http://www.teratech.com 




-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 06, 2007 1:17 PM
To: CF-Talk
Subject: Translating CFFORM Error Messages

One of the gals on our team is trying to translate the error messages
that CFFORM's JS validation displays to the user.  Anyone know how to
do that?

thanks,
barneyb

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283092
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Translating CFFORM Error Messages

2007-07-06 Thread Barney Boisvert
One of the gals on our team is trying to translate the error messages
that CFFORM's JS validation displays to the user.  Anyone know how to
do that?

thanks,
barneyb

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
CF 8 – Scorpio beta now available, 
easily build great internet experiences – Try it now on Labs
http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283090
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Validating with hidden form fields - how to use my own format ting for error messages?

2007-03-08 Thread Dave Watts
> I'm using CF's built-in form validation method that uses 
> hidden form fields for validation (see
> http://livedocs.adobe.com/coldfusion/7/htmldocs/1385.htm#1154690)
> 
> How do I apply my own formatting to those error messages?

You can use the CFERROR tag to control the display of these errors. Set
TYPE="VALIDATION", and within your error page you can reference
Error.ValidationHeader, Error.InvalidFields (which will contain the
unordered list of error messages), and Error.ValidationFooter.

All that said, I would recommend against the use of CF's built-in
server-side validation if you're using validation for security purposes, as
the validation fields can easily be removed from the HTTP request sent by
your browser.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272062
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Validating with hidden form fields - how to use my own formatting for error messages?

2007-03-08 Thread Pete Ruckelshaus
Thanks Ian, that helped.

I found that using cferror doesn't allow me to use my normal site
template, so since I'm using application.cfc, I used the onError
method.  This is what I did, and it allowed me to use my normal site
template:













A form validation 
error has occurred.


#arguments.exception.errors#

Please go back and correct the
problems.




Please provide the 
following
information to technical support:
Error Event: 
#arguments.eventName#
Error details:





#errorcontent#










~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2. 
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272028
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Validating with hidden form fields - how to use my own formatting for error messages?

2007-03-08 Thread Ian Skinner
How do I apply my own formatting to those error messages?

One method is to use the  tag.  You can use this tag to call any 
page you want to display this type of exceptions, and that page can then format 
the output as you desire.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Sudoku
|   |   |
-
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272021
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Validating with hidden form fields - how to use my own formatting for error messages?

2007-03-08 Thread Pete Ruckelshaus
I'm using CF's built-in form validation method that uses hidden form
fields for validation (see
http://livedocs.adobe.com/coldfusion/7/htmldocs/1385.htm#1154690)

How do I apply my own formatting to those error messages?

Thanks,

Pete

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272020
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFForms/XML format suddenly giving error messages

2006-11-13 Thread Will Tomlinson
>The puzzle is that i dont use a XML file on this site, 

No no I know you're not writing your own XML for this... I'm just sayin it 
looks like CF can't find *ITS* xml file. 

Other than that, I don't know anything else. 

Will 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260178
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFForms/XML format suddenly giving error messages

2006-11-13 Thread Doug Bezona
I just recently took a look at the XML forms, and have to say it's
pretty impressive stuff. 

The skinning is nice, but the best part is that by editing the XSL
files, you can completely control how client-side validation is handled.
For example, if you have a favorite JS validation library, some custom
stuff, whatever, you can replace the standard CF validation code with
that. So you get the nice easy CFFORM syntax that will leverage whatever
validation you like. 

I highly recommend digging around in /cfide/scripts/XSL and
/cfide/scripts/CSS - it takes a little bit of time to get oriented, but
it's worth it.

> -Original Message-
> From: Robertson-Ravo, Neil (RX) [mailto:Neil.Robertson-
> [EMAIL PROTECTED]
> Sent: Monday, November 13, 2006 2:48 AM
> To: CF-Talk
> Subject: Re: CFForms/XML format suddenly giving error messages
> 
> I think it is more a case of how little people use CFFORM anymore, it
> could
> be that it's use in the past was an easy option for forms and a kind
of
> beginners tool.
> 
> I know we never use CFFORM anymore for this reason and we never looked
at
> x-forms cause we generated most our forms on the fly.
> 
> As for Flash forms, urgh...nothing good to say.
> 
> :-)


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260159
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Robertson-Ravo, Neil (RX)
I think it is more a case of how little people use CFFORM anymore, it could
be that it's use in the past was an easy option for forms and a kind of
beginners tool.

I know we never use CFFORM anymore for this reason and we never looked at
x-forms cause we generated most our forms on the fly.

As for Flash forms, urgh...nothing good to say.

:-)

 

 


"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Mike Kear
To: CF-Talk
Sent: Mon Nov 13 05:38:42 2006
Subject: Re: CFForms/XML format suddenly giving error messages

Thanks to Roland Collins on an other list, who pointed me at the solution.

What surprises me most about this is that so few people have tried the
XML forms.  They run FAR faster than the flash versions and are MUCH
more flexible as to look and feel.   However flash is the buzz-word of
the moment and so few people know anything about CSS.  Anyway 

So I'm suddenly getting this problem ...  I think its to do with the
location of the default scripts, css and xsl files.  I have a solution
- kind-of.

I created a folder called CFFORMS under the root of my site and moved
a clean new copy of the /cfide/scripts/CSS folder and
/cfide/scripts/XSL folder in there.  Then I changed the CFFORM tag to
access the skin file directly, rather than by name.  e.g.

Instead of :



I now use




And that seems to have done the trick.   I was trying to change the
scriptsrc attribute to fix the problem,  but instead it was the
location of the skin xsl file that was the problem.


Thanks for your help, Roland.

I'm sorry if this problem has been cross-posted, but  I was having
problems finding anyone who knows anything about XML forms.  If you
haven't played with the XML forms, I strongly suggest you give them a
try - all the validation stuff works as advertised (unlike the clunky
version in CF5).  Rather than waiting for a full minute for a flash
form to render, it renders instantly like html,  you can build them
automatically from a table definition too as I do every day.  They are
the great unsung hero of CF7.



Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks Pty Ltd
http://afpwebworks.com Full Scale ColdFusion hosting from A$15/month



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260144
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Mike Kear
Thanks to Roland Collins on an other list, who pointed me at the solution.

What surprises me most about this is that so few people have tried the
XML forms.  They run FAR faster than the flash versions and are MUCH
more flexible as to look and feel.   However flash is the buzz-word of
the moment and so few people know anything about CSS.  Anyway 

So I'm suddenly getting this problem ...  I think its to do with the
location of the default scripts, css and xsl files.  I have a solution
- kind-of.

I created a folder called CFFORMS under the root of my site and moved
a clean new copy of the /cfide/scripts/CSS folder and
/cfide/scripts/XSL folder in there.  Then I changed the CFFORM tag to
access the skin file directly, rather than by name.  e.g.

Instead of :



I now use




And that seems to have done the trick.   I was trying to change the
scriptsrc attribute to fix the problem,  but instead it was the
location of the skin xsl file that was the problem.


Thanks for your help, Roland.

I'm sorry if this problem has been cross-posted, but  I was having
problems finding anyone who knows anything about XML forms.  If you
haven't played with the XML forms, I strongly suggest you give them a
try - all the validation stuff works as advertised (unlike the clunky
version in CF5).  Rather than waiting for a full minute for a flash
form to render, it renders instantly like html,  you can build them
automatically from a table definition too as I do every day.  They are
the great unsung hero of CF7.



Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks Pty Ltd
http://afpwebworks.com Full Scale ColdFusion hosting from A$15/month

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260143
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Mike Kear
Is there no one on this list who uses the XML forms?

I am finding even more broken forms on sites that havent been touched
in months now.   I am wondering if there has been an update to the
java runtime or something like that which has caused this error.

For those who are helpfully suggesting that it's something i might
have done in writing the XML,you should know that the XML is all
written by ColdFusion.   A developer doesnt write any XML in order ot
use teh XML forms.  All you do is use the CFFORM tags with the
format="XML" rather than format="Flash" in the cfform tag.

Suddenly, all of my cfforms that use the XML format are broken, with
the following error message:

[quote]
javax.xml.transform.TransformerConfigurationException:
javax.xml.transform.TransformerException:
org.xml.sax.SAXParseException: Content is not allowed in prolog.
[/quote]


No one got any ideas?


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260139
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Mike Kear
Thanks Will,

The puzzle is that i dont use a XML file on this site, although i use
it elsewhere on other sites.   The XML is purely the ColdFusion
generated stuff wtih the CFFORMs.  (well except that it can't be
because it's giving this error).

Can anyone zip up their CFIDE/Scripts folder and send it to me please,
so i know i'm using a pristine, out-of-the-box set?  I've tinkered
around so much now I'm not sure i have a pure set any more.

What i need are the cfide/scripts,  cfide/scripts/css and
cfide/scripts/xsl folders.  That way i can compare the out-of-the-box
files with the ones i have.  The differences must be the cause. I
would surmise.

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month



On 11/13/06, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> Mike,
>
> 1. I love X-Forms just as much as you. :)
>
> 2. The only time I've seen "content is not allowed in prolog" is when I was 
> trying to read/load application settings from an xml config file. If I had 
> the path wrong to my xml file, I got that prolog error everytime.
>
> Maybe something changed on your server where the xml can't be read?
>
> Just a guess...
>
> Will
>

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260125
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Rob Wilkerson
On 11/12/06, Mike Kear <[EMAIL PROTECTED]> wrote:

> [quote]
> javax.xml.transform.TransformerConfigurationException:
> javax.xml.transform.TransformerException:
> org.xml.sax.SAXParseException: Content is not allowed in prolog.
> [/quote]
>
> I've checked all the obvious things - looked for files that have
> changed as the possible cause of the issue,  configuratoin changes in
> the site etc  and nothing on the site has changes in a way that might
> cause this.

This error is typically seen when text, whitespace or control
characters precede the XML declaration.  I don't know how this is
applied in forms, exactly, but I can think of at least one thing to
look for.

If you have a DevNet edition of ColdFusion then look for the existence
of a  tag telling you just that.  It is inserted by the
application server and has a nasty habit of breaking XML because of
where it's inserted: if there's a  element then it's appended to
that, but if there's not - as is the case for most XML docs - then
it's just inserted at the top of the file.

Maybe that's coming into play...

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260093
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Will Tomlinson
Mike,

1. I love X-Forms just as much as you. :)

2. The only time I've seen "content is not allowed in prolog" is when I was 
trying to read/load application settings from an xml config file. If I had the 
path wrong to my xml file, I got that prolog error everytime. 

Maybe something changed on your server where the xml can't be read? 

Just a guess...

Will

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260089
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFForms/XML format suddenly giving error messages

2006-11-12 Thread Mike Kear
Does anyone know why this might suddenly become a problem with my
CFFORMS (XML format)?   I know not many people use the XML format and
that's a pity because i think they're terrific.  Or at least i did
until this suddenly started happening.

This form is on a CMS that I've been using happily without errors for
almost a year now.  Here's the error message:

[quote]
javax.xml.transform.TransformerConfigurationException:
javax.xml.transform.TransformerException:
org.xml.sax.SAXParseException: Content is not allowed in prolog.
[/quote]

I've checked all the obvious things - looked for files that have
changed as the possible cause of the issue,  configuratoin changes in
the site etc  and nothing on the site has changes in a way that might
cause this.

So that means something in the OS.  Is there anything that my good
friend Mr Gates might have put on in the auto updates to my XPPro that
might cause this?

Or something else i should look for?

I konw it's not the syntax of the forms, because i can remove
everything but the CFFORM tag and still get the error.   Here's the
cfform tag:



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260052
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cf mx exception error messages

2005-07-08 Thread Barney Boisvert
CF sometimes gets a little weird with templates that once existed, but
no longer exist.  This is by design if you have the template cache
enabled, but it can happen even with it off.  Clear your cfclasses
directory (inside WEB-INF) and restart and it'll probably go away.

cheers,
barneyb

On 7/8/05, Dave Nixon <[EMAIL PROTECTED]> wrote:
> Can anyone explain below why you get a SQL query error for a page that is
> possibly missing???
> I am confused.Any help would be appreciated.
> 
> 
> 
> "Error","jrpp-260","07/06/05","12:18:04",,"Error Executing Database
> Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
> Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
> sequence of files included or processed is: D:\sites\test\mission.cfm "
> coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
> Database Query.
> at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
> at 
> cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
> at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
> at 
> cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
> at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)



-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211484
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


RE: cf mx exception error messages

2005-07-08 Thread Dave Nixon
I know that those pages are not there yet

Thanks Dave


 >What do you mean the page is missing?
>
>-Original Message-
>From: Dave Nixon [mailto:[EMAIL PROTECTED] 
>Sent: Friday, July 08, 2005 7:59 PM
>To: CF-Talk
>Subject: cf mx exception error messages
>
>Can anyone explain below why you get a SQL query error for a page that is
>possibly missing???
>I am confused.Any help would be appreciated.
>
>
>
>"Error","jrpp-260","07/06/05","12:18:04",,"Error Executing Database
>Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
>Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
>sequence of files included or processed is: D:\sites\test\mission.cfm "
>coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
>Database Query.
>   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
>   at
>cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>   at
>cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
>   at
>coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
>   at
>coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
>   at
>coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
>   at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
>   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
>   at
>coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
>   at
>coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
>Filter.java:28)
>   at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
>   at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
>   at
>coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
>   at coldfusion.CfmServlet.service(CfmServlet.java:105)
>   at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
>   at
>jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
>   at
>jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
>   at
>jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
>   at
>jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
>   at
>jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
>348)
>   at
>jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
>)
>   at
>jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:29
>4)
>   at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
>"Error","jrpp-268","07/06/05","13:06:25",,"Error Executing Database
>Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
>Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
>sequence of files included or processed is: D:\sites\test\admin\logout.cfm "
>coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
>Database Query.
>   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
>   at
>cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>   at
>cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
>   at
>coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
>   at
>coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
>   at
>coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
>   at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
>   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
>   at
>coldfusion.filter.BrowserDebugFilter.in

RE: cf mx exception error messages

2005-07-08 Thread Dave Nixon
>What do you mean the page is missing?
>
>-Original Message-
>From: Dave Nixon [mailto:[EMAIL PROTECTED] 
>Sent: Friday, July 08, 2005 7:59 PM
>To: CF-Talk
>Subject: cf mx exception error messages
>
>Can anyone explain below why you get a SQL query error for a page that is
>possibly missing???
>I am confused.Any help would be appreciated.
>
>
>
>"Error","jrpp-260","07/06/05","12:18:04",,"Error Executing Database
>Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
>Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
>sequence of files included or processed is: D:\sites\test\mission.cfm "
>coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
>Database Query.
>   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
>   at
>cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>   at
>cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
>   at
>coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
>   at
>coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
>   at
>coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
>   at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
>   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
>   at
>coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
>   at
>coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
>Filter.java:28)
>   at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
>   at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
>   at
>coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
>   at coldfusion.CfmServlet.service(CfmServlet.java:105)
>   at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
>   at
>jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
>   at
>jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
>   at
>jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
>   at
>jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
>   at
>jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
>348)
>   at
>jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
>)
>   at
>jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:29
>4)
>   at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
>"Error","jrpp-268","07/06/05","13:06:25",,"Error Executing Database
>Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
>Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
>sequence of files included or processed is: D:\sites\test\admin\logout.cfm "
>coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
>Database Query.
>   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
>   at
>cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>   at
>cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
>   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
>   at
>coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
>   at
>coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
>   at
>coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
>   at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
>   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
>   at
>coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)

RE: cf mx exception error messages

2005-07-08 Thread Russ
What do you mean the page is missing?

-Original Message-
From: Dave Nixon [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 08, 2005 7:59 PM
To: CF-Talk
Subject: cf mx exception error messages

Can anyone explain below why you get a SQL query error for a page that is
possibly missing???
I am confused.Any help would be appreciated.



"Error","jrpp-260","07/06/05","12:18:04",,"Error Executing Database
Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
sequence of files included or processed is: D:\sites\test\mission.cfm "
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
at
cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at
cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at
coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
348)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:29
4)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
"Error","jrpp-268","07/06/05","13:06:25",,"Error Executing Database
Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
sequence of files included or processed is: D:\sites\test\admin\logout.cfm "
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
at
cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at
cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at
coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.

cf mx exception error messages

2005-07-08 Thread Dave Nixon
Can anyone explain below why you get a SQL query error for a page that is
possibly missing???
I am confused.Any help would be appreciated.



"Error","jrpp-260","07/06/05","12:18:04",,"Error Executing Database
Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
sequence of files included or processed is: D:\sites\test\mission.cfm "
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
at cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at 
cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
348)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:29
4)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
"Error","jrpp-268","07/06/05","13:06:25",,"Error Executing Database
Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
sequence of files included or processed is: D:\sites\test\admin\logout.cfm "
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
at cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at 
cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
at
jrun.servlet.ServletEngineService.dispatch

cf mx exception error messages

2005-07-08 Thread Dave Nixon
Can anyone explain below why you get a SQL query error for a page that is
possibly missing???
I am confused.Any help would be appreciated.



"Error","jrpp-260","07/06/05","12:18:04",,"Error Executing Database
Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
sequence of files included or processed is: D:\sites\test\mission.cfm "
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
at cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at 
cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
348)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:29
4)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
"Error","jrpp-268","07/06/05","13:06:25",,"Error Executing Database
Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL
Server Driver][SQL Server]Line 3: Incorrect syntax near ','. The specific
sequence of files included or processed is: D:\sites\test\admin\logout.cfm "
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:495)
at cfsecurity2ecfm950639948.runPage(D:\sites\test\admin\security.cfm:9)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
at 
cfApplication2ecfm2106905353.runPage(D:\sites\test\Application.cfm:14)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
at coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:30)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:93)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
at
jrun.servlet.ServletEngineService.dispatch

RE: ColdFusion Error Messages

2005-06-22 Thread Damien McKenna
> Personally I don't find printing them very useful.

Me either, but most people feel they have to print something or forward
you an entire email (the original of which you already received) to say
"I agree" or "make it so".

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210278
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: ColdFusion Error Messages

2005-06-22 Thread Ray Champagne
I don't either, but back in the day (..cringe..) before I knew better, 
before learning about error handling, my clients would print and fax the 
error to me when they came across one.  It was a nightmare to decipher 
what was going on.  And, since I sucked, there were a lot of faxes 
coming in.

Now, though, the error just gets emailed to me.  Much better!  :)

S. Isaac Dealey wrote:
>>I have had the same problem - with several versions of CF
>>- CF4.5,
>>CF5.0, CF6.1, they all do it.  I thought it was some kind
>>of
>>functionality thing that I didn't understand the point of,
>>but was
>>necessary for some reason or another.
> 
> 
>>I would think that if it were a bug, then it would have
>>been fixed long
>>ago
> 
> 
> I don't think they antiscipate a lot of people will be printing the
> error messages actually, so if it were a bug it might have just been
> ignored. Personally I don't find printing them very useful.
> 
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210276
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: ColdFusion Error Messages

2005-06-22 Thread S . Isaac Dealey
> I have had the same problem - with several versions of CF
> - CF4.5,
> CF5.0, CF6.1, they all do it.  I thought it was some kind
> of
> functionality thing that I didn't understand the point of,
> but was
> necessary for some reason or another.

> I would think that if it were a bug, then it would have
> been fixed long
> ago

I don't think they antiscipate a lot of people will be printing the
error messages actually, so if it were a bug it might have just been
ignored. Personally I don't find printing them very useful.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210271
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: ColdFusion Error Messages

2005-06-22 Thread Ray Champagne
I have had the same problem - with several versions of CF - CF4.5, 
CF5.0, CF6.1, they all do it.  I thought it was some kind of 
functionality thing that I didn't understand the point of, but was 
necessary for some reason or another.

I would think that if it were a bug, then it would have been fixed long 
ago

Ray

Damien McKenna wrote:
>>If a user gets an error message, they usually either take a 
>>screenshot or print it out- but printing it out yields some 
>>ugly results.
> 
> 
> I have the same problem here - but only with IE.
> 

-- 
=
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org
=

The information contained in this transmission (including any
attached files) is CONFIDENTIAL and is intended only for the
person(s) named above. If you received this transmission in
error, please delete it from your system and notify us
immediately. If you are not an intended recipient, please note
that any use or dissemination of the information contained in this
transmission (including any attached files) and the copying,
printing, or retransmission of that information is strictly
prohibited. You can notify us by return email or by phone at
603.433.9559.

Thank you.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210268
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: ColdFusion Error Messages

2005-06-22 Thread Bob Clingan
Figures- just tried to report it as such and the email bounced back- their bug 
reporting form points to a invalid email address.

>Sounds like a bug then.

~|
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:210267
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: ColdFusion Error Messages

2005-06-22 Thread Bob Clingan
Sounds like a bug then.


>> If a user gets an error message, they usually either take a 
>> screenshot or print it out- but printing it out yields some 
>> ugly results.
>
>I have the same problem here - but only with IE.
>
>-- 
>Damien McKenna - Web Developer - [EMAIL PROTECTED]
>The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
>#include 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210260
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


RE: ColdFusion Error Messages

2005-06-22 Thread Damien McKenna
> If a user gets an error message, they usually either take a 
> screenshot or print it out- but printing it out yields some 
> ugly results.

I have the same problem here - but only with IE.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210253
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


ColdFusion Error Messages

2005-06-22 Thread bob
Maybe its just my printer, but when I try and print out a page with a 
ColdFusion generated error on it, I get the HTML not the message... has anyone 
else noticed this?



If a user gets an error message, they usually either take a screenshot or print 
it out- but printing it out yields some ugly results.



--Bob





--

Need Web Hosting or Internet Services? Visit http://www.jaguNET.com/



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210252
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


OT: Modify IIS 5.0 SMTP error messages?

2005-04-21 Thread Damien McKenna
Does anyone know how to modify the IIS 5.0 SMTP error messages?  I'd
like to change them to show more of the original message's headers.
Thanks.
 
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> 
The Limu Company - http://www.thelimucompany.com/
<http://www.thelimucompany.com/>  - 407-804-1014
#include 
 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203820
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


RE: Error Messages not displaying right

2005-04-07 Thread Ricky Fritzsching
I probably should have explained more in detail what 

The error message itself it writing out the HTML tags instead of properly
formatting the error message so I can read it. On one of my servers it reads
correctly but on this server it CFisn't parsing the HTML and special
character tags in the error. I am seeing , ,  instead of seeing
spaces and ordered bulleted lists.

Hopefully that cleared it up.

R

-Original Message-
From: Nathan Strutz [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:13 AM
To: CF-Talk
Subject: Re: Error Messages not displaying right

You're saying that's the only error it displays? There's a setting on the
debug page to display detailed errors, turn it on, but I wouldn't recommend
it for a live web site (security issues).

Otherwise, the error below is just a parsing/compiling error, like you have
an invalid tag attribute.

-nathan strutz
http://www.dopefly.com/


Ricky Fritzsching wrote:
> Is there a setting that I am just overlooking on the 
> server/CFAdministrator that will display my error messages correctly?
Anyone else had this problem?
> Thx!
> 
> 
> 
> 
> 
> Invalid token '.' found on line 17 at column 123. 
> 
> The CFML compiler was processing:the tag attribute "form", 
> on line 17, column 119.a cflocation tag beginning on line 17, 
> column 18.a cflocation tag beginning on line 17, column 18.a
cflocation tag
> beginning on line 17, column 18. 
>  
>  
>  
>  
> Ricky Fritzsching
> 
> "If debugging is the art of removing bugs, then programming must be 
> the art of inserting them"
> 
> 
> 
> 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201905
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


Re: Error Messages not displaying right

2005-04-07 Thread Nathan Strutz
You're saying that's the only error it displays? There's a setting on 
the debug page to display detailed errors, turn it on, but I wouldn't 
recommend it for a live web site (security issues).

Otherwise, the error below is just a parsing/compiling error, like you 
have an invalid tag attribute.

-nathan strutz
http://www.dopefly.com/


Ricky Fritzsching wrote:
> Is there a setting that I am just overlooking on the server/CFAdministrator
> that will display my error messages correctly? Anyone else had this problem?
> Thx!
> 
> 
> 
> 
> 
> Invalid token '.' found on line 17 at column 123. 
> 
> The CFML compiler was processing:the tag attribute "form", on
> line 17, column 119.a cflocation tag beginning on line 17, column
> 18.a cflocation tag beginning on line 17, column 18.a cflocation tag
> beginning on line 17, column 18. 
>  
>  
>  
>  
> Ricky Fritzsching
> 
> "If debugging is the art of removing bugs, then programming must be the art
> of inserting them"
> 
> 
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201899
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Error Messages not displaying right

2005-04-07 Thread Ricky Fritzsching
Is there a setting that I am just overlooking on the server/CFAdministrator
that will display my error messages correctly? Anyone else had this problem?
Thx!


>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


Invalid token '.' found on line 17 at column 123. 

The CFML compiler was processing:the tag attribute "form", on
line 17, column 119.a cflocation tag beginning on line 17, column
18.a cflocation tag beginning on line 17, column 18.a cflocation tag
beginning on line 17, column 18.   
 
 
 
 
Ricky Fritzsching

"If debugging is the art of removing bugs, then programming must be the art
of inserting them"



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201895
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


Re: "Garbled" CFMX Error Messages

2004-11-28 Thread Jon Austin
Works fine for me...?

On Mon, 29 Nov 2004 06:31:17 -, Martin Parry
<[EMAIL PROTECTED]> wrote:
> That's what was wrong with it ..

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185494
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


RE: "Garbled" CFMX Error Messages

2004-11-28 Thread Martin Parry
In CF MX updater 6.1 using CFDUMP as  returned
[Empty String]. This only happened after the updater was installed.. So
I had to re-write Macromedia's CFDUMP tag for them ;)

I couldn't believe the big M couldn't sort this out so decided to alter
their code to make it work properly.

That's what was wrong with it ..

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.com

-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED] 
Sent: 26 November 2004 19:31
To: CF-Talk
Subject: RE: "Garbled" CFMX Error Messages

Whats wrong with CFDUMP?

At 07:36 AM 11/26/2004, you wrote:
>Mine does it too - It's a HTMLEDITFORMATTED version of an apostrophe..
I
>try to let it not bother me.. Perhaps I should butcher the CFTHROW tag
>in the same way as I butchered MM's broken CFDUMP tag ?!?!?!
>
>Martin Parry
>Macromedia Certified Developer
>http://www.BeetrootStreet.com
>
>-Original Message-
>From: Bob Haroche [mailto:[EMAIL PROTECTED]
>Sent: 26 November 2004 15:41
>To: CF-Talk
>Subject: "Garbled" CFMX Error Messages
>
>Using CFMX 6.1 on windows 2000, both IE 6 and Firefox 1
>
>I find frequently that errors reported by CF server displays html tags
>and
>characters instead of converting them to text. For example instead of
>seeing
>an ordered list, I see  a series  displayed. All the information is
>there, it's just hard to read. Another example, when querying for a db
>table
>I know doesn't exist I see.
>
>
>



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185492
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


RE: "Garbled" CFMX Error Messages

2004-11-26 Thread Brook Davies
Whats wrong with CFDUMP?

At 07:36 AM 11/26/2004, you wrote:
>Mine does it too - It's a HTMLEDITFORMATTED version of an apostrophe.. I
>try to let it not bother me.. Perhaps I should butcher the CFTHROW tag
>in the same way as I butchered MM's broken CFDUMP tag ?!?!?!
>
>Martin Parry
>Macromedia Certified Developer
>http://www.BeetrootStreet.com
>
>-Original Message-
>From: Bob Haroche [mailto:[EMAIL PROTECTED]
>Sent: 26 November 2004 15:41
>To: CF-Talk
>Subject: "Garbled" CFMX Error Messages
>
>Using CFMX 6.1 on windows 2000, both IE 6 and Firefox 1
>
>I find frequently that errors reported by CF server displays html tags
>and
>characters instead of converting them to text. For example instead of
>seeing
>an ordered list, I see  a series  displayed. All the information is
>there, it's just hard to read. Another example, when querying for a db
>table
>I know doesn't exist I see.
>
>
>

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185455
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: "Garbled" CFMX Error Messages

2004-11-26 Thread Martin Parry
Mine does it too - It's a HTMLEDITFORMATTED version of an apostrophe.. I
try to let it not bother me.. Perhaps I should butcher the CFTHROW tag
in the same way as I butchered MM's broken CFDUMP tag ?!?!?!

Martin Parry
Macromedia Certified Developer
http://www.BeetrootStreet.com

-Original Message-
From: Bob Haroche [mailto:[EMAIL PROTECTED] 
Sent: 26 November 2004 15:41
To: CF-Talk
Subject: "Garbled" CFMX Error Messages

Using CFMX 6.1 on windows 2000, both IE 6 and Firefox 1

I find frequently that errors reported by CF server displays html tags
and
characters instead of converting them to text. For example instead of
seeing
an ordered list, I see  a series  displayed. All the information is
there, it's just hard to read. Another example, when querying for a db
table
I know doesn't exist I see.


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185444
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


"Garbled" CFMX Error Messages

2004-11-26 Thread Bob Haroche
Using CFMX 6.1 on windows 2000, both IE 6 and Firefox 1

I find frequently that errors reported by CF server displays html tags and
characters instead of converting them to text. For example instead of seeing
an ordered list, I see  a series  displayed. All the information is
there, it's just hard to read. Another example, when querying for a db table
I know doesn't exist I see:

The Microsoft Jet database engine cannot find the input table or query
'bogusTable'. Make sure it exists and that its name is spelled
correctly.

Note the &apos character entitites displayed.

Any ideas what could be causing it?

-
Regards,
Bob Haroche
O n P o i n t  S o l u t i o n s
www.OnPointSolutions.com




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185443
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=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Help with Custom Error Messages

2004-09-13 Thread Pascal Peters
Yes, you should be  able to use  (with a
custom exception type) and then use 
exception="myExeptionType" template="myErrorTemplate.cfm">

Pascal

> -Original Message-
> From: Monique Boea [mailto:[EMAIL PROTECTED]
> Sent: 13 September 2004 14:02
> To: CF-Talk
> Subject: [Spam?] Help with Custom Error Messages
> 
> I would like to display a custom error when a user's session expires?
> 
> Any suggestions?
> 
> Canbe used for this?
> 
> Thanks
> 
> 
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Help with Custom Error Messages

2004-09-13 Thread John Beynon
your best bet is to to test for something like session.isloggedin (or
some variable you've set when a user logs in) in your application.cfm
and then redirect if it doesn't exist, ie it's timed out,

jb.

On Mon, 13 Sep 2004 08:10:48 -0400, Monique Boea
<[EMAIL PROTECTED]> wrote:
> To display a custom error message?
> 
> -Original Message-
> From: joe velez [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 13, 2004 8:10 AM
> To: CF-Talk
> Subject: Re: Help with Custom Error Messages
> 
> maybe cfabort
>   _
> 
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Help with Custom Error Messages

2004-09-13 Thread Monique Boea
To display a custom error message?

-Original Message-
From: joe velez [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 13, 2004 8:10 AM
To: CF-Talk
Subject: Re: Help with Custom Error Messages

maybe cfabort 
  _
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Help with Custom Error Messages

2004-09-13 Thread joe velez
maybe cfabort
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Help with Custom Error Messages

2004-09-13 Thread Monique Boea
I would like to display a custom error when a user's session expires?

 
Any suggestions?

 
Canbe used for this?

 
Thanks
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Using CFCATCH to display default error messages

2004-05-24 Thread Dave Watts
> I hope they fix the structure error with cfcatch variable 
> that I reported about a year ago in the Blackstone, you 
> cannot pass the cfcatch structure (for it is a structure) as 
> a type = struct to a function, it has to be type = any. I 
> think it had other problems with its structure identity as 
> well.

Out of curiosity, what happens if you Duplicate it before passing it? In my
experience, this has often been a useful workaround for things like this.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Using CFCATCH to display default error messages

2004-05-24 Thread Stan Winchester
Error on Line #CFCATCH.TAGCONTEXT[1]["LINE"]# is exactly what I was looking for. Thank YOU!

I had previously used the following (without the "IsDefined('CFCATCH.TAGCONTEXT')"), and found in certain situations CFCATCH.TAGCONTEXT was not defined and threw errors. I'm now going to use the CFCATCH.TAGCONTEXT array, but with IsDefined as shown:

    
    
to = #ArrayLen(CFCATCH.TAGCONTEXT)#>

#i# #sCurrent["ID"]# 
(LINE:#sCurrent["LINE"]#,#sCurrent["COLUMN"]#) 
#sCurrent["TEMPLATE"]#
    
    

I tried , and it returned the following:

object of coldfusion.runtime.UndefinedElementException

 
Methods getMessage (returns java.lang.String)
getResolvedname (returns java.lang.String)
getErrNumber (returns int)
getLocalizedMessage (returns java.lang.String)
getType (returns java.lang.String)
getString (returns java.lang.String)
getRootCause (returns java.lang.Throwable)
setLocale (returns void)
findThrowableTarget (returns int)
findAdvancedCFTarget (returns int)
findCustomTarget (returns int)
unwrap (returns java.lang.Throwable)
getDetail (returns java.lang.String)
printStackTrace (returns void)
printStackTrace (returns void)
printStackTrace (returns void)
fillInStackTrace (returns java.lang.Throwable)
toString (returns java.lang.String)
initCause (returns java.lang.Throwable)
getCause (returns java.lang.Throwable)
getStackTrace (returns [Ljava.lang.StackTraceElement;)
setStackTrace (returns void)
hashCode (returns int)
getClass (returns java.lang.Class)
wait (returns void)
wait (returns void)
wait (returns void)
equals (returns boolean)
notify (returns void)
notifyAll (returns void)

 
objectType class java.lang.Class  
container class java.lang.Object  
element DN  

Maybe I'm missing something, but I don't see the value of the above dump. Is some documentation somewhere to let me know what it all means?

Thank you,
Stan Winchester
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Using CFCATCH to display default error messages

2004-05-23 Thread Tom Kitta
I hope they fix the structure error with cfcatch variable that I reported
about a year ago in the Blackstone, you cannot pass the cfcatch structure
(for it is a structure) as a type = struct to a function, it has to be type
= any. I think it had other problems with its structure identity as well.

TK
http://www.tomkitta.com
  -Original Message-
  From: Matt Robertson [mailto:[EMAIL PROTECTED]
  Sent: Sunday, May 23, 2004 10:04 AM
  To: CF-Talk
  Subject: RE: Using CFCATCH to display default error messages

  Stan Winchester wrote:
  >I need to know what template is throwing the error and what line number

  If you want *just* the line number of the final error you can use
  "Error on Line #CFCATCH.TAGCONTEXT[1]["LINE"]#", and
  cgi.path_translated will give you the path/template that the error
  occurred on.

  As was mentioned in an earlier post, the most comprehensive thing to do
  is just cfdump out the cfcatch scope (or cfdump out the variables scope,
  which includes cfcatch and any queries you may have run; see below).  In
  CF6+ at least, this will give you a very nice trail of nested templates;
  i.e. foo.cfm on Line 100 called bar.cfm, which called woo.cfm on line 20
  and Line 19 threw an error.  It doesn't say that explicitly, but you'll
  be able to figure it out by looking at the contents of the struct.

  And of course you can dump out other scopes for a very comprehensive
  snapshot of whats what when the error occurred. A lot of data, so if you
  have a 1k-recordcount query on the current page and you dumped the
  variables scope that would be a mighty big email.

  
  Matt Robertson   [EMAIL PROTECTED]
  MSB Designs, Inc.  http://mysecretbase.com
  
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Using CFCATCH to display default error messages

2004-05-23 Thread Andy Ousterhout
Are the output statements within a catch any block?
  -Original Message-
  From: Stan Winchester [mailto:[EMAIL PROTECTED]
  Sent: Saturday, May 22, 2004 11:46 PM
  To: CF-Talk
  Subject: Re: Using CFCATCH to display default error messages

  I've read the documentation, and when I use the following:

  type: #cfcatch.type#
  message: #cfcatch.message#
  detail: #cfcatch.detail# 
  extended info: #cfcatch.extendedinfo#
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Using CFCATCH to display default error messages

2004-05-23 Thread Matt Robertson
Stan Winchester wrote:
>I need to know what template is throwing the error and what line number

If you want *just* the line number of the final error you can use
"Error on Line #CFCATCH.TAGCONTEXT[1]["LINE"]#", and
cgi.path_translated will give you the path/template that the error
occurred on.

As was mentioned in an earlier post, the most comprehensive thing to do
is just cfdump out the cfcatch scope (or cfdump out the variables scope,
which includes cfcatch and any queries you may have run; see below).  In
CF6+ at least, this will give you a very nice trail of nested templates;
i.e. foo.cfm on Line 100 called bar.cfm, which called woo.cfm on line 20
and Line 19 threw an error.  It doesn't say that explicitly, but you'll
be able to figure it out by looking at the contents of the struct.

And of course you can dump out other scopes for a very comprehensive
snapshot of whats what when the error occurred. A lot of data, so if you
have a 1k-recordcount query on the current page and you dumped the
variables scope that would be a mighty big email.


 Matt Robertson   [EMAIL PROTECTED] 
 MSB Designs, Inc.  http://mysecretbase.com

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Using CFCATCH to display default error messages

2004-05-23 Thread Simon Riley
Stan Winchester wrote:

Have you tried using ?

>
>I've read the documentation, and when I use the following:
>
>type: #cfcatch.type#
>message: #cfcatch.message#
>detail: #cfcatch.detail# 
>extended info: #cfcatch.extendedinfo#
>
>It returns the following error message which is not very discriptive:
>
>type: _expression_
>message: Element DSN is undefined in ATTRIBUTES.
>detail: 
>extended info: 
>
>I need to know what template is throwing the error and what line number 
like in the default cf error messages. When there are nested templates it 
can be difficult to know where the error originated, but in the following 
example I know exactly what caused 
>the error:
>
[snip]

Simon Riley
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Using CFCATCH to display default error messages

2004-05-22 Thread Stan Winchester
I've read the documentation, and when I use the following:

type: #cfcatch.type#
message: #cfcatch.message#
detail: #cfcatch.detail# 
extended info: #cfcatch.extendedinfo#

It returns the following error message which is not very discriptive:

type: _expression_
message: Element DSN is undefined in ATTRIBUTES.
detail: 
extended info: 

I need to know what template is throwing the error and what line number like in the default cf error messages. When there are nested templates it can be difficult to know where the error originated, but in the following example I know exactly what caused the error:

Error Occurred While Processing Request  
Element DSN is undefined in ATTRIBUTES.  
The error occurred in F:\WebSites\Test\TableCorners\columnwrap.cfm: line 3
1 : 
2 : 
3 : 
4 :   SELET  
5 : #attributes.fieldnames#

The above error was generate from the same page as my 1st example except I commented the "any" cfcatch block.

I want to be able to email error messages with the same detail as in the default error messages.

>> From: Stan Winchester
>> 
>> Is there a way to get CFCATCH to display the default CFMX 
>> errors? Specifically I want to know the template name and 
>> line number where the error occurred, so I can have them 
>> emailed to me.
>
>http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a10.htm
>
>Gotta love the documentation
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Using CFCATCH to display default error messages

2004-05-22 Thread Philip Arnold
> From: Stan Winchester
> 
> Is there a way to get CFCATCH to display the default CFMX 
> errors? Specifically I want to know the template name and 
> line number where the error occurred, so I can have them 
> emailed to me.

http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a10.htm

Gotta love the documentation
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Using CFCATCH to display default error messages

2004-05-22 Thread Paul Vernon
There are lots of cfcatch vars in the cfcatch structure but these are
probably the ones that will interest you most

 
cfcatch.message

 
cfcatch.detail

 
cfcatch.extendedinfo

 
Paul
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Using CFCATCH to display default error messages

2004-05-22 Thread Stan Winchester
Is there a way to get CFCATCH to display the default CFMX errors?
Specifically I want to know the template name and line number where the
error occurred, so I can have them emailed to me.

Thank you,

Stan Winchester
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Database error messages

2004-05-05 Thread Barney Boisvert
[repost from yesterday, with download link]

As you know, the CF error message for database errors displays the SQL
statement that caused the error, the datasource, and error cods.  However,
it DOESN'T display the values of stuff passed through CFQUERYPARAM.  The
information is there (as is evidenced by the debugging output), but it's
just not used.

I rectified that problem with the modified error templates included in the
attached archive.  All values passed through CFQUERYPARAM are now listed
after the SQL statement itself, in the same format as on the debugging
output.  In addition, the SQL statement is PRE formatted so it appears as in
the code, rather than all on one line with wrapping.

http://www.barneyb.com/go/cf_exception

Installation is simple, just extract the archive into your
/WEB-INF/exception directory, and overwrite the two files it prompts.  Four
additional UDFs are installed as well.

The code is public domain, so do whatever you want with it.  If any of the
MM guys are listening, I'd love to see this or something equivalent in
Blackstone.  ;)

Cheers,
barneyb

> -Original Message-
> From: Tom Kitta [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, May 04, 2004 5:35 PM
> To: CF-Talk
> Subject: RE: Database error messages
> 
> Hey Barney can you put them on a web server and give us the 
> URL? This will
> save you on all the sending stuff.
> 
> TK
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Database error messages

2004-05-05 Thread Mark A. Kruger - CFG
Barney,

I'd love that error handling code.  I'll give you a plug on my blog.

-mark

  -Original Message-
  From: Barney Boisvert [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, May 04, 2004 5:48 PM
  To: CF-Talk
  Subject: RE: Database error messages

  Whoops, no attachements on cf-talk.  That must be cfczone that lets them
  through.  I can't post it online right now, but if anyone's interested,
  email me off list, and I'll shoot you the archive.

  Cheers,
  barneyb 

  > -Original Message-
  > From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
  > Sent: Tuesday, May 04, 2004 3:39 PM
  > To: CF-Talk
  > Subject: Database error messages
  > 
  > As you know, the CF error message for database errors displays the SQL
  > statement that caused the error, the datasource, and error 
  > cods.  However,
  > it DOESN'T display the values of stuff passed through 
  > CFQUERYPARAM.  The
  > information is there (as is evidenced by the debugging 
  > output), but it's
  > just not used.
  > 
  > I rectified that problem with the modified error templates 
  > included in the
  > attached archive.  All values passed through CFQUERYPARAM are 
  > now listed
  > after the SQL statement itself, in the same format as on the debugging
  > output.  In addition, the SQL statement is PRE formatted so 
  > it appears as in
  > the code, rather than all on one line, with wrapping.
  > 
  > Installation is simple, just extract the archive into your
  > /WEB-INF/exception directory, and overwrite the two files it 
  > prompts.  Four
  > additional UDFs are installed as well.
  > 
  > The code is public domain, so do whatever you want with it.  
  > If any of the
  > MM guys are listening, I'd love to see this or something equivalent in
  > Blackstone.  ;)
  > 
  > Cheers,
  > barneyb
  > 
  > ---
  > Barney Boisvert, Senior Development Engineer
  > AudienceCentral
  > [EMAIL PROTECTED]
  > voice : 360.756.8080 x32
  > fax   : 360.647.5351
  > cell  : 360.319.6145
  > 
  > www.audiencecentral.com
  > 
  > 
  >
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Database error messages

2004-05-04 Thread Barney Boisvert
That's the plan, but I can't do it right now for various reasons.  Hopefully
I can post it tonight sometime.  When I do, I'll send the URL to the list.

Cheers,
barneyb

> -Original Message-
> From: Tom Kitta [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, May 04, 2004 5:35 PM
> To: CF-Talk
> Subject: RE: Database error messages
> 
> Hey Barney can you put them on a web server and give us the 
> URL? This will
> save you on all the sending stuff.
> 
> TK
>   -Original Message-
>   From: Barney Boisvert [mailto:[EMAIL PROTECTED]
>   Sent: Tuesday, May 04, 2004 6:48 PM
>   To: CF-Talk
>   Subject: RE: Database error messages
> 
> 
>   Whoops, no attachements on cf-talk.  That must be cfczone 
> that lets them
>   through.  I can't post it online right now, but if anyone's 
> interested,
>   email me off list, and I'll shoot you the archive.
> 
>   Cheers,
>   barneyb
> 
>   > -Original Message-
>   > From: Barney Boisvert [mailto:[EMAIL PROTECTED]
>   > Sent: Tuesday, May 04, 2004 3:39 PM
>   > To: CF-Talk
>   > Subject: Database error messages
>   >
>   > As you know, the CF error message for database errors 
> displays the SQL
>   > statement that caused the error, the datasource, and error
>   > cods.  However,
>   > it DOESN'T display the values of stuff passed through
>   > CFQUERYPARAM.  The
>   > information is there (as is evidenced by the debugging
>   > output), but it's
>   > just not used.
>   >
>   > I rectified that problem with the modified error templates
>   > included in the
>   > attached archive.  All values passed through CFQUERYPARAM are
>   > now listed
>   > after the SQL statement itself, in the same format as on 
> the debugging
>   > output.  In addition, the SQL statement is PRE formatted so
>   > it appears as in
>   > the code, rather than all on one line, with wrapping.
>   >
>   > Installation is simple, just extract the archive into your
>   > /WEB-INF/exception directory, and overwrite the two files it
>   > prompts.  Four
>   > additional UDFs are installed as well.
>   >
>   > The code is public domain, so do whatever you want with it.
>   > If any of the
>   > MM guys are listening, I'd love to see this or something 
> equivalent in
>   > Blackstone.  ;)
>   >
>   > Cheers,
>   > barneyb
>   >
>   > ---
>   > Barney Boisvert, Senior Development Engineer
>   > AudienceCentral
>   > [EMAIL PROTECTED]
>   > voice : 360.756.8080 x32
>   > fax   : 360.647.5351
>   > cell  : 360.319.6145
>   >
>   > www.audiencecentral.com
>   >
>   >
>   >
> 
> 
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Database error messages

2004-05-04 Thread Tom Kitta
Hey Barney can you put them on a web server and give us the URL? This will
save you on all the sending stuff.

TK
  -Original Message-
  From: Barney Boisvert [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, May 04, 2004 6:48 PM
  To: CF-Talk
  Subject: RE: Database error messages

  Whoops, no attachements on cf-talk.  That must be cfczone that lets them
  through.  I can't post it online right now, but if anyone's interested,
  email me off list, and I'll shoot you the archive.

  Cheers,
  barneyb

  > -Original Message-
  > From: Barney Boisvert [mailto:[EMAIL PROTECTED]
  > Sent: Tuesday, May 04, 2004 3:39 PM
  > To: CF-Talk
  > Subject: Database error messages
  >
  > As you know, the CF error message for database errors displays the SQL
  > statement that caused the error, the datasource, and error
  > cods.  However,
  > it DOESN'T display the values of stuff passed through
  > CFQUERYPARAM.  The
  > information is there (as is evidenced by the debugging
  > output), but it's
  > just not used.
  >
  > I rectified that problem with the modified error templates
  > included in the
  > attached archive.  All values passed through CFQUERYPARAM are
  > now listed
  > after the SQL statement itself, in the same format as on the debugging
  > output.  In addition, the SQL statement is PRE formatted so
  > it appears as in
  > the code, rather than all on one line, with wrapping.
  >
  > Installation is simple, just extract the archive into your
  > /WEB-INF/exception directory, and overwrite the two files it
  > prompts.  Four
  > additional UDFs are installed as well.
  >
  > The code is public domain, so do whatever you want with it.
  > If any of the
  > MM guys are listening, I'd love to see this or something equivalent in
  > Blackstone.  ;)
  >
  > Cheers,
  > barneyb
  >
  > ---
  > Barney Boisvert, Senior Development Engineer
  > AudienceCentral
  > [EMAIL PROTECTED]
  > voice : 360.756.8080 x32
  > fax   : 360.647.5351
  > cell  : 360.319.6145
  >
  > www.audiencecentral.com
  >
  >
  >
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Database error messages

2004-05-04 Thread Dick Applebaum
Pls send me a copy

thx

Dick

On May 4, 2004, at 3:47 PM, Barney Boisvert wrote:

> Whoops, no attachements on cf-talk.  That must be cfczone that lets 
> them
>  through.  I can't post it online right now, but if anyone's 
> interested,
>  email me off list, and I'll shoot you the archive.
>
>  Cheers,
>  barneyb
>
>  > -Original Message-
>  > From: Barney Boisvert [mailto:[EMAIL PROTECTED]
>  > Sent: Tuesday, May 04, 2004 3:39 PM
>  > To: CF-Talk
>  > Subject: Database error messages
>  >
>  > As you know, the CF error message for database errors displays the 
> SQL
>  > statement that caused the error, the datasource, and error
>  > cods.  However,
>  > it DOESN'T display the values of stuff passed through
>  > CFQUERYPARAM.  The
>  > information is there (as is evidenced by the debugging
>  > output), but it's
>  > just not used.
>  >
>  > I rectified that problem with the modified error templates
>  > included in the
>  > attached archive.  All values passed through CFQUERYPARAM are
>  > now listed
>  > after the SQL statement itself, in the same format as on the 
> debugging
>  > output.  In addition, the SQL statement is PRE formatted so
>  > it appears as in
>  > the code, rather than all on one line, with wrapping.
>  >
>  > Installation is simple, just extract the archive into your
>  > /WEB-INF/exception directory, and overwrite the two files it
>  > prompts.  Four
>  > additional UDFs are installed as well.
>  >
>  > The code is public domain, so do whatever you want with it.  
>  > If any of the
>  > MM guys are listening, I'd love to see this or something equivalent 
> in
>  > Blackstone.  ;)
>  >
>  > Cheers,
>  > barneyb
>  >
>  > ---
>  > Barney Boisvert, Senior Development Engineer
>  > AudienceCentral
>  > [EMAIL PROTECTED]
>  > voice : 360.756.8080 x32
>  > fax   : 360.647.5351
>  > cell  : 360.319.6145
>  >
>  > www.audiencecentral.com
>  >
>  >
>  >
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Database error messages

2004-05-04 Thread Barney Boisvert
Whoops, no attachements on cf-talk.  That must be cfczone that lets them
through.  I can't post it online right now, but if anyone's interested,
email me off list, and I'll shoot you the archive.

Cheers,
barneyb 

> -Original Message-
> From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, May 04, 2004 3:39 PM
> To: CF-Talk
> Subject: Database error messages
> 
> As you know, the CF error message for database errors displays the SQL
> statement that caused the error, the datasource, and error 
> cods.  However,
> it DOESN'T display the values of stuff passed through 
> CFQUERYPARAM.  The
> information is there (as is evidenced by the debugging 
> output), but it's
> just not used.
> 
> I rectified that problem with the modified error templates 
> included in the
> attached archive.  All values passed through CFQUERYPARAM are 
> now listed
> after the SQL statement itself, in the same format as on the debugging
> output.  In addition, the SQL statement is PRE formatted so 
> it appears as in
> the code, rather than all on one line, with wrapping.
> 
> Installation is simple, just extract the archive into your
> /WEB-INF/exception directory, and overwrite the two files it 
> prompts.  Four
> additional UDFs are installed as well.
> 
> The code is public domain, so do whatever you want with it.  
> If any of the
> MM guys are listening, I'd love to see this or something equivalent in
> Blackstone.  ;)
> 
> Cheers,
> barneyb
> 
> ---
> Barney Boisvert, Senior Development Engineer
> AudienceCentral
> [EMAIL PROTECTED]
> voice : 360.756.8080 x32
> fax   : 360.647.5351
> cell  : 360.319.6145
> 
> www.audiencecentral.com
> 
> 
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Database error messages

2004-05-04 Thread Barney Boisvert
As you know, the CF error message for database errors displays the SQL
statement that caused the error, the datasource, and error cods.  However,
it DOESN'T display the values of stuff passed through CFQUERYPARAM.  The
information is there (as is evidenced by the debugging output), but it's
just not used.

I rectified that problem with the modified error templates included in the
attached archive.  All values passed through CFQUERYPARAM are now listed
after the SQL statement itself, in the same format as on the debugging
output.  In addition, the SQL statement is PRE formatted so it appears as in
the code, rather than all on one line, with wrapping.

Installation is simple, just extract the archive into your
/WEB-INF/exception directory, and overwrite the two files it prompts.  Four
additional UDFs are installed as well.

The code is public domain, so do whatever you want with it.  If any of the
MM guys are listening, I'd love to see this or something equivalent in
Blackstone.  ;)

Cheers,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral
[EMAIL PROTECTED]
voice : 360.756.8080 x32
fax   : 360.647.5351
cell  : 360.319.6145

www.audiencecentral.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CF error messages

2003-06-09 Thread Barney Boisvert
In the standard CF error message, excluding encrypted templates, has anyone
ever seen this before?


ColdFusion cannot determine the line of the template that caused this error.
This is often caused by an error in the exception handling subsystem.


I've been getting it consistently in various places, and after a closer
look, it seems to be at least partially caused by having a dash in any
folder name containing the template in question.  It doesn't always happen
when there's a dash, but it never happens when there isn't a dash.

Just wondering if anyone else had seen such behaviour.  I'm running on
Linux, with Apache 2, and CFMX Updater 3.

cheers,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral (formerly PIER System, Inc.)
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.488 / Virus Database: 287 - Release Date: 6/5/2003

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



error messages not showing up

2002-12-17 Thread Tim Do
Hello,

I've been getting some errors lately with no error message, the debug
queries shows up but not the error message. Any ideas?

TIA
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Save the logs was RE: error messages sent to log

2002-06-25 Thread Cornillon, Matthieu

Mike,

That is more or less exactly what I want to do, but your message doesn't
exactly address the thrust of my question.  The folks on the IT end, who
have exclusive access to/control over CF Administrator, want only Error,
Warning, and Fatal messages to come through, and are asking that no
Information type messages come through.  My plan is indeed to have an error
handler to capture all unexpected errors, send the user to a "bland error
template", and have the details of the error e-mailed to me or saved to a
text file or database.  Hopefully, this will limit messages of type Error,
Warning, and Fatal.  Still, my question remains: what would I have to do on
the code end to generate an Information type error message on the log end?
(I ask so that I may know precisely what I must avoid doing.)

(By the way, I didn't find your message destructive at all.  It is in fact
our IT department's desire to maintain the logs' state of cleanliness that
generates my need for a solution.)

Thanks,
Matthieu

-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 25, 2002 1:54 PM
To: CF-Talk
Subject: Save the logs was RE: error messages sent to log


I have one comment and I hope this is not seen as destructive it is not
meant to.  Firstly the log information is vital to any application and to be
even more focused there should not be any information in the Application log
as this is 100% error information. I hope no-one takes this the wrong way it
is not meant to be elitist or anything like that, just genuine and truthful
but I know I'll probably get flamed.  What happens in place after place I
have helped is that the CF Logs become like an uninvited guest, annoying and
whenever possible ignored.  I always chant the same mantra, check those
logs, fix the errors and clear them at least daily.

Mathhieu, if possible that is the path I would pursue just keep the logs
empty and if your security people are concerned about error messages sent to
user browsers and you have not already done so, create a bland error
template that displays no error information to users.  CF has some great
error handling capabilities.

Hth...!

Kind Regards - Mike Brunt, CTO
Webapper
http://www.webapper.com
Downey CA Office
562.243.6255
AIM - webappermb

"Webapper - Making the NET work"


-Original Message-
From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 25, 2002 9:18 AM
To: CF-Talk
Subject: error messages sent to log


Hello, everyone.  I have been told by the IT folks in my company who control
the CF environment that I need to keep all Information type error messages
from being written to application.log, server.log, and webserver.log files.
(Error messages of type Error, Warning, and Fatal are okay.)  Can anyone out
there tell me what I would need to do to keep such error messages from being
logged?  It seems to me that I would have to actively choose to send such
messages to the log, but I don't even know how to do that.

Any rays of light aimed on this (for me) shady spot would be greatly
appreciated.

Matthieu


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Save the logs was RE: error messages sent to log

2002-06-25 Thread Mike Brunt

I have one comment and I hope this is not seen as destructive it is not
meant to.  Firstly the log information is vital to any application and to be
even more focused there should not be any information in the Application log
as this is 100% error information. I hope no-one takes this the wrong way it
is not meant to be elitist or anything like that, just genuine and truthful
but I know I'll probably get flamed.  What happens in place after place I
have helped is that the CF Logs become like an uninvited guest, annoying and
whenever possible ignored.  I always chant the same mantra, check those
logs, fix the errors and clear them at least daily.

Mathhieu, if possible that is the path I would pursue just keep the logs
empty and if your security people are concerned about error messages sent to
user browsers and you have not already done so, create a bland error
template that displays no error information to users.  CF has some great
error handling capabilities.

Hth...!

Kind Regards - Mike Brunt, CTO
Webapper
http://www.webapper.com
Downey CA Office
562.243.6255
AIM - webappermb

"Webapper - Making the NET work"


-Original Message-
From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 25, 2002 9:18 AM
To: CF-Talk
Subject: error messages sent to log


Hello, everyone.  I have been told by the IT folks in my company who control
the CF environment that I need to keep all Information type error messages
from being written to application.log, server.log, and webserver.log files.
(Error messages of type Error, Warning, and Fatal are okay.)  Can anyone out
there tell me what I would need to do to keep such error messages from being
logged?  It seems to me that I would have to actively choose to send such
messages to the log, but I don't even know how to do that.

Any rays of light aimed on this (for me) shady spot would be greatly
appreciated.

Matthieu

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



error messages sent to log

2002-06-25 Thread Cornillon, Matthieu

Hello, everyone.  I have been told by the IT folks in my company who control
the CF environment that I need to keep all Information type error messages
from being written to application.log, server.log, and webserver.log files.
(Error messages of type Error, Warning, and Fatal are okay.)  Can anyone out
there tell me what I would need to do to keep such error messages from being
logged?  It seems to me that I would have to actively choose to send such
messages to the log, but I don't even know how to do that.
 
Any rays of light aimed on this (for me) shady spot would be greatly
appreciated.
 
Matthieu
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Weird Error Messages - CFMLInterpreterImp::writeEmergencyMessage

2002-03-22 Thread Chris Montgomery

Howdy,

I have recently started getting a weird error message that I haven't seen
before:

   "Error Information:

   Diagnostic error message: unknown exception condition
CFMLInterpreterImp::writeEmergencyMessage 

   Error occurred at 03/22/02 11:09:25

   Template trying to process: [path info deleted]\software\mm.cfm?

   Accessing the page from:
http://www.astutia.com/software/pricelist.cfm?MfrID=4

   Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90)

   User's IP address: 24.163.30.46"

Has anyone seen this before (CFMLInterpreterImp::writeEmergencyMessage)? Any
idea what causes it? I can't figure out why a question mark is getting added
to the template page that is trying to be processed
(http://www.astutia.com/software/mm.cfm?). Also, I am unable to find any
information about the IP address. Could this be a spider?

TIA,

Chris Montgomery [EMAIL PROTECTED]

Web Development & Consulting, Software Sales
http://www.astutia.com
Macromedia Sales & Consulting Partner
210-490-3249/888-745-7603Fax 210-490-3249

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What's the best way to deal with inexplicable error messages?

2001-05-06 Thread David Shadovitz

Let me add to the excellent advice already given:

* Show the code to another programmer (aka "peer review")

* Read a good book on general programming practices, including debugging.

One such book is The Practice of Programming by Kernighan & Pike.  Here are 
some section titles from chapter 5, "Debugging":

Examine the most recent change
Don't make the same mistake twice
Debug it now, not later
Get a stack trace
Read before typing
Explain your code to someone else
Make the bug reproducible
Divide and conquer
Study the numerology of failures
Display output to localize your search
Write self-checking code
Write a log file
Draw a picture
Use tools
Keep records

Two other books of this type are:

Writing Solid Code by Steve Maguire
Code Complete by Steve McConnell

-David

On Friday, May 04, 2001 1:56 PM, Hubert Earl [SMTP:[EMAIL PROTECTED]] 
wrote:
> Hi,
>
> What's the best way to deal with inexplicable error messages?  Is it:
> a.  to slog away at the problem until the solution is found?
> b.  to do something else, then come back after a while?
> c.  to redo the code from scratch?
>
> I'd appreciate words of wisdom from cooler, more experienced heads, since
> there *must* be a way to avoid the enormous frustration I often feel while
> coding! :-)

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What's the best way to deal with inexplicable error messages?

2001-05-05 Thread Bill Davidson

Glad I could ?help?.

-Bill
www.brainbox.tv
- Original Message -
From: "Hubert Earl" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, May 04, 2001 10:30 PM
Subject: Re: What's the best way to deal with inexplicable error messages?


> Hi,
>
> Thanks for the feedback.  Having just solved a problem largely due to my
> taking some time away from it, I'm seeing the value of the recommendation
> you made in the first paragraph of your email below.  I discovered that
the
> problem wasn't at all the kind I'd been thinking it was, and taking 'time
> out' allowed me to get a better perspective on it.
>
> Hubert
> ---
> Hubert Earl
>
> ICQ#: 16199853
> AIM: hubertfme
>
> My Jamaican Art, Craft & More Online Store:
> http://www.angelfire.com/ny/hearl/link_page_on_angelfire.html
>
>
> - Original Message -
> From: "Bill Davidson" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, May 04, 2001 6:48 PM
> Subject: Re: What's the best way to deal with inexplicable error messages?
>
>
> > From someone who has written code the majority of my life (usually for
> > pleasure more than anything), the best thing to do is take some time
away
> > from the problem.  Not a lot, just enough so you're not seeing red.  If
> you
> > are frustrated, you're not going to be productive.  Go back later, and
> > document your code as best as you can.  Document every friggin' line if
> you
> > have to.  See if your algorithms & methodologies make sense.
> >
> > Then start debugging.  I have never REALLY been able to get debugging
> going
> > in CF Studio.   That's one thing I'd love to rectify...
> >
> > Comment out sections of your code until you get a page that works. You
may
> > have to substitute the commented out code with strict setting of values
to
> > replace logic that otherwise exists.  Start isolating the problems, and
> you
> > can always add your own debugging code, like variable testing, and
> > CFOUTPUTing your values as you go.
> >
> > This is also where a methodology like OOD (in other languages) or
Fusebox
> > (in Fusebox) helps a lot - you can isolate problems pretty quickly.  My
> > fusebox code is so segmented that I can quickly see where the error is
> > occurring.  It helps to have debug output on.
> >
> > Also, error messages/crashes in debug mode in compiled languages/etc
> should
> > be the easiest kind to fix as it tells you exactly where in the code
> things
> > are blowing up.  Logic bugs are the hardest to deal with.  They're a
tiny
> > bit of the reason I can't quit smoking. ;)
> >
> > -Bill
> > brainbox
> >
> > - Original Message -
> > From: "Hubert Earl" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Friday, May 04, 2001 4:56 PM
> > Subject: What's the best way to deal with inexplicable error messages?
> >
> >
> > > Hi,
> > >
> > > What's the best way to deal with inexplicable error messages?  Is it:
> > > a.  to slog away at the problem until the solution is found?
> > > b.  to do something else, then come back after a while?
> > > c.  to redo the code from scratch?
> > >
> > > I'd appreciate words of wisdom from cooler, more experienced heads,
> since
> > there *must* be a way to avoid the enormous frustration I often feel
while
> > coding! :-)
> > >
> > > Hubert
> > > ---
> > > Hubert Earl
> > >
> > > ICQ#: 16199853
> > > AIM: hubertfme
> > >
> > > My Jamaican Art, Craft & More Online Store:
> > http://www.angelfire.com/ny/hearl/link_page_on_angelfire.html
> > >
> > >
> > >
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What's the best way to deal with inexplicable error messages?

2001-05-04 Thread Hubert Earl

Hi,

Thanks for the feedback.  Having just solved a problem largely due to my
taking some time away from it, I'm seeing the value of the recommendation
you made in the first paragraph of your email below.  I discovered that the
problem wasn't at all the kind I'd been thinking it was, and taking 'time
out' allowed me to get a better perspective on it.

Hubert
---
Hubert Earl

ICQ#: 16199853
AIM: hubertfme

My Jamaican Art, Craft & More Online Store:
http://www.angelfire.com/ny/hearl/link_page_on_angelfire.html


- Original Message -
From: "Bill Davidson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, May 04, 2001 6:48 PM
Subject: Re: What's the best way to deal with inexplicable error messages?


> From someone who has written code the majority of my life (usually for
> pleasure more than anything), the best thing to do is take some time away
> from the problem.  Not a lot, just enough so you're not seeing red.  If
you
> are frustrated, you're not going to be productive.  Go back later, and
> document your code as best as you can.  Document every friggin' line if
you
> have to.  See if your algorithms & methodologies make sense.
>
> Then start debugging.  I have never REALLY been able to get debugging
going
> in CF Studio.   That's one thing I'd love to rectify...
>
> Comment out sections of your code until you get a page that works. You may
> have to substitute the commented out code with strict setting of values to
> replace logic that otherwise exists.  Start isolating the problems, and
you
> can always add your own debugging code, like variable testing, and
> CFOUTPUTing your values as you go.
>
> This is also where a methodology like OOD (in other languages) or Fusebox
> (in Fusebox) helps a lot - you can isolate problems pretty quickly.  My
> fusebox code is so segmented that I can quickly see where the error is
> occurring.  It helps to have debug output on.
>
> Also, error messages/crashes in debug mode in compiled languages/etc
should
> be the easiest kind to fix as it tells you exactly where in the code
things
> are blowing up.  Logic bugs are the hardest to deal with.  They're a tiny
> bit of the reason I can't quit smoking. ;)
>
> -Bill
> brainbox
>
> - Original Message -
> From: "Hubert Earl" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, May 04, 2001 4:56 PM
> Subject: What's the best way to deal with inexplicable error messages?
>
>
> > Hi,
> >
> > What's the best way to deal with inexplicable error messages?  Is it:
> > a.  to slog away at the problem until the solution is found?
> > b.  to do something else, then come back after a while?
> > c.  to redo the code from scratch?
> >
> > I'd appreciate words of wisdom from cooler, more experienced heads,
since
> there *must* be a way to avoid the enormous frustration I often feel while
> coding! :-)
> >
> > Hubert
> > ---
> > Hubert Earl
> >
> > ICQ#: 16199853
> > AIM: hubertfme
> >
> > My Jamaican Art, Craft & More Online Store:
> http://www.angelfire.com/ny/hearl/link_page_on_angelfire.html
> >
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What's the best way to deal with inexplicable error messages?

2001-05-04 Thread Bill Davidson

>From someone who has written code the majority of my life (usually for
pleasure more than anything), the best thing to do is take some time away
from the problem.  Not a lot, just enough so you're not seeing red.  If you
are frustrated, you're not going to be productive.  Go back later, and
document your code as best as you can.  Document every friggin' line if you
have to.  See if your algorithms & methodologies make sense.

Then start debugging.  I have never REALLY been able to get debugging going
in CF Studio.   That's one thing I'd love to rectify...

Comment out sections of your code until you get a page that works. You may
have to substitute the commented out code with strict setting of values to
replace logic that otherwise exists.  Start isolating the problems, and you
can always add your own debugging code, like variable testing, and
CFOUTPUTing your values as you go.

This is also where a methodology like OOD (in other languages) or Fusebox
(in Fusebox) helps a lot - you can isolate problems pretty quickly.  My
fusebox code is so segmented that I can quickly see where the error is
occurring.  It helps to have debug output on.

Also, error messages/crashes in debug mode in compiled languages/etc should
be the easiest kind to fix as it tells you exactly where in the code things
are blowing up.  Logic bugs are the hardest to deal with.  They're a tiny
bit of the reason I can't quit smoking. ;)

-Bill
brainbox

- Original Message -
From: "Hubert Earl" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, May 04, 2001 4:56 PM
Subject: What's the best way to deal with inexplicable error messages?


> Hi,
>
> What's the best way to deal with inexplicable error messages?  Is it:
> a.  to slog away at the problem until the solution is found?
> b.  to do something else, then come back after a while?
> c.  to redo the code from scratch?
>
> I'd appreciate words of wisdom from cooler, more experienced heads, since
there *must* be a way to avoid the enormous frustration I often feel while
coding! :-)
>
> Hubert
> ---
> Hubert Earl
>
> ICQ#: 16199853
> AIM: hubertfme
>
> My Jamaican Art, Craft & More Online Store:
http://www.angelfire.com/ny/hearl/link_page_on_angelfire.html
>
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What's the best way to deal with inexplicable error messages?

2001-05-04 Thread Jon Hall

I choose A, which usually ends up leading to C which then ends up with me
doing B. ;-)

jon
- Original Message -
From: "Hubert Earl" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, May 04, 2001 4:56 PM
Subject: What's the best way to deal with inexplicable error messages?


> Hi,
>
> What's the best way to deal with inexplicable error messages?  Is it:
> a.  to slog away at the problem until the solution is found?
> b.  to do something else, then come back after a while?
> c.  to redo the code from scratch?
>
> I'd appreciate words of wisdom from cooler, more experienced heads, since
there *must* be a way to avoid the enormous frustration I often feel while
coding! :-)
>
> Hubert
> ---
> Hubert Earl
>
> ICQ#: 16199853
> AIM: hubertfme
>
> My Jamaican Art, Craft & More Online Store:
http://www.angelfire.com/ny/hearl/link_page_on_angelfire.html
>
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >