RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread anthony
Can you give more details? - To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform For more info, see http://www.acfug.org/mailinglists Archive @ http://www.mail-archive.com/discussion%40acfug.

RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Robert Reil
How do I do that?   Robert P. Reil Managing Director, Motorcyclecarbs.com, Inc. 4292 Country Garden Walk NW Kennesaw, Ga. 30152 Office 770-974-8851 Fax 770-974-8852 www.motorcyclecarbs.com From: PC Albrecht [mailto:[EMAIL PROTECTED] Sent: Thursday, May 18, 2006 7:06

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread PC Albrecht
I have taken it back to "com.ablecommerce.ac5.order.Order" since I'm not running ablecommerce current (old stuff), you will need to dump the object for more information.  - Original Message - From: Robert Reil To: discussion@acfug.org Sent: Thursday, May 18, 2006 4:49

RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Robert Reil
Did the dump and found other variables with less variables.   Will be doing with those variables to identify these tables.   Thanks for all the help guys, you all are Johnny on the spot with the help. Thanks.   Robert P. Reil Managing Director, Motorcyclecarbs.com, Inc. 4292 Co

RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Robert Reil
Thanks Dean. Got that. Fixed it. Thanks for catching that. I know better!   Robert P. Reil Managing Director, Motorcyclecarbs.com, Inc. 4292 Country Garden Walk NW Kennesaw, Ga. 30152 Office 770-974-8851 Fax 770-974-8852 www.motorcyclecarbs.com From: Dean H. Saxe [mai

RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Robert Reil
Preesh is going to help me at home on her AbleCommerce box.   I am now doing this on my Dev Box. I know better but I am at the edge of my understanding here. I will get it, I am on Chapter 6 in Forta’s Web App Const Kit book. Still learning, Still plugging away. I will get it just bear w

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Dean H. Saxe
Hell... you shouldn't be modifying code on a production box, period.  That's a sure-fire way to screw yourself.-dhs Dean H. Saxe, CEH[EMAIL PROTECTED]"Free speech exercised both individually and through a free press, is a necessity in any country where people are themselves free."     -- Theodore R

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Teddy Payne
Shawn is quite right to point this out.  Dumping functions and objects for debugging should be used on a development box, local development environment or someplace not in production.  Secured information could be displayed that you do not want the wrong people to see. TeddyOn 5/18/06, [EMAIL PROTE

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Preesh
yepnot thinking...my fingers are just typing at this point of the day. - Original Message - From: [EMAIL PROTECTED] To: discussion@acfug.org Sent: Thursday, May 18, 2006 4:01 PM Subject: Re: [ACFUG Discuss] Reverse Engineer Code HELP! Shouldn't it be "conta

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Shawn . Gorrell
Shouldn't it be "contains"? I didn't realize this was going on a PROD site... Shawn Gorrell Web Development Applications Architect Federal Reserve Bank - Atlanta Office (404)  498-8449 "Preesh" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 05/18/2006 03:53 PM Please respond to discuss

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Teddy Payne
Robert,What this line achieves is pointing tempNote to tObj, which would have to have been created prior to this assignment.  In the assignment, tObj.getItemAt() is being passed an integer value.javacast is a java method that ensures that the variable "i" is type casted into an integer.  ColdFusion

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Preesh
If you must place the cfdump on your live site   egads...this may help     - Original Message - From: [EMAIL PROTECTED] To: discussion@acfug.org Sent: Thursday, May 18, 2006 3:14 PM Subject: Re: [ACFUG Discuss] Reverse Engineer Code HELP! From the syntax that

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Steven Ross
just put this bit of code after your when you execute the page you will see what cfdump does... it basically dumps (or outputs) all the contents of tempNote... it looks like you are going to need to figure out what "tobj" is so that you can figure out what tempNote is...On 5/18/06, Robert Reil <[

RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Robert Reil
I found this:     Don’t know how to yet.   Does this help? Still does not make sence.   Robert P. Reil Managing Director, Motorcyclecarbs.com, Inc. 4292 Country Garden Walk NW Kennesaw, Ga. 30152 Office 770-974-8851 Fax 770-974-8852 www.motorcyclecarbs.com Fro

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Teddy Payne
Robert,It is not unusual to be perplexed by this if there are no commetns explaining that the original developer was attemptting. #tempNote.getNoteData()#getNoteDate() is a function or what we call a "method."  tempNote is the variable declaraction that points to an instantiated object, which just

RE: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread axunderwood
Yeah, it could either be a cfc or an object call, or even more obscure, it could be a coldfusion function stored in a structureI'd do a global search on your code either for cffunction containing NoteData or just search for function and NoteData   Alle -Original Message-From:

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Shawn . Gorrell
From the syntax that doesn't appear to be the result of a query, but is calling a method against an object that may or may not return a query. Do a and take a look at what the object contains. Shawn Gorrell Web Development Applications Architect Federal Reserve Bank - Atlanta Office (404)  498

Re: [ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Steven Ross
you should look for something on the page that is creating the "Note" object...try dumping the object:it may say what it is an instance of... or give you some clues... On 5/18/06, Robert Reil <[EMAIL PROTECTED]> wrote: As some of you know I am new to CF.   I have a situation

[ACFUG Discuss] Reverse Engineer Code HELP!

2006-05-18 Thread Robert Reil
As some of you know I am new to CF.   I have a situation where I need to know what column and table data is being pulled from on a cfm file.   Tell me what you need to know in order to figure this out. All I see is:   #tempNote.getNoteData()#   But it does not make sence to me wher