Re: Debugging AMF call

2013-03-07 Thread Rick Root
Nope, and if you google amfRequest cc is not defined you'll actually see a lot of others. No errors are logged by coldfusion, and as I said, I put a cflog right before the cfreturn and that works. *AND* the http status code is 200 - a CF error would normally throw a 500. I think my issue is

Re: Debugging AMF call

2013-03-06 Thread Cameron Childress
On Wed, Mar 6, 2013 at 3:25 PM, Rick Root rick.r...@gmail.com wrote: and amf response tabs, but the amf request just says cc is not defined and the amf response says missingResponse Use Charles to view the entire AMF reply: http://www.charlesproxy.com/ Smells like CF is throwing an error of

Re: debugging output

2013-02-01 Thread Russ Michaels
If your using IIS THEN read this http://www.michaels.me.uk/post.cfm/enabling-coldfusion-railo-errors-on-iis-7 Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Feb 1, 2013 2:49 AM, Les Irvin

Re: Debugging

2012-10-31 Thread Matt Quackenbush
Sounds like you're on IIS? If so, you'll need to find the setting that turns off their silly hijacking of the error templates, as it hides everything that's actually happening. I don't know what that setting is (not an IIS user), but there was a thread on this topic just a week or so ago. A

Re: Debugging

2012-10-31 Thread Matt Quackenbush
Oops. My bad. That thread was actually on another list. :-) This is what I got after a quickie Google search: http://helpnotes.vpasp.com/kb/611-General-hosting-questions/1089-How-to-Turn-Off-Friendly-Error-in-IIS-7xx/ HTH On Wed, Oct 31, 2012 at 10:18 AM, Matt Quackenbush

Re: Debugging

2012-10-31 Thread Rob Voyle
Hi Matt That was it thanks a bunch Rob On 31 Oct 2012 at 10:20, Matt Quackenbush wrote: Oops. My bad. That thread was actually on another list. :-) This is what I got after a quickie Google search: http://helpnotes.vpasp.com/kb/611-General-hosting-questions/1089-How

Re: debugging in cfscript

2012-02-09 Thread daniel kessler
you have cf_abort in your code instead of cf_abort() I am using cf_abort. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: debugging in cfscript

2012-02-09 Thread daniel kessler
Looks like the issue is that you have the cf_dump() and cf_abort() calls outside of the curly braces. ok, that's a thought that I hadn't considered. I moved them inside the brackets and now I don't receive an error. Thank you! Unfortunately, I also don't receive the dump or the abort. I

Re: debugging in cfscript

2012-02-09 Thread daniel kessler
Unfortunately, I also don't receive the dump or the abort. I even built an array to dump to simplify the test and assure that there's dumpable data. sigh I guess I'm just not used to this. Maybe the logs will reveal what happened. ok, it looks like the cf_dump() is working. If I put

Re: debugging in cfscript

2012-02-09 Thread Rex
yes, but to call cf_abort, you want to do cf_abort() It's like calling #now# instead of #now()# - Rex On 2/9/2012 5:46 AM, daniel kessler wrote: you have cf_abort in your code instead of cf_abort() I am using cf_abort.

Re: debugging in cfscript

2012-02-09 Thread Carl Von Stetten
Rex, I think cf_abort is a custom tag, not a UDF, so it would not be called using cf_abort(). -Carl On 2/9/2012 9:19 AM, Rex wrote: yes, but to call cf_abort, you want to do cf_abort() It's like calling #now# instead of #now()# - Rex On 2/9/2012 5:46 AM, daniel kessler wrote: you have

Re: debugging in cfscript

2012-02-09 Thread Matt Quackenbush
Nopers. Daniel has an cffunction name=cf_abort in his CFC. See his previous posts in the thread. On Thu, Feb 9, 2012 at 12:04 PM, Carl Von Stetten vonner.li...@vonner.netwrote: Rex, I think cf_abort is a custom tag, not a UDF, so it would not be called using cf_abort(). -Carl On

Re: debugging in cfscript

2012-02-09 Thread Carl Von Stetten
Oops. I missed that. Nevermind! :-[ On 2/9/2012 10:10 AM, Matt Quackenbush wrote: Nopers. Daniel has ancffunction name=cf_abort in his CFC. See his previous posts in the thread. On Thu, Feb 9, 2012 at 12:04 PM, Carl Von Stetten vonner.li...@vonner.netwrote: Rex, I think cf_abort is a

Re: debugging in cfscript

2012-02-08 Thread daniel kessler
I added this to my component, but I'm getting an error while calling it from within the component. cfcomponent hint=Replaces The Package PK_employer cffunction name=cf_abort output=false returntype=void cfabort / /cffunction cffunction name=cf_dump output=false returntype=void

Re: debugging in cfscript

2012-02-08 Thread daniel kessler
To clarify, I receive an error when these function calls are used and no error when they're commented out. --- Invalid CFML construct found on line 78 at column 33. ColdFusion was looking at the following text: else The CFML compiler was processing: a script statement beginning

Re: debugging in cfscript

2012-02-08 Thread Matt Quackenbush
First off, this is a nearly 4 year old thread. It may or may not apply to what you're working on now. What CFML engine and version are you using? What is the relevant code? On Wed, Feb 8, 2012 at 1:24 PM, daniel kessler dani...@umd.edu wrote: To clarify, I receive an error when these

Re: debugging in cfscript

2012-02-08 Thread daniel kessler
First off, this is a nearly 4 year old thread. It may or may not apply to what you're working on now. What CFML engine and version are you using? What is the relevant code? I didn't think reposting was a good idea, since there was a thread with a relevant history. I'm using CF7. I posted

Re: debugging in cfscript

2012-02-08 Thread Matt Quackenbush
The error code mentions Line 63 as the start of an if () statement, and Line 52 as the start of the cfscript tag. We'll need probably the entire if () block at the least, as it would seem the issue lies in there. Hard to speculate based solely upon the error message, as CF is notorious for

Re: debugging in cfscript

2012-02-08 Thread daniel kessler
The error code mentions Line 63 as the start of an if () statement, and Line 52 as the start of the cfscript tag. We'll need probably the entire if () block at the least, as it would seem the issue lies in there. Hard to speculate based solely upon the error message, as CF is notorious for

Re: debugging in cfscript

2012-02-08 Thread Matt Quackenbush
Looks like the issue is that you have the cf_dump() and cf_abort() calls outside of the curly braces. if ( // all those items ) { // stuff here } cf_dump(dbResult); cf_abort(); else // other stuff You need to move those two items inside of the }. HTH On Wed, Feb 8, 2012 at

Re: debugging in cfscript

2012-02-08 Thread Azadi Saryev
you have cf_abort in your code instead of cf_abort() On Thu, Feb 9, 2012 at 04:20, Matt Quackenbush quackfu...@gmail.com wrote: Looks like the issue is that you have the cf_dump() and cf_abort() calls outside of the curly braces. if ( // all those items ) {    // stuff here }    

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Russ Michaels
cf only cares about the IP address, by default it allows localhost in the IP restrictions. Try removing all the IP restrictions and see if that helps. Also are u sure you don;t have another cfsetting further down your code disabling the debugging again ? On Wed, Dec 7, 2011 at 6:53 PM, Greg

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Greg Morphis
Hey Russ, thanks for the tip, removing the IP addresses worked.. apparently my IP address is ::1 Thanks! On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaels r...@michaels.me.uk wrote: cf only cares about the IP address, by default it allows localhost in the IP restrictions. Try removing all the

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Carl Von Stetten
That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses. On 12/7/2011 12:03 PM, Greg Morphis wrote: Hey Russ, thanks for the tip, removing the IP addresses worked.. apparently my IP address is ::1 Thanks! On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaelsr...@michaels.me.uk

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Greg Morphis
REMOTE_ADDR=::1REMOTE_HOST=::1 right On Wed, Dec 7, 2011 at 3:36 PM, Carl Von Stetten vonner.li...@vonner.net wrote: That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses. On 12/7/2011 12:03 PM, Greg Morphis wrote: Hey Russ, thanks for the tip, removing the IP addresses

Re: debugging doesn't display on local sevrver

2011-12-07 Thread Carl Von Stetten
Yup. That's the IPv6 equivalent of 127.0.0.1 -Carl On 12/7/2011 1:43 PM, Greg Morphis wrote: REMOTE_ADDR=::1REMOTE_HOST=::1 right On Wed, Dec 7, 2011 at 3:36 PM, Carl Von Stetten vonner.li...@vonner.net wrote: That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses. On

Re: Debugging SOAP

2011-06-04 Thread Robert Rhodes
I wanted to circle back and thank everyone who helped me on this thread. I did as Nathan described below, and it was immediately clear that the cfinvoke posts were not going out. After some painful troubleshooting and using a lot of very bad words, I figured out why. When using cfinvoke, you

Re: Debugging SOAP

2011-05-25 Thread Jochem van Dieten
On Tue, May 24, 2011 at 10:48 AM, James Holmes wrote: One issue the OP faces is that the traffic is HTTPS. The request will have to change to HTTP before anything useful will show up. In that case, these are the steps I usually go through: 1. Download the WSDL file. 2. Change the endpoints

Re: Debugging SOAP

2011-05-25 Thread Nathan Mische
On Tuesday, May 24, 2011, Robert Rhodes rrhode...@gmail.com wrote: I don't need to monitor between my computer and the application server.  I need to monitor between the application server and a remote server across the web that hosts the web service. Adding the proxyserver and proxyport

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
Hello Jochem. I checked out Wireshark, but did not see a way for it to show me the XML I was sending. Am I missing something? It looks like Wireshark is a packet capture tool? rr On Mon, May 23, 2011 at 7:47 AM, Jochem van Dieten joch...@gmail.comwrote: On Mon, May 23, 2011 at 1:16 AM,

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
Hi Pete. I did try soapui, and it looked like it should do what I wanted, but I could not figure out how to make it work so that I could capture the outgoing soap and responses between my dev server and the remote server. On Mon, May 23, 2011 at 11:04 AM, Pete Freitag p...@foundeo.com wrote:

Re: Debugging SOAP

2011-05-24 Thread Jochem van Dieten
On Tue, May 24, 2011 at 9:55 AM, Robert Rhodes wrote: Hello Jochem.  I checked out Wireshark, but did not see a way for it to show me the XML I was sending.  Am I missing something?  It looks like Wireshark is a packet capture tool? Yes, it is a packet capture tool. It allows you to drill

Re: Debugging SOAP

2011-05-24 Thread James Holmes
One issue the OP faces is that the traffic is HTTPS. The request will have to change to HTTP before anything useful will show up. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 24 May 2011 16:14, Jochem van Dieten joch...@gmail.com wrote: On Tue, May 24, 2011 at

Re: Debugging SOAP

2011-05-24 Thread Russ Michaels
Have you tried using getHttpRequestData ? http://www.cfquickdocs.com/cf8/?getDoc=GetHttpRequestData or getSoapRequest http://www.cfquickdocs.com/cf8/?getDoc=GetSOAPRequest -- Russ Michaels www.bluethunderinternet.com : Business hosting services solutions www.cfmldeveloper.com:

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
Yes, that is the case. And all my attempts so for to view the https xml and response have failed. This is probably because there is some part of this that I am just not getting. I am hoping for that lightbulb moment soon. In the meantime, I am feeling totally lost On Tue, May 24, 2011 at

Re: Debugging SOAP

2011-05-24 Thread James Holmes
SSL is designed to stop you doing exactly that. You would need to send your request to a proxy that has a spoofed certificate, all of which is a pain to organise. On Tuesday, 24 May 2011, Robert Rhodes rrhode...@gmail.com wrote: Yes, that is the case.  And all my attempts so for to view the

Re: Debugging SOAP

2011-05-24 Thread Mark Drew
Have you guys tried out http://www.soapui.org/ yet? I found it invaluable when working with odd WebServices HTH MD On 24 May 2011, at 14:58, James Holmes wrote: SSL is designed to stop you doing exactly that. You would need to send your request to a proxy that has a spoofed

RE: Debugging SOAP

2011-05-24 Thread Brook Davies
-talk Subject: Re: Debugging SOAP Hi Pete. I did try soapui, and it looked like it should do what I wanted, but I could not figure out how to make it work so that I could capture the outgoing soap and responses between my dev server and the remote server. On Mon, May 23, 2011 at 11:04 AM, Pete

Re: Debugging SOAP

2011-05-24 Thread James Holmes
to inspect HTTPS traffic... Brook -Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 1:00 AM To: cf-talk Subject: Re: Debugging SOAP Hi Pete.  I did try soapui, and it looked like it should do what I wanted, but I could not figure out how to make

Re: Debugging SOAP

2011-05-24 Thread James Holmes
Yes, the fiddler proxy is worth a shot. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 24 May 2011 22:07, Brook Davies cft...@logiforms.com wrote: I use Fiddler (http://www.fiddler2.com/Fiddler2/version.asp ) for debugging web service calls and it can dump the raw

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
/Fiddler2/version.asp ) for debugging web service calls and it can dump the raw XML request/response and allows you to inspect HTTPS traffic... Brook -Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 1:00 AM To: cf-talk Subject: Re: Debugging SOAP

RE: Debugging SOAP

2011-05-24 Thread Brook Davies
Did you install it on the dev server? Brook -Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 10:01 AM To: cf-talk Subject: Re: Debugging SOAP Brook, would you share how to set fiddler up? I could not get it to show me traffic between by dev server

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
incorrectly. RR On Tue, May 24, 2011 at 1:10 PM, Brook Davies cft...@logiforms.com wrote: Did you install it on the dev server? Brook -Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 10:01 AM To: cf-talk Subject: Re: Debugging SOAP Brook, would you

RE: Debugging SOAP

2011-05-24 Thread Brook Davies
-Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 10:41 AM To: cf-talk Subject: Re: Debugging SOAP Yes I loaded it on the development web/cf9 server. And I set fiddler to the ssl port we are using. From another computer, I loaded up the site on the dev

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
...@gmail.com] Sent: May-24-11 10:41 AM To: cf-talk Subject: Re: Debugging SOAP Yes I loaded it on the development web/cf9 server. And I set fiddler to the ssl port we are using. From another computer, I loaded up the site on the dev server and ran the cfinvoke to post up the soap

RE: Debugging SOAP

2011-05-24 Thread Brook Davies
Sorry Robert, I haven't used it in that context.. -Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 10:53 AM To: cf-talk Subject: Re: Debugging SOAP I tried both and fiddler caught the traffic between my browser and CF, but not between CF

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
Anyone else have any ideas on how to monitor SOAP exchanges between my application server and the remote server hosting the service? Everything I have tried so far (fiddler, Charles, soapUI, wireshark) is just not working (Or I don't know enough to make it work). RR On Sun, May 22, 2011 at

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
No problem Brook. Thanks for the replies. :) It seems I must have an unusual need here. RR On Tue, May 24, 2011 at 2:25 PM, Brook Davies cft...@logiforms.com wrote: Sorry Robert, I haven't used it in that context.. ~|

Re: Debugging SOAP

2011-05-24 Thread Russ Michaels
can you speak to the people who run the web service and ask them if you can access it without ssl or ask them if have any kind of debugging/testing interface or perhaps simply give you access to logs.. Russ On Tue, May 24, 2011 at 10:43 PM, Robert Rhodes rrhode...@gmail.com wrote: No problem

RE: Debugging SOAP

2011-05-24 Thread Brook Davies
the response? Am I missing something? Brook -Original Message- From: Robert Rhodes [mailto:rrhode...@gmail.com] Sent: May-24-11 2:43 PM To: cf-talk Subject: Re: Debugging SOAP No problem Brook. Thanks for the replies. :) It seems I must have an unusual need here. RR On Tue, May 24, 2011

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
-talk Subject: Re: Debugging SOAP No problem Brook. Thanks for the replies. :) It seems I must have an unusual need here. RR On Tue, May 24, 2011 at 2:25 PM, Brook Davies cft...@logiforms.com wrote: Sorry Robert, I haven't used it in that context

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
Yes they are willing to do quick non-ssl tests. But even non-secure I have had no luck getting any of the recommended monitors/proxies to capture the soap exchange between a cf9 server and their server. They tell me there is nothing specific showing up in their logs. I really just want to see

Re: Debugging SOAP

2011-05-24 Thread Nathan Mische
You can use a proxy to do this. I use Charles. For example, assume your local computer is running Charles and has an IP address of 192.168.1.1 and the development server can reach your local computer at that address. In your cfinvoke tag, set the proxyServer attribute to 192.168.1.1 and the

Re: Debugging SOAP

2011-05-24 Thread Robert Rhodes
Nathan, thanks for the reply. I don't need to monitor between my computer and the application server. I need to monitor between the application server and a remote server across the web that hosts the web service. I have no control over the remote server and the folks that do are only

Re: Debugging SOAP

2011-05-23 Thread Jochem van Dieten
On Mon, May 23, 2011 at 1:16 AM, Robert Rhodes wrote: Would one of you kind souls tell me how to configure one of these programs (or some other program) so I can see my SOAP going out and see the response? Install Wireshark to capture all traffic on a system: http://www.wireshark.org/ Jochem

Re: Debugging SOAP

2011-05-23 Thread Pete Freitag
SoapUI is a great tool for debugging soap: http://www.soapui.org/ If you give it a WSDL url it can generate stubs for testing the remote service and lets you see and edit all aspects of the soap request and response. -- Pete Freitag - Adobe Community Professional http://foundeo.com/ -

RE: Debugging output is not working

2010-11-02 Thread Russ Michaels
On CF9 by default there are 2 entries in the debugging IP's You need to remove these if you want debugging to be visible to everyone. Regards -- Russ Michaels www.cfmldeveloper.com - free CFML hosting for developers my blog: http://russ.michaels.me.uk/ skype: russmichaels -Original

Re: Debugging output is not working

2010-11-02 Thread Scott Stewart
Monique, The setting that you're referring to is for information sent to the debugging tools in CF-Builder. For the standard debugging output you'll need to go to: Debugging and Logging = Debug Output Settings = make sure that Enable Robust Exception Information is checked along with Enable

Re: Debugging output is not working

2010-11-02 Thread Monique Boea
Thanks Guys I've tried everything that I normally do and it's not working. I'll trying removing the default. On Tue, Nov 2, 2010 at 9:08 AM, Russ Michaels r...@michaels.me.uk wrote: On CF9 by default there are 2 entries in the debugging IP's You need to remove these if you want debugging

RE: Debugging output is not working

2010-11-02 Thread Russ Michaels
Those default IP's make the debugging only visible to localhost. If you are not localhost, you won't see it. -Original Message- From: Monique Boea [mailto:moniqueb...@gmail.com] Sent: 02 November 2010 17:14 To: cf-talk Subject: Re: Debugging output is not working Thanks Guys I've

Re: Debugging a web service

2010-10-14 Thread Russ Michaels
Rick, first, get yourself a copy of this http://www.soapui.org/ Very quick and handy way to craft sample soap requests, testing the web service and getting a response. Way quicker than trying to debug with cf. and here are the soap functions you need to get the response data from cf.

Re: Debugging a web service

2010-10-14 Thread Rick Root
On Thu, Oct 14, 2010 at 3:37 PM, Russ Michaels r...@michaels.me.uk wrote: and here are the soap functions you need to get the response data from cf. http://www.cfquickdocs.com/cf9/?getDoc=getsoapresponse http://www.cfquickdocs.com/cf9/?getDoc=getsoapresponseheader Oh, that's what I was

Re: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph

2009-11-19 Thread Dominic Watson
An update on this, for my own reference as well as for people googling. I have, following various people's advice, changed the memory profile of our application quite dramatically and I will summarize what I changed and the tools I used to find the problems. I shall properly blog this later, no

RE: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph

2009-11-19 Thread Mark Kruger
Subject: Re: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph An update on this, for my own reference as well as for people googling. I have, following various people's advice, changed the memory profile of our application quite dramatically and I will summarize what I

RE: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph

2009-11-19 Thread brad
Thanks for the good follow up info. I'll be interested in your learning curve for figuring out JConsole. ~Brad Original Message Subject: Re: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph From: Dominic Watson watson.domi...@googlemail.com Date: Thu

Re: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph

2009-11-18 Thread Dominic Watson
Right, so changing Eden memory size had a slight effect on the memory useage pattern (spikes only going up to around 80% instead of 95%), but did not stop the crashing. Getting to grips with JConsole has been really useful / educating. I have been monitoring all three of our live servers

RE: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph

2009-11-16 Thread Paul Vernon
and have reduced the troubles a great deal. However, there still seems to be an underlying problem that is causing CF to crash out with multiple instances of the error: unable to create new native thread The specific sequence of files included or processed is: [xxx]

Re: Debugging Out of Memory errors, SeeFusion Memory / Active requests graph

2009-11-16 Thread Dominic Watson
Thanks a lot Paul, I'm getting to grips with JConsole now and looking into the Eden memory settings. I'll be sure to blog about what I find (if its the same problem as yours I'll simply link to your post, init). Dominic 2009/11/16 Paul Vernon paul.ver...@web-architect.co.uk and have

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Andy Matthews
A really good way to debug jQuery to CF mechanics is to use Firefox and Firebug. In Firebug you can see AJAX calls. Right click on that line in FB then select copy with parameters, and paste that into a new tab. It'll store all of your passed in vars, and let you see what CF is doing. andy

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Craig Dudley
Firebug is cool but I also use a reverse proxy called Charles which is extremely useful (http://www.charlesproxy.com/) -Original Message- From: Andy Matthews [mailto:li...@commadelimited.com] Sent: Thursday, October 01, 2009 2:39 PM To: cf-talk Subject: RE: Debugging jquery post

Re: Debugging jquery post to coldfusion

2009-10-01 Thread Raj Vijay
Firebug is a great tool and will save you lot of time. CF solution: you can use the cftry..cfcatch and email the errors. Example: cftry !--- your code --- cfcatch type=any cfmail subject= type=html from= to= cfdump var=#cfcatch.detail# -- #cfcatch.message# /cfmail /cfcatch

Re: Debugging jquery post to coldfusion

2009-10-01 Thread Gerald Guido
I ran into Fiddler a while back. Pretty freaking awesome. It has a FF plugin as well. http://www.fiddler2.com/fiddler2/ On Thu, Oct 1, 2009 at 7:31 AM, Doug Hyde deve...@fusesite.com wrote: I am having trouble processing a post to a cf template using a jquery post. I have set up a template

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Andy Matthews
Fiddler is good, but for the most part, Firebug is better. -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Thursday, October 01, 2009 9:20 AM To: cf-talk Subject: Re: Debugging jquery post to coldfusion I ran into Fiddler a while back. Pretty freaking

Re: Debugging jquery post to coldfusion

2009-10-01 Thread Tony Bentley
Generally when trying to debug a template, I will log the variables on a separate page that I can refresh. Simply put the following code either in your application.cfm or in the onrequest function in the application.cfc cfsavecontent variable=exc #now()# h2FORM/h2 cfdump var=#form#

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

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

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.

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

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

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

Re: debugging when invoking cfc's

2008-09-17 Thread Richard White
to provide more details... i have just got an error and it tells that complex error types cannot be converted to simple values... but gives me no clue as to what line of code it is talking about, so i am having to search through the code to find it thanks hi, i testing my cfc's by using

Re: debugging when invoking cfc's

2008-09-17 Thread Dan Vega
The problem is that you are trying to treat a complex object as a simple value. Take the following example. I am creating array that holds 2 values. If I were to dump it everything would be fine but If I tried to output it like below I would get the same error you are. cfset skills = ArrayNew(1)

Re: debugging when invoking cfc's

2008-09-17 Thread Richard White
thanks for the reply Dan, although that is a problem i do have at present and as you rightly said it is trying to a reference complex variable as a simple variable although this actual issue is not my problem. my problem is finding the offending code that has this issue. once i can find the

Re: debugging when invoking cfc's

2008-09-17 Thread Richard White
actually i must also say that i am not cfinvoking a cfc, i am actually invoking a web service, would this make any difference, and if so then how can i get it to provide me with more details? thanks thanks for the reply Dan, although that is a problem i do have at present and as you rightly

Re: debugging when invoking cfc's

2008-09-17 Thread Shannon Peevey
I am interested here as well, as debugging coldfusion code is mostly involving cfdump tags in strategic places... Does the Eclipse plug-in give any more information than the CF Debugging output? Hope this doesn't hi-jack the thread, speeves On Wed, Sep 17, 2008 at 1:23 PM, Richard White [EMAIL

Re: debugging when invoking cfc's

2008-09-17 Thread Richard White
hi shannon, i dont know if my example is exactly the same as what you were asking as my problem was specifically to do with debugging the cfc's when calling them as a web service. but i just worked out that i shouldnt be calling them as a web service until i have thorougly debugged them!!!.

Re: debugging in cfscript

2008-05-20 Thread Aaron Rouse
Depending on where you are in the script it could be as simple as ending the cfscript then putting in a cfdump and then beginning the cfscript again. I often debug small problems within cfscripts by using writeoutput functions for the values on if statements and other things of that nature. I

Re: debugging in cfscript

2008-05-20 Thread Charlie Griefer
cffunction name=cf_abort output=false returntype=void cfabort / /cffunction cffunction name=cf_dump output=false returntype=void cfargument name=objToDump type=any required=false default= / cfdump var=#arguments.objToDump# / /cffunction cfscript var myArray = newArray(1);

Re: debugging in cfscript

2008-05-20 Thread Dominic Watson
when debugging with coldfusion tags i use the cfoutput and cfdump tags alot but how can i use these tags and the cfabort tag within cfscript, or how can i get the same effect as these tags? A common practice is to create a udf that wraps the functionality of a cf tag, so: cffunction

Re: debugging in cfscript

2008-05-20 Thread Richard White
thanks guys, very neat solution :) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive:

RE: Debugging?

2007-03-20 Thread Betts, Robyn
Subject: RE: Debugging? Sure is, in cfadmin under debugging settings Debugging Logging Debugging IP List , add the IP address for debug output. Bob -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 10:30 AM To: CF-Talk Subject: Debugging

Re: Debugging?

2007-03-20 Thread John Beynon
Message- From: Bob Imperial [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 12:39 PM To: CF-Talk Subject: RE: Debugging? Sure is, in cfadmin under debugging settings Debugging Logging Debugging IP List , add the IP address for debug output. Bob -Original Message- From

RE: Debugging?

2007-03-19 Thread Bob Imperial
Sure is, in cfadmin under debugging settings Debugging Logging Debugging IP List , add the IP address for debug output. Bob -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 10:30 AM To: CF-Talk Subject: Debugging? Is there a way to have

Re: debugging SOAP requests

2007-03-08 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Russ Michaels wrote: no it is a JAVA web service. I would guess that the types of the parameters you are sending it are wrong. What does the WSDL say ? -- Tom Chiverton Helping to efficiently administrate 24/365 segments On: http://thefalken.livejournal.com

RE: debugging SOAP requests

2007-03-07 Thread Robertson-Ravo, Neil (RX)
Hi Russ, Is it a CF Service? What is its returntype? Neil -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 10:06 To: CF-Talk Subject: debugging SOAP requests I am having problems debugging SOAP requests, as CF really doesn't give any kind of

Re: debugging SOAP requests

2007-03-07 Thread Russ Michaels
no it is a JAVA web service. Russ Hi Russ, Is it a CF Service? What is its returntype? Neil -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 10:06 To: CF-Talk Subject: debugging SOAP requests I am having problems debugging SOAP requests, as CF

Re: Debugging Model Glue

2007-02-27 Thread Scott Stroz
If you are using MG:Unity, its in ColdSpring.xml, if not, its in ModelGlue.xml. Look for property name=debugvaluetrue/value/property On 2/27/07, Robert Rawlins [EMAIL PROTECTED] wrote: Hello Guys, I'm totaly new to the model glue framework, how do I diable debugging output? I'm sure I've

RE: Debugging Model Glue

2007-02-27 Thread Robert Rawlins - Think Blue
!moo Scott, That worked a charm, found the element in ColdSpring.xml. Thanks mate, Rob -Original Message- From: Scott Stroz [mailto:[EMAIL PROTECTED] Sent: 27 February 2007 15:59 To: CF-Talk Subject: Re: Debugging Model Glue If you are using MG:Unity, its in ColdSpring.xml

Re: Debugging CSS

2007-02-11 Thread Peter Boughton
Definitely Firebug. http://www.getfirebug.com Hey all, How do I go about debugging CSS issues? For example, the two headers in the left and right columns of the content areas of this web site are aligned right, but I don't know why. http://www.countryclubheights.org/index.cfm I

RE: Debugging CSS

2007-02-11 Thread Jim Davis
-Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Sunday, February 11, 2007 11:22 AM To: CF-Talk Subject: OT: Debugging CSS Hey all, How do I go about debugging CSS issues? Firebug is great for FireFox and the IE Developer Toolbar lets you modify the DOM

  1   2   3   >