Add Azure Storage to an Azure Application

We previously looked at Creating an Azure App in Visual Studio and then Deploying the App on Azure . The application we built was a very simple one requiring no storage, we now turn our attention to extending the demo application to include Azure Storage. For this example we will use the blob storage in [...]

Read more

Publish and Deploy an Application on Windows Azure

In a previous article we looked at how to build a basic Azure application using Visual Studio. We now continue with how to publish and deploy that the application. For this demo we will be deploying a Web Role on Azure. In the Visual Studio Solution Explorer right click the cloud project and select Publish… [...]

Read more

Building an Azure Application – A Case Study (Part 1)

Overview Designed for use by the self-employed or any individual user, Azure Time Clock is a Windows Azure application that gives the user the ability to clock in and out of the application to keep track of their time worked. The active user count and processing use can vary greatly at any given time with [...]

Read more

Building an Azure Application – A Case Study (Part 2)

Continuing on from Part 1 , the concluding part of the case study looks at creating the UI, persisting the data and integrating the various parts of the project. Creating Web Role to Display the Time Clock and Process User Input Add a reference to the storage client API assembly. Right-click the AzureTimeClock_WebRole project node, [...]

Read more

Getting Started Building a PHP Azure App

If you are a serious Windows developer  you will by now have come across Windows Azure Platform. Windows Azure Platform, which is an Internet-scale cloud services platform hosted in Microsoft data centers, is currently (as of January 2010) open to developers and beta testers and will go into a pay-based model starting from February 2010. [...]

Read more

Azure Tutorial – Building a ‘Hello Azure’ App in Visual Studio

The first thing to do is download and install the Azure Tools & SDK , this installs the Visual Studio templates as well as a simulated Azure environment on your local machine.  To run the development environment from Visual Studio, you will need to run the Visual Studio as an admin. In Visual Studio, start [...]

Read more

Configuring a Windows Azure Cloud Service Project

When a Windows Azure Project (such as a WebRole) project is created, Visual Studio automatically creates two projects – the actual application (for example a WebRole web application) and a CloudService project which controls and defines how the application will run on Azure. In the CloudService project there are two xml configuration files, ServiceDefinition.csdef and [...]

Read more

Windows Azure – First Impressions [Blog]

I have to admit I’m really excited about Azure – I love cloud computing, it frees developers from all the IT duties like load balancing, server maintenance etc.The ugly truth is that most developers have absolutely no clue about the IT infrastructure their applications run on. Applications are built on the framework and then dumped [...]

Read more

What are the Differences Between an Azure Web Role and an ASP.NET Project [FAQ]

An Azure Web Role is very similar to the traditional ASP.NET project. However there are three differences in the default setup: In an Azure Web Role, references are added to 3 assemblies. Diagnostics which contains all the logging and diagnostics classes, ServiceRunTime which allows access to the configuration settings and recycling of roles etc, and [...]

Read more

URL ReWriting In Azure [FAQ]

URL rewriting is fully supported in Azure and works in the same manner as IIS7 URL rewriting.For Azure URL rules are placed in the node in the web.config file and rule configurations are wrapped in the tag:

Read more