IIS Workerthread

  • Thread starter Thread starter volker
  • Start date Start date
V

volker

Hello!

While IIS (+ .net 20 ) is running a workerthread shold select data in
background permanently.

How can iI do this?

V.
 
start the thead in application_start. some notes

1) normally the app domain is unloaded after unuse - this will shutdown the
thread
2) a recycle can cause two threads to be running as the old appdoamin will
be still runing, while the new one is loaded.
3) application start will not fire until the first web request hit the site.

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