Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say you have an ASP.NET website that you launched locally from VS2010, using IIS Express . You test the app, decide you want to make some changes. You stop the debugger. But, in actuality, the application is still running, you can still pull up pages, etc.

Then you update some library code, and launch again. Does it re-use an existing "app-pool"? Do objects with static initailizers get called again when enountered? Or are they only called again if they are from updated binaries (but unchanged library references are not reinitialized?) Are you starting from a blank slate?

The problem I am facing is that my server-side code is creating long-lived unmanaged objects (TCP connections, namely). I "stop debugging" my application, make a change, and try to launch it again. But I get an error, because the port is already bound, because the previous instance never fully "stopped" and let go of it. Even if I right-click the IIS Express icon in the system tray, and tell it to "stop all", it doesn't seem to help. Sometimes, by trying to relaunch I'll get an error that IIS Express crashed. Sometimes, the only thing I can do is close down VS2010, open my solution again, and then launch. Obviously, this is less than ideal.

Any ideas? What is happening to the existing application running in memory when I try to re-deploy, and why are my unmanaged resources not being released?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.