IIS debug limitation?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I seem to recall that only one debug session is supported at a time in IIS
for an application. I searched documentation and couldn't find anythin on
this.

Is this correct?

What are the debug limitations in IIS?

Thanks,
Jay
 
if you use ii6.0 (server 2003), you get get 1 session per app pool. with iis
5.0, 1 session per iis. this is because there is only one debugging session
per process. when debugging asp.net you connect to the asp.net worker
process. in 2003 there is one asp.net worker process per app pool, while
earlier versions only have one worker process.

-- bruce (sqlwork.com)
 
Bruce,
Thanks.
Jay

Bruce Barker said:
if you use ii6.0 (server 2003), you get get 1 session per app pool. with iis
5.0, 1 session per iis. this is because there is only one debugging session
per process. when debugging asp.net you connect to the asp.net worker
process. in 2003 there is one asp.net worker process per app pool, while
earlier versions only have one worker process.

-- 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