vote up 0 vote down star

So part of the application I'm working on is still written in classic ASP. Visual Studio 2008 was working just fine to debug the classic ASP, and with the addition of a hotfix it wouldn't even crash when I stopped debugging. This was all working very well for a number of months.

Yesterday and today, several members of our group noticed that when we tried to debug classic ASP now, the IDE would hang immediately after trying to step into, or over a line of code.

The culprit as far as we can determine is a hotfix or update that was sent down with our corporation's SMS updater. The log files have been very unhelpful so far, and we've tried pretty much everything. This is not localized to Visual Studio 2008 either - we also tried going back to 2005 and the same symptoms appeared. Does anyone have any idea what's going on??

(Other things we've tried: Rolling back to a previous system restore point, reinstalling visual studio 2008 sp1, shutting down all add-ons, resetting environment defaults, uninstalling any update in Add/Remove programs that was installed in the last few days, using the SMS toolkit to root through the logs to find the culprit)

flag

2 Answers

vote up 0 vote down

Classic ASP debugging in 2009??? You Pantlicker!!!

link|flag
Yeah... believe it or not, there are still people I work with that remember TWIPs ;) – Eric Aug 12 at 20:29
vote up 0 vote down

It seems you have no idea where the debugger is stuck. The best approach is to get a crash/memory dump of the system when this problem happens. Then the created memory dump can be analyzed.

A memory dump can be obtained from the windows debugger windbg with the command .dump or with the tool. See the attached link for the tool.

Then load the created dump file in windbg with the -z command switch and have a look at the corresponding call stacks.

Systemdump tool

link|flag
Thanks steve! I was sort of hoping to avoid going this route, since I'm no expert using WinDbg, but it seems that this might be the only approach after all! – Eric Aug 12 at 13:25
If you provide the dump file I can have a look at it – steve Aug 12 at 21:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.