debugging

Full Calendar.js Cannot Initiate

Sorry but I can't seem to get my special-kid helmet off today. I'm attempting to use Full Calendar http://cl.ly/1UCt ... I've verified that there are no relevant javascript errors, all of the scripts are being called properly, I have a #calendar div, yet I'm getting no results or output on the page. Using this within WordPress, here ...

Stepping through ASP.NET MVC 2 source

I've been trying to set up the ASP.NET MVC 2 RTM Source for use with my app, so I can step through things like model binding when debugging. However, I haven't been able to get it to work - I'm getting errors like: The type 'System.Web.Mvc.Controller' is defined in an assembly that is not referenced. You must add a reference to assemb...

vs2010 unable to connect to the ASP.net development server

i am getting this error while trying to view in browser. i checked the host file and the 127.0.0.1 localhost line wasn't commented i am on windows server 2003 and my IIS is working fine as projects on VS2008 are working fine i am really confused and trapped in this and it's urgent and critical ...

Cannot debug Sharepoint application using non system account user ?

I am using WSPBuilder to develop Sharepoint2007 sites, whenever i try to debug using one of the users that are not System Account, the debugger enters to the breakpoint and waits a step (F10), when i press F10, i get the following exception in the debug output window after pressing F10 on the line having the breakpoint: A first chance e...

How can I GAE (Eclipse IDE) to kill previous instance of test server when I start debugging?

GAE Eclipse IDE launches test server instance when I start debugging. But the test server instance does not killed when I restart the debugging after some code modified. This annoying. I have to kill previous instance manually on each time before new instance launched because previous instance holds port. How can I make the IDE kill pre...

Python: __debug__

I'd like a global variable to determine if I'm in debug mode or not. Is that what __debug__ is for? How do I set/read it on Google App Engine? If I use logging.debug(), will that automatically be turned off if I don't run the app with debug=True? application = webapp.WSGIApplication(# ... debug=T...

Managing large log files

We have a crawler that persistently crawls our target sites, it's log files are turning out to be quite huge. Over 1 GB in some cases, I'm not too comfortable with deleting or overwriting them. Any examples of how you managed large log files? ...

SharpDevelop equivalent of Visual Studio's "Break on exceptions"

In Visual Studio, there's a debugger setting labelled "Break on exceptions" or something like that. It drops into the debugger whenever an exception is raised (that is, on the first pass of the two pass exception mechanics), regardless of whether the exception will be handled or not. This is a very useful feature, and I try to keep it ...

How do you debug (trace execution) of a pylons web application?

How do you debug (trace execution) of a pylons web application? (using a mac with textmate) ...

Any way to debug javascript on Android devices?

Are there any means of debugging JS code, or at least get errors, on Android devices? ...

How do I see Node.js errors?

I'm new to Node.js. I know there are more involved debuggers available (like node_debug and ndb), but is there a simple way to see runtime errors thrown in Node.js? With a simple example file like this: var sys = require('sys'), http = require("http"); var server = http.createServer(function(req, res) { var foo = [1, 2, 3]; f...

Why are my VS2008 watches showing incorrect values?

I have a string variable and a string constant. Both should be the same value (I'm testing for equality in a conditional). The 'correct' values of both should be "scl". While debugging, if I put a watch on each, look at them in the 'locals' windows, or hover over them, the value displayed is "sd", which is the value of a different consta...

Is there a way to freeeze Selenium-RC execution on error?

My Google-fu is weak and so I turn to the hive mind... I have a Selenium script I originally developed in the IDE, which I am now trying to adapt to run on IE8 via Selenium-RC. I'm trying to debug an error where an element is not being found. The problem is that as soon as the error occurs, the script exits and RC closes the browser. ...

Can Java Logger do this: logger.fine("foo = " + bar)?

I am trying to debug the value of an object in EJB If I do logger.fine("foo"), then I can see foo, but if I do logger.fine("foo = " + bar) then i cant see anything. So how do I debug in EJB? I am using netbean 6.8 btw ...

Logging Django Errors instead of returning them to inspect API callback

Hi I'm working on a project that gets callbacks from some other sites' API. I expect my code to have a few errors, because I'm new to Python & Django. My site in development is using mod_wsgi and Apache with Debug = True ;) The API I get the calls from adds a parameter to the querystring to my callback that is built using their own pri...

how to step into RTL/VCL using Delphi 7

When debugging using the Delphi 7 IDE how can I step into code in the program files/borland/delphi7/source folder? Sounds like a dumb question, but inquiring minds want to debug. (not that I think anything is wrong with the source, I just want to know why for the 9000th time I can't assign a TJpegImage to a TjpegImage). ...

Follow program execution through .DLL in hex representation

Is there a way to follow a program's execution through DLL code in hex? For example, I want to see what sections have just been read when I press a button. It has to work for x64 DLL's. Thanks! ...

JBoss threads waiting on random monitor

I'm doing some load testing on a web app deployed in JBoss. It starts up fine, but as the test ramps up and more simulated users start hitting JBoss, performance degrades severely: Connecting VisualVM to it, I can see the threads were all fine, then suddenly started spending most of their time waiting for a monitor (green is running, ...

Is stacktrace information available in .NET release mode build?

If I choose release mode to build a dll, is the stacktrace information still available? If so, then what information is unavailable in release mode? ...

Netbeans & Android emulator

Hi All, I set my android emulator to wait for the debugger for my application, so when it starts, the emulator waits writing in output log "waiting for debugger on port 8100". But, I can't find a way to attach the Netbeans debugger to this port nor to the emulator in general... Please help, Alban. ...