Objective In this article, I will show you how we can perform CRUD operation on AZURE table. This article is divided into two parts. In part 1, I am using local development fabric and storage. In next part, I will show you how can use AZURE table from Microsoft data center. Step 1: Create theContinue reading "Step by Step walkthrough on CRUD operation on Azure Table Part #1"
Win Visual Studio 2010 with MSDN subscription in 5 minutes
Winner Announced : Name:Mamta Dalal City: Mumbai, India. Congrats Mamta .... I hope you will take this and write more articles to help the community .. Closing date: 25th July 2010 Winner announced : 26th July 2010 [1 winners] In order to celebrate Visual studio 2010 and .Net 4.0 launch. Microsoft is giving away “VisualContinue reading "Win Visual Studio 2010 with MSDN subscription in 5 minutes"
PPT on Windows Azure to developer [Download]
Azure for Developers
Understanding Web Role and Worker Roles through images
Objective In this article, I am going to explain about Web Role and Worker role using images. Windows Azure mainly helps as a service 1. Storage 2. Computation 3. Mange the application. These three functions of Windows Azure , make sure application is 1. Running 2. Scalable 3. Secure 4. Maintainable 5. Reliable So ,Continue reading "Understanding Web Role and Worker Roles through images"
Hosting WCF service in Windows Azure and consuming in Window 7 phone app
Objective This article will give step by step walkthrough of hosting a WCF service in windows azure and then consuming that in windows7 phone application. Expected output Step 1 Open Visual Studio 2010 as an administrator. Select File -> New -> Cloud Service. Click on Windows Azure cloud service template. Give name of the cloudContinue reading "Hosting WCF service in Windows Azure and consuming in Window 7 phone app"
Video on creating WCF Service hosted in Azure and consuming in Window7 Phone App
Video on hosting WCF Service in Windows Azure
How to Video on creating first Application for Windows Azure
Walkthrough on Creating WCF Data Service (ODATA) and Consuming in Windows 7 Mobile application
Note : Now you can consume ODATA in very simpler way updated post can be read at below link https://debugmode.net/2011/06/11/consuming-odata-in-windows-phone-7-1-or-mango-phone/ Objective In this article, I will discuss 1. How to create WCF Data Service 2. How to remove digital signature on System.Data.Service.Client and add in Windows7 phone application. 3. Consume in Windows 7 phoneContinue reading "Walkthrough on Creating WCF Data Service (ODATA) and Consuming in Windows 7 Mobile application"
Video on consuming WCF Data Service (OData) in Windows 7 Phone Application
MainPage.Xaml <phoneNavigation:PhoneApplicationPage x:Class="ConsumingODATA.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:phoneNavigation="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Navigation" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="800" FontFamily="{StaticResource PhoneFontFamilyNormal}" FontSize="{StaticResource PhoneFontSizeNormal}" Foreground="{StaticResource PhoneForegroundBrush}"> <Grid x:Name="LayoutRoot" Background="{StaticResource PhoneBackgroundBrush}"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--TitleGrid is the name of the application and page title--> <Grid x:Name="TitleGrid" Grid.Row="0"> <TextBlock Text="Windows 7 Phone" x:Name="textBlockPageTitle" Style="{StaticResource PhoneTextPageTitle1Style}"/> <TextBlock Text="ODATA" x:Name="textBlockListTitle" Style="{StaticResource PhoneTextPageTitle2Style}"/> </Grid> <!--ContentGrid isContinue reading "Video on consuming WCF Data Service (OData) in Windows 7 Phone Application"