问题
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.
来源:https://stackoverflow.com/questions/31478753/how-to-pass-object-from-webrole-cs-to-the-controller-of-mvc