Re: Variable Scopes + Dumping cfcatch

2004-07-27 Thread Mike Chabot
I figured out the problem. The hotfix for the duplicate function breaks the dumping of cfcatch. I tried the code on a server that did not have the hotfix, and it worked. I then tried the code on a server with the hotfix, and it failed. I hope I do not run into this problem later when the other

RE: Variable Scopes + Dumping cfcatch

2004-07-27 Thread Tangorre, Michael
I hope I do not run into this problem later when the other scopes that I am dumping contain more complex variables than what my tests cases have. I hope they fix it so one can dump all scopes, including CFCATCH!!! Ugh. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: Variable Scopes + Dumping cfcatch

2004-07-26 Thread S . Isaac Dealey
Strange that you say it produces the unknown type message when you dump cfcatch. I have had instances where with certain types of exceptions, dumping the cfcatch structure shows a java object dump in place of (iirc) the root cause, but I don't recall it failing on the entire structure in recent

Re: Variable Scopes + Dumping cfcatch

2004-07-26 Thread Matt Robertson
This works fine for my CF 6.1 'dumper'. cfif isdefined(GetData) cfdump var=#cfcatch# label=CFCATCH Data /cfif If it exists at all, it should be automatically defined as a structure I would think, no? -- --Matt Robertson-- MSB Designs, Inc. mysecretbase.com [Todays Threads] [This Message]

Re: Variable Scopes + Dumping cfcatch

2004-07-26 Thread Tom Kitta
cfdump returns variable that is not recognized as a structure by a function, use type any. It came out in discussion a while ago, when I have discoverd this bug/future. Also, the arguments and variables scopes seem to be the same thing as far as CF is concerned which to me is another bug/future.

Re: variable scopes

2002-09-10 Thread Joe Eugene
CFDUMP var=#Application# CFDUMP var=#Session# CFDUMP var=#Client# Joe - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 10, 2002 4:14 PM Subject: variable scopes hi there. is there any way (server side, cause I own/maintain

Re: variable scopes

2002-09-10 Thread S . Isaac Dealey
hi there. is there any way (server side, cause I own/maintain the cfmx server) for me to see how many/what values there are in memory -- that are session/client/application variables? There used to be a custom tag in the devex that would do this for CF 5 ... not sure about MX tho...

RE: variable scopes

2002-09-10 Thread Joe Eugene
CFDUMP var=#Application# CFDUMP var=#Session# CFDUMP var=#Client# Joe -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 4:15 PM To: CF-Talk Subject: variable scopes hi there. is there any way (server side, cause I own/maintain the cfmx

Re: variable scopes

2002-09-10 Thread Sean A Corfield
On Tuesday, September 10, 2002, at 12:36 , Tony Weeg wrote: is there any way (server side, cause I own/maintain the cfmx server) for me to see how many/what values there are in memory -- that are session/client/application variables? In CFMX you can do: cfscript for ( key in session

RE: variable scopes

2002-09-10 Thread Tony Weeg
:32 PM To: CF-Talk Subject: Re: variable scopes CFDUMP var=#Application# CFDUMP var=#Session# CFDUMP var=#Client# Joe - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 10, 2002 4:14 PM Subject: variable scopes hi

Re: Variable Scopes / Multiple Sites

2002-07-08 Thread Jeffry Houser
It could be unusual, or then again perhaps not. I can assume that if one person creates a variable named Password and another person is able to access it then that the variable must be in one of the shared scopes (I.E. application, session, or client). If two different templates are

Re: Variable Scopes / Multiple Sites

2002-07-08 Thread S . Isaac Dealey
This is a scoping question. Somewhere on one of our servers there is a customer setting a variable password. I am not even sure which scope it is in, however if another customer does something with password and they do not specify the scope (i.e. Form) they get this other customers value.

Re: Variable Scopes / Multiple Sites

2002-07-08 Thread todd
Same application name would definitely give you problems. On Mon, 8 Jul 2002, S. Isaac Dealey wrote: This is a scoping question. Somewhere on one of our servers there is a customer setting a variable password. I am not even sure which scope it is in, however if another customer does

RE: Variable Scopes / Multiple Sites

2002-07-08 Thread Andrew Scott
Session and client are not shared variables to other users. -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 9 July 2002 2:02 AM To: CF-Talk Subject: Re: Variable Scopes / Multiple Sites It could be unusual, or then again perhaps not. I can assume