RE: Debugging Coldfusion and javascript

2008-10-07 Thread Adrian Lynch
If you don't get 10 more posts saying Firebug for Firefox I'd be highly
suprised.

Adrian

Building a DB of errors at http://cferror.org/

-Original Message-
From: Anthony Doherty [mailto:[EMAIL PROTECTED]
Sent: 07 October 2008 09:01
To: cf-talk
Subject: Debugging Coldfusion and javascript


hi we are constantly using coldfusion with javascript and keep getting wierd
javascript error message when calling functions with cfc's. things like an
object was expected or my favourite exception thrown but not caught
(maybe adobe could give coldfusion a pair of gloves to help it catch the
exception!)

anyway i was wondering if there was any debugging tool i could add to IE or
firefox or even dreamweaver?

Thanks


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313508
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Debugging Coldfusion and javascript

2008-10-07 Thread Azadi Saryev
what exactly do you mean by when calling functions with cfc's?
which version of cf are you using? which OS?

as for debugging tools, download and install FireBug extension for FF
from addons.mozilla.org and then ColdFire from coldfire.riaforge.org.

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Anthony Doherty wrote:
 hi we are constantly using coldfusion with javascript and keep getting wierd 
 javascript error message when calling functions with cfc's. things like an 
 object was expected or my favourite exception thrown but not caught (maybe 
 adobe could give coldfusion a pair of gloves to help it catch the exception!)

 anyway i was wondering if there was any debugging tool i could add to IE or 
 firefox or even dreamweaver?

 Thanks 

   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313509
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Debugging Coldfusion and javascript

2008-10-07 Thread Gerald Guido
Aptana has a debugger. Not really a CF tool per se but it is a great IDE for
JS development.
http://www.aptana.com/studio

Debug bar for IE is pretty good
http://www.my-debugbar.com/wiki/CompanionJS/HomePage

+ 1 billion for FireBug. It is an absolute God send.
https://addons.mozilla.org/en-US/firefox/addon/1843


On Tue, Oct 7, 2008 at 4:00 AM, Anthony Doherty 
[EMAIL PROTECTED] wrote:

 hi we are constantly using coldfusion with javascript and keep getting
 wierd javascript error message when calling functions with cfc's. things
 like an object was expected or my favourite exception thrown but not
 caught (maybe adobe could give coldfusion a pair of gloves to help it catch
 the exception!)

 anyway i was wondering if there was any debugging tool i could add to IE or
 firefox or even dreamweaver?

 Thanks

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313533
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Debugging Coldfusion and javascript

2008-10-07 Thread Jim Davis
 -Original Message-
 From: Scott Stewart [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 07, 2008 8:03 AM
 To: cf-talk
 Subject: Re: Debugging Coldfusion and javascript
 
 Your only option, is Firebug, a plug in for Firefox.

It's a great option but far from your only one. ;^)

I still like my own a lot (although it's not been updated in 2 years) - it
does not do as much as the full FireBug (since it's not an install) but does
run cross browser (Opera too) and may be a bit simpler for some CFers to
grok (as it's based primarily on CFDUMP):

http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D
ebug/Index.cfm

It gives easy access to dumping JS variables (even complex, circular ones),
available cookies, the Query String, a simple timer and the ubiquitous but
all important logger.  Really great for exposing AJAX calls.

It can also be enabled and disabled through code allowing you to embed it in
your applications and enable it as needed via a query string switch.

Of course you can never have too much help...

Jim Davis


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313535
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Debugging Coldfusion and javascript

2008-10-07 Thread Brian Kotek
Chrome actually has a pretty nice debugger within it, if you happen to be
running Chrome.

On Tue, Oct 7, 2008 at 8:02 AM, Scott Stewart [EMAIL PROTECTED]wrote:

 Your only option, is Firebug, a plug in for Firefox.

 Anthony Doherty wrote:
  hi we are constantly using coldfusion with javascript and keep getting
 wierd javascript error message when calling functions with cfc's. things
 like an object was expected or my favourite exception thrown but not
 caught (maybe adobe could give coldfusion a pair of gloves to help it catch
 the exception!)
 
  anyway i was wondering if there was any debugging tool i could add to IE
 or firefox or even dreamweaver?
 
  Thanks
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Debugging Coldfusion and javascript

2008-10-07 Thread Scott Stewart
Your only option, is Firebug, a plug in for Firefox.

Anthony Doherty wrote:
 hi we are constantly using coldfusion with javascript and keep getting wierd 
 javascript error message when calling functions with cfc's. things like an 
 object was expected or my favourite exception thrown but not caught (maybe 
 adobe could give coldfusion a pair of gloves to help it catch the exception!)

 anyway i was wondering if there was any debugging tool i could add to IE or 
 firefox or even dreamweaver?

 Thanks 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313530
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4