My web application ends even though no exception has been thrown.

  • Thread starter Thread starter Peter Strøiman
  • Start date Start date
P

Peter Strøiman

Hi.

I have a complex web application. Actually it's an application server that
uses xml over http ( it's not SOAP ).
The xml is handled by an asp.net page and calls the framework.

My problem is that after the asp.net page is done executing, the web
application terminates. I placed a line with a breakpoint in
Global.Application_End, and the code hits the breakpoint.

Why does this happen?

Thanks in advance,
Peter Strøiman
 
I found out why!

I was dynamically generating new assemblies, and placed these in a
subdirectory under the "bin" directory.
Apparently, when you make modifications to that directoty, asp.net decides
to shut down the application
 
Back
Top