Should I use a Windows Service or an ASP.NET Background Thread?

后端 未结 4 1911
悲哀的现实
悲哀的现实 2021-01-19 02:59

I am writing a web application in ASP.NET 3.5 that takes care of some basic data entry scenarios. There is also a component to the application that needs to continuously po

4条回答
  •  失恋的感觉
    2021-01-19 03:31

    Console application does not do well in this case. I wrote a TAPI application which has to stay in the background and intercept incoming calls. But it did it only once because the tapi manager got GCed and was never available for the second incoming call.

提交回复
热议问题