At my current company, we are researching the azure tree to transfer some of our old systems to the cloud. We have the following systems, which are all installed at the customers location.
Database (SqlServer) Processing Server (Winform Application) Various Clients (Winform Applications)
What we need to do is convert the processing server to the ASP.NET web API and create a new task scheduler as a kind of long-term process that will poll the database and send requests to the processing server.
All this is wonderful, but we are not sure how to do it.
We are pleased to use the service for the task scheduler and the ASP.NET web API for the server, but we do not know how to best manage the installation.
What we would like to do is to have one WebRole with the scheduler and server for one large client and one WebRole with the simultaneous launch of several schedulers and servers.
So to the question,
Is it possible? Can you run many elements in a web role?
source share