How to pass object from webrole.cs to the controll

2019-08-22 17:25发布

问题:

I am working on web role in the Azure cloud service. Basically my web role is an MVC application and how can I make the controller in MVC communicate with the webrole.cs class. For example, in the run() method in webrole.cs I have received a message and I want to pass it to the MVC controller, how can I do that? Any help is appreciated!

回答1:

You'd better use a azure service bus queue to do that. Send a message on Run, and take the message from queue in your mvc app.