If I have a Web App (ASP.NET MVC) deployed in Azure and I also had a Web Job configured to run alongside the web app, my understanding is that the Web Job is an console application (or sorts) that runs and waits on message from a queue.
When a message arrives, can the WebJob call the WebApp using a local address:
as opposed to:
(1) can it be done? (2) Does it make sense to do?
Thanks!