Tag: windows azure
-
Create Windows Azure Website in 6 Steps
In this post we will create a Windows Azure Website in 6 simple steps. Windows Azure Website is a new feature of Windows Azure and got introduced on 7th June. Step 1 Very first you need to Login to Windows Azure Management Portal. After successful login from the left panel, click on WEB SITES. Step…
-
First look of New Windows Azure Portal
I must say, I liked this new HTML5 based Windows Azure Portal. Once you login in Windows Azure Portal at the bottom you can find View the Preview Portal You will be prompted to take a tour of new portal. You will be getting dashboard as following, You can see details of all the Hosted…
-
How to create WCF REST Service and host in Windows Azure
In this post, we will create a WCF REST Service and host in Windows Azure. We will learn following things in this post Working with WCF Web Role Enabling REST on WCF Web Role Returning XML and JSON from REST service Deploying WCF Service Web Role to Windows Azure We need to host WCF Service…
-
Step by Step Guide to Create First Windows Azure Application
Target audience: Beginners in Windows Azure or Level 100 One can argue that why this step by step guide after so many years of Windows Azure? and why I wrote this article after my more than 80 articles on Azure? Answer is, when I started writing this article, my objective was very much clear in…
-
Creating Hello World Windows Azure Node.js Web Application
Node.js is enjoying much popularity and Glenn Block is helping us to bring it on Windows Azure. In this tutorial, I will walkthrough step by step to create your first Windows Azure Node.js Web Application. I have divided this tutorial in three parts as installing required SDK, creating Web Application and then publishing to Windows…
-
Windows Azure Storage Client Library for Windows Phone: Part 1
Windows Azure Storage Client Library allows you to perform operations on Windows Azure storage from Windows Phone. Using Windows Azure Storage Client, you can Perform operations on Table Perform operations on Queue Perform Operations on BLOB If you are not using Windows Azure Storage Client Library then to work with Windows Azure Storage you may…
-
Create Hosted Service using Windows Azure Management API
In this post I will discuss, how could we create Hosted Service in Windows Azure using Windows Azure Management API? To create Hosted Service you need to perform POST operation on the below URI. You need to change subscription id with your subscription Id. https://management.core.windows.net/<subscription-id>/services/hostedservices While making the request, Request Header must contain information as…
-
Step by Step guide on Federated Authentication in Windows Azure Web Role using Windows Azure App Fabric Access Control Service
In this article I will show you step by step demonstration of enabling Federated Authentication on Windows Azure Web Role using Windows Azure App Fabric Access Control Service. You are writing an application and want to make it open for users of all the identity providers. You want users of Facebook, Live, Google; Yahoo etc.…
-
Fetching name of all tables in Windows Azure Storage
To list all the table name from Windows Azure storage account, you need to call ListTable() function of CloudTableClient class. To start with first you need to add below namespaces. Then create a storage account as below, Make sure to put your own connection string to azure storage to parse. Next you need to create…