Domain problem

  • Thread starter Thread starter Blasting Cap
  • Start date Start date
B

Blasting Cap

I'm trying to debug a website that has been converted from VS2003 to
VS2005 and am getting this message:

"The application domain in which the thread was running has been unloaded"


Problem is - it doesn't tell you what's wrong or where to fix it. To my
knowledge, the operating environment hasn't changed from when I ran it
in debug this morning. The only change I have made to the project is to
comment out about 6 lines of code, which writes stuff to the event log
for the app in global.asax.

The only weird thing I've gotten is a "Windows is low on memory" message
which I always have received the longer I run VS 2003 or VS 2005.

Any ideas?

BC
 
the problem is asp.net is recycling the application (unloading the
application appdomain), so the debugger has nothing to debug, because the
threads exited. add more virtual memory.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top