.Net framework to manage background running processess on seperate machines

前端 未结 4 1255
旧巷少年郎
旧巷少年郎 2021-01-05 04:42

I am having an asp.mvc application which resides on a server.From this application, I want to start a process which is a bit long-running operation and will be resource inte

4条回答
  •  自闭症患者
    2021-01-05 05:20

    Push messages to MSMQ from your MVC app and have your windows services listen (or loop) on new messages entering the queue.

    In your MVC app create a ID per message queued, so make restful API calls from your windows services back to the mvc app as you make progress on the job?

提交回复
热议问题