debugging

Visual Studio Debugging is not attaching to WebDev.WebServer.EXE

I have a solution with many projects. On Debug, I have three web projects that I want to start up on their own Cassini ASP.NET Web Development servers. In the Solution Properties - Common Properties - Startup Project, I have Multiple startup projects chosen with the three web applications' Action set to Start. All three web development s...

How to debug JSP running inside a portlet in WebSphere 5.0.2 with Intellij IDEA?

I'm trying to remote debug JSPs using "JSR45 Compatible Server" configuration type in IDEA. My breakpoints do work in *.java files (after some dark magic tweaks, though) but breakpoints inside JSP don't. I tried settings breakpoints inside or outside scriptlets, in tag invocations, etc - none worked. WebSphere 5.0.2 runs on java 1.3. ...

Help debugging - when does the Application_Start run in global.asax file?

Here's the snippet from my Global.asax: <script runat="server"> void Application_Start(object sender, EventArgs e) { // log this call EventLogger.Log("ApplicationStart"); } void Application_BeginRequest(object sender, EventArgs e) { // log what the user is doing UsageLogger.Log(UsageLogger....

Can I get debug symbols for flash player? Or any other way to get support for flash?

The company I am working for has a flash component (using flex and cs4) that crashes intermittently in chrome, FF and IE. (so far only win32 platforms) I submitted a bug report to Adobe but have not heard anything back from them. Their support process seems like a black hole. WE can get a dump from Flash using these steps but after s...

Stepping through code is slow

Using VS2008 with the latest patches. Compared to a co-worker with a lower-end machine and half as much memory, stepping through the code in VS2008 on my box is really slow. There is at least a perceptible 0.5 second delay for each line. What can I do to speed this up? ...

Information about RAM management in OS Linux, protection programs

I'm writing a report and presentation for my college titled "Protection runtime program in RAM. Examples of work with the protected program." I'm using Linux. I divided my report into two parts: Description of technology managed RAM OS Linux - Allocated memory for applications - Protection stack for one application from other applica...

How do I get symbols for Flash10c.ocx? (need the pdb from adobe)

This is related to this question I need the pdb file from adobe but it is a nightmare trying to get support or any reasonable response form the company. I spent 2 hours yesterday on the phone with various people begging them to let me pay for a support incident. Flash is crashing in browsers and I can't debug it in visual studio witho...

Advice for embedding a Java scripting language for debugging/remote admin

I have a fairly sophisticated server-side application which frequently requires me to see what is going on with its internals to debug and fix problems. I've therefore embedded a Beanshell instance, which I can telnet into (normally over a ssh tunnel), but I'm wondering if there is a better way. A few limitations: No readline support...

How to hunt a Heisenbug

Recently, we received a bug report from one of our users: something on the screen was displayed incorrectly in our software. Somehow, we could not reproduce this in our development environment (Delphi 2007). After some further study, it appears that this bug only manifests itself when "Code optimization" is turned on. Are there any peo...

Looking to visualize debugging: variables and instances created by classes and functions graphically drawn

First of all, I do not believe this belongs on Superuser. This belongs here because it is strictly programming related. What I am looking for is a program that will visualize(draw it on the screen or something) how programs create variables, make pointers from the stack to the heap, variable names and contents, and so on. Kinda like a ...

How can I add debugging symbols to Audacious?

I am writing a plugin for audacious, and I am experiencing random segfaults. I looked around and I found that I can process the program's core dumps with gdb. So I did that, and I got this output: http://pastebin.com/m7d0d663d As you can see, it says no debugging symbols where found anywhere. I want to compile audacious with debuggin...

Eclipse debugging / step into method skipping AOP wiring

I'm debugging a SpringSource application in Eclipse 3.5 that makes heavy use of AOP to wire up the components. If I want to step into a method of a class wired with AOP, I first have to step through around 20 layers of SpringSource wiring methods before reaching my own source code again. Is there a way to configure Eclipse to skip th...

debugging tomcat crash

I have an instance of Tomcat which periodically crashes for unknown reasons. There are no errors left in the logs, only a line in Event Viewer saying "Tomcat terminated unexpectedly". In a test environment I have been unable to replicate the issue. I am therefore mostly restricted to passive monitoring of the production environment. T...

How to step through code in Google chrome javascript debugger

hi guys, i am really getting frustrated with google chrome... i have version 3.0.195.27 and want to debug some javascript that is working in IE ,FF but not in chrome when i open the debugger and mark breakpoints(the blue arrow thingy) and execute the javascript it hits the breakpoint and then i do not know how to step through code....i...

Visual Studio Debugger - decrease time to attach & load symbols

Generally speaking, what are your recommendations on this? Currently takes close to 10 minutes for me to attach to a locally running IIS process hosting SharePoint 2007. ...

How do I move the instruction point in the Perl debugger?

I would like to be able to (reasonably) arbitrarily set my execution point in the Perl debugger. E.g., moving immediately prior to an if from the body of the if and setting a variable. Rummaging around the perldebug(and perldebguts and the perl debugger POD) page suggests that this kind of functionality is either not supported or not do...

How do I get gdb working with D programs under linux?

I have a patched gdb 6.8, but I can't get any debugging to work. Given this test file: import std.stdio; void main() { float f = 3.0; int i = 1; writeln(f, " ", i); f += cast(float)(i / 10.0); writeln(f, " ", i); i++; f += cast(float)(i / 10.0); writeln(f, " ", i); i += 2; f += cast(float)(i / 5....

VS2008 Remote Debugging problems from 32-bit Windows XP client to 64-bit Windows 2008 Server

We are having an issue with remote dedubbing using Microsoft Visual Studio 2008 on a 32 bit XP client machine and a 64 bit Windows Server 2008 Virtual Machine on Hyper-V. When we debug the web project locally we can correctly see the modules loaded in the modules window (Ctrl + Alt + U) with the relevant symbols. When we try and debug ...

Visual Studio not debugging

When I press F5, my web application starts up and runs, but the visual studio debugger is not attached to the process. The play button is always enabled. I checked the configuration manager and all the libraries and web apps are debug|any-cpu. ...

openfire monitor stanza xml message

inside openfire admin control panel page, is there any plugin i can use to monitor xml stanza . i know able to monitor it from smack client side, but i want to see it directly from server size, then my client do not need to run in debug mode ...