user1346486
user1346486

Reputation: 1

Windows service implementation in MVC3

I am working on a MVC3 application. I want to call a function when the date is expired. I would like to use the windows service for this. Can anyone tell me steps to implement the window service in a MVC3 application? I am also open to any other options to call a function at a certain date.

Upvotes: 0

Views: 459

Answers (3)

Gyan Chandra Srivastava
Gyan Chandra Srivastava

Reputation: 1380

you can use console application and set it with window Service or create Scheduler (crone) by task manager might be it will helpyou

and its going to more easy to us if you more describe what exact-ally you are looking for

Upvotes: 0

Nitin Bourai
Nitin Bourai

Reputation: 458

you can implement the WCF services as a Windows service and create a call back in your Mvc3 application layer take a look at this link for Creating Duplex Services

http://msdn.microsoft.com/en-us/library/ms731064.aspx

Upvotes: -1

jgauffin
jgauffin

Reputation: 101150

Not possible. the application pool dies after a while. Create one MVC3 application and one Windows service.

Upvotes: 4

Related Questions