Threading or Services
-
Hi, We are having a web application which is quite big and used by around 300 super users for managing around 5000 staffs. Now we are implementing SMS functionality into the application which means the users will be able to send and recieve sms. Every two minute the sms server of the third party is pinged to check whether there are any new messages. Also sms are hold in queue and send every time interval of 15 to 30 minutes. I want this checking and sending process to run in the background of the application all the time, even if the user closes the browser window. I need some advice on how do i do this ? Will using thread will achieve this or do I need to create a windows service for it or are there any other options ? Regards Vinay
-
Hi, We are having a web application which is quite big and used by around 300 super users for managing around 5000 staffs. Now we are implementing SMS functionality into the application which means the users will be able to send and recieve sms. Every two minute the sms server of the third party is pinged to check whether there are any new messages. Also sms are hold in queue and send every time interval of 15 to 30 minutes. I want this checking and sending process to run in the background of the application all the time, even if the user closes the browser window. I need some advice on how do i do this ? Will using thread will achieve this or do I need to create a windows service for it or are there any other options ? Regards Vinay
I guess you use some DB to store this SMS info, then Windows Service will do the job.
Arun Jacob My Technical Blog : Code.NET