CRUD operation on Windows Azure table storage as WCF Service

You may have come across requirement of performing CRUD operation on Windows Azure table storage many times. If you have encapsulated functions performing CRUD operation on Azure Table Storage as operation contract of WCF Service then any type of client can work against azure table storage. You may always want to architecture your application asContinueContinue reading “CRUD operation on Windows Azure table storage as WCF Service”

Uploading Stream in AZURE BLOB

In this post I will show you to upload stream to Azure BLOB. Set the Connection String as below,   Function is as below,   You need to set required content type. If you are uploading image then content type would be like below,   To use this function you need to pass , PublicContinueContinue reading “Uploading Stream in AZURE BLOB”

Downloading and saving a File from Windows Azure BLOB storage

In this post I will show you to download a file from Azure BLOB. Set the Connection String as below, Function to download and save file is as below, you need to pass Connection string to BLOB storage Public Container name BLOB name or file name Thanks for reading. I hope this post was useful

Fetching Web Roles details using Windows Azure Management API

If you are writing some tool to manage Windows Azure portal then fetching information about Roles may be frequent requirement for you. In this post, we will discuss the way to Fetch below information about a Web Role or Worker Role using Windows Azure Management API. RoleName InstanceName InstanceStatus Any client making call to AzureContinueContinue reading “Fetching Web Roles details using Windows Azure Management API”

Fetching Hosting Services Name using Windows Azure Management API

Windows Azure Management API enables you to manage Azure subscription through codes. In this post, I will show, how you could list hosted services inside your subscription through code ? Windows Azure Management API is REST based API and allows you to perform almost all management level tasks with Azure subscription. Any client making callContinueContinue reading “Fetching Hosting Services Name using Windows Azure Management API”