RE: List of Variables.

2003-07-28 Thread DURETTE, STEVEN J (AIT)
See, the problem was that if you did a  to get the
values of the variables in the Variables scope, you would get all of the
queries, objects, etc.  You also get a whole bunch of other stuff that is
generally not needed when doing a debug. 

Notice I said generally, I know there are uses for the information, but when
you are trying to see what certain variables are getting set to you
generally don't need to see all the objects, etc.

Now what we are trying to do is loop through the Variables and if it is a
simple value to display it.  If not then just list the variable name and not
simple.

We do store the larger cfdump into a database, but if we are just trying to
catch something small then we like the "simple" information in the e-mail so
we don't have to go looking for it.  (i.e.  when it
should have been )

Steve


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2003 11:32 AM
To: CF-Talk
Subject: RE: List of Variables.


ugh, cfdump outputs only what you tell it, so not ALL queries are dumped at
once.  You can dump a single scope also.  So,  will
dump the session scoped vars, first level of only, only.  

"Is there a way to list the variables used in a .cfm file?"   <--- which
variables are you speaking of?

Doug

>-Original Message-
>From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED]
>Sent: Monday, July 28, 2003 11:17 AM
>To: CF-Talk
>Subject: RE: List of Variables.
>
>
>When you do a cfdump, it returns all of the contents of all of 
>the queries
>that run.  That can be large for some of our applications.
>
>-Original Message-
>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
>Sent: Monday, July 28, 2003 11:11 AM
>To: CF-Talk
>Subject: Re: List of Variables.
>
>
>12 megs?
>
>ummm, that is a lot of TEXT.
>
>
>- Original Message - 
>From: "DURETTE, STEVEN J (AIT)" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Monday, July 28, 2003 11:07 AM
>Subject: List of Variables.
>
>
>> Is there a way to list the variables used in a .cfm file?
>>
>> What we are trying to do is create a list of the names of 
>the variables
>for
>> our error handling routines.  cfdump is not an option as it 
>can put out
>very
>> large e-mails (our error handling is e-mailed to us) 
>sometimes up to 12
>meg!
>>
>> Any ideas would be appreciated.
>>
>> Thanks
>> Steve
>>
>>
>> 
>
>

~|
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

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

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



RE: List of Variables.

2003-07-28 Thread Douglas.Knudsen
ugh, cfdump outputs only what you tell it, so not ALL queries are dumped at once.  You 
can dump a single scope also.  So,  will dump the session 
scoped vars, first level of only, only.  

"Is there a way to list the variables used in a .cfm file?"   <--- which variables are 
you speaking of?

Doug

>-Original Message-
>From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED]
>Sent: Monday, July 28, 2003 11:17 AM
>To: CF-Talk
>Subject: RE: List of Variables.
>
>
>When you do a cfdump, it returns all of the contents of all of 
>the queries
>that run.  That can be large for some of our applications.
>
>-Original Message-
>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
>Sent: Monday, July 28, 2003 11:11 AM
>To: CF-Talk
>Subject: Re: List of Variables.
>
>
>12 megs?
>
>ummm, that is a lot of TEXT.
>
>
>- Original Message - 
>From: "DURETTE, STEVEN J (AIT)" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Monday, July 28, 2003 11:07 AM
>Subject: List of Variables.
>
>
>> Is there a way to list the variables used in a .cfm file?
>>
>> What we are trying to do is create a list of the names of 
>the variables
>for
>> our error handling routines.  cfdump is not an option as it 
>can put out
>very
>> large e-mails (our error handling is e-mailed to us) 
>sometimes up to 12
>meg!
>>
>> Any ideas would be appreciated.
>>
>> Thanks
>> Steve
>>
>>
>> 
>
>
~|
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

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

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



Re: List of Variables.

2003-07-28 Thread Jim Campbell
What about having the error handler dump the data to separate files, and 
send links to them in an email?  It's possible every single query's data 
isn't necessary for every problem, and based on the error message, the 
developer who's recieving the problem emails could follow the link to 
the relevant dump or variable list.

- Jim

DURETTE, STEVEN J (AIT) wrote:

>When you do a cfdump, it returns all of the contents of all of the queries
>that run.  That can be large for some of our applications.
>
>-Original Message-
>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
>Sent: Monday, July 28, 2003 11:11 AM
>To: CF-Talk
>Subject: Re: List of Variables.
>
>
>12 megs?
>
>ummm, that is a lot of TEXT.
>
>
>- Original Message - 
>From: "DURETTE, STEVEN J (AIT)" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Monday, July 28, 2003 11:07 AM
>Subject: List of Variables.
>
>
>  
>
>>Is there a way to list the variables used in a .cfm file?
>>
>>What we are trying to do is create a list of the names of the variables
>>
>>
>for
>  
>
>>our error handling routines.  cfdump is not an option as it can put out
>>
>>
>very
>  
>
>>large e-mails (our error handling is e-mailed to us) sometimes up to 12
>>
>>
>meg!
>  
>
>>Any ideas would be appreciated.
>>
>>Thanks
>>Steve
>>
>>
>>
>>
>>
>
>
~|
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



RE: List of Variables.

2003-07-28 Thread DURETTE, STEVEN J (AIT)
When you do a cfdump, it returns all of the contents of all of the queries
that run.  That can be large for some of our applications.

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2003 11:11 AM
To: CF-Talk
Subject: Re: List of Variables.


12 megs?

ummm, that is a lot of TEXT.


- Original Message - 
From: "DURETTE, STEVEN J (AIT)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, July 28, 2003 11:07 AM
Subject: List of Variables.


> Is there a way to list the variables used in a .cfm file?
>
> What we are trying to do is create a list of the names of the variables
for
> our error handling routines.  cfdump is not an option as it can put out
very
> large e-mails (our error handling is e-mailed to us) sometimes up to 12
meg!
>
> Any ideas would be appreciated.
>
> Thanks
> Steve
>
>
> 

~|
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

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

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



RE: List of Variables.

2003-07-28 Thread DURETTE, STEVEN J (AIT)
Never mind, figured it out myself.
 

 
Thanks anyway.
 
Steve
 

-Original Message-
From: DURETTE, STEVEN J (AIT) 
Sent: Monday, July 28, 2003 11:07 AM
To: CF-Talk (E-mail)
Subject: List of Variables.


Is there a way to list the variables used in a .cfm file?  
 
What we are trying to do is create a list of the names of the variables for
our error handling routines.  cfdump is not an option as it can put out very
large e-mails (our error handling is e-mailed to us) sometimes up to 12 meg!
 
Any ideas would be appreciated.
 
Thanks
Steve
 


~|
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

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

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



RE: List of Variables.

2003-07-28 Thread Raymond Camden
In MX, you can dump Variables. 
Before MX, you can dump Session, Application, URL, Form.
Client and COokie I _think_ are only dumpable in MX, although you
CAN get them using various functions.
Server - MX only.

Basically, prior to MX, everything but Server and Variables, but you may
have to do some work instead of just 
In MX: Every darn thing in the world.

Oh, shoot, I see cfdump isn't an option. Well, you can just get your
variable names by doing:



but again, that's MX only. 


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] 
> Sent: Monday, July 28, 2003 9:07 AM
> To: CF-Talk
> Subject: List of Variables.
> 
> 
> Is there a way to list the variables used in a .cfm file?  
>  
> What we are trying to do is create a list of the names of the 
> variables for our error handling routines.  cfdump is not an 
> option as it can put out very large e-mails (our error 
> handling is e-mailed to us) sometimes up to 12 meg!
>  
> Any ideas would be appreciated.
>  
> Thanks
> Steve
>  
> 
> 
~|
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

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

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



Re: List of Variables.

2003-07-28 Thread Michael T. Tangorre
12 megs?

ummm, that is a lot of TEXT.


- Original Message - 
From: "DURETTE, STEVEN J (AIT)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, July 28, 2003 11:07 AM
Subject: List of Variables.


> Is there a way to list the variables used in a .cfm file?
>
> What we are trying to do is create a list of the names of the variables
for
> our error handling routines.  cfdump is not an option as it can put out
very
> large e-mails (our error handling is e-mailed to us) sometimes up to 12
meg!
>
> Any ideas would be appreciated.
>
> Thanks
> Steve
>
>
> 
~|
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