In this note we will refer Window Azure as WA, Windows Azure Platform as WAP.
WA is a platform provided by Microsoft to utilize the cloud computing power. In WAP we can deploy our web applications (web role in terms of WA) and also background running applications (worker role in terms of WA). Note that worker role are just the background running applications and the don’t have any kind of UI.
Now for some time we are going to keep the “Worker Role” on one side and focus on “Web Role”
Now when we say a web role, we mean here an ASP.Net Web Application. I would like to tell you that WAP supports MVC Applications and many others, but here we are talking about only Simple ASP.Net Web Application.
Here we will take a asp.net application which interacts with sql server database.
For running our web application successfully in WAP, we will have to follow the below given steps:
- Creating a WA project for our asp.net application.
- Migrating the local sql server database to sql azure.
- Deploying the WA project which we created in first step to WAP.
- Making web application accessible to external world.
We will see all these steps in detail. After completing all the four steps you be able see our web application running successfully on WAP.
In the next note we will see [Step 1 – Creating a Windows Azure project for our ASP.Net application].
