Hi,
Is there a way to record the stack trace (of a web application) from within visual studio?
I'm able to do it from EA, although it always crashes at some point in my code. So I thought that maybe it could help if I could do it directly from visual studio.
Another thing is that I'm not sure if I'm following the correct procedure to record a stack trace. Here is what I do:
1) I have a package containing all my VS projects.
2) I set up the 'package build scripts' as follows:
- Directory: The root directory where all my project source codes are.
- In the debug tab I write 'Attach' and select .NET 2.0 as debugger
- In the run tab I write the url to the _published_ version of my web application.
3) I put a breakpoint in one of my pages (in EA).
4) I start the debug process and attach to the asp process of the _published_ version.
5) I run the published version in IE.
6) EA stops at the breakpoint
7) I click on the icon to start recording

At some point it stops recording because of some error (sometimes there's a buffer overflow)
I hope this is caused because I'm not following the correct procedure to record the stack trace?