Step by Step walkthrough to host WCF service in Windows Azure

Objective This article will give step by step walkthrough of hosting a WCF service in windows azure. Note: Before reading through this walkthrough see this http://djoncloud.cloudapp.net/DjService.svc . We are going to host this service in this walkthrough. Prerequisite VS 2010 Beta Windows AZURE SDK should be installed on the system. Step 1 Open Visual StudioContinueContinue reading “Step by Step walkthrough to host WCF service in Windows Azure”

Step by Step walkthrough to create first application for cloud (Windows Azure)

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 cloud service. After creating the cloud service select the type of role. There are many roles to choose from. For our purpose, we will choose ASP.Net Web Role.ContinueContinue reading “Step by Step walkthrough to create first application for cloud (Windows Azure)”

WINDOWS authentication on REST enabled WCF service

Enabling windows authentication on a REST enabled service is relatively easier task than it’s appear. To test that windows authentication is enabled successfully or not use other browser than Internet explorer because IE will automatically do an NTLM negotiation with domain credentials. So when REST service is running in IE, it is not prompting forContinueContinue reading “WINDOWS authentication on REST enabled WCF service”

Dynamic Service and End Point Discovery feature of WCF 4.0

This article is 1st part of multi series article on WCF 4.0. This article will list all the new feature of WCF and also will explain in detail Dynamic Service and End Point Discovery feature of WCF 4.0. What are the new in WCF 4.0? I am listing here, new features in WCF 4.0 DynamicContinueContinue reading “Dynamic Service and End Point Discovery feature of WCF 4.0”

Rich Text Box in Silver Light 4.0

Objective In this article, I am going to show how to work with Rich Text box in Silver Light 4.0. I will show how to inline buttons and image inside rich text box. How to make text box as read only. How to change font of selected text. I have created a basic Silver LightContinueContinue reading “Rich Text Box in Silver Light 4.0”

REST service on JSON Message format

Objective How to create REST service for JSON request and response format. How to create SilverLight Client, which will consume a REST service on JSON data format. How to POST data in JSON format from SilverLight client.   Working explanation Here, I am trying to insert data in static list and fetch it back atContinueContinue reading “REST service on JSON Message format”

CRUD operation on a REST WCF service

This article will explain step by step, how to perform CRUD operation on a database using ADO.Net Data Service and then how to expose CRUD operations as REST enabled WCF service to the client. This will also give explanation, how to consume REST service at client side. This article will perform the entire HTTP verbContinueContinue reading “CRUD operation on a REST WCF service”

Introduction to Silver Light 3.0 Navigation

Objective In this article , I will show how to work with Silver Light Navigation framework. Create a Silver Light Application by selecting Silver Light application from project template. And follow below steps. Step 1 Adding references Add below references to Silver Light application. System.Windows.Control System.Windos.Control.Data System.Windows.Control.Navigation Step2 Adding namespaces Open MainPage.Xaml and add theContinueContinue reading “Introduction to Silver Light 3.0 Navigation”

Element to Element Binding in Silver Light 3.0

Objective This article I am going to discuss new feature of SilverLight3.0 called Element to Element Binding. I will discuss three samples to understand Element to Element Binding. Example I will take an example to explain Element to Element binding. I will bind value of slider control to text of a text block. First IContinueContinue reading “Element to Element Binding in Silver Light 3.0”

File Handling in Isolated Storage in Silver Light

Objective This article will explain, How to create a text file in IsolatedStorageFile of a SilverLight 2 application. How to write into a text file in IsoltaedStorageFile. How to read a text file from IsolatedStorageFile. How to delete a file from IsolatedStorageFile. Step 1 Create a SilverLight application. By selecting File->New->Project->SilverLight-> SilverLight Application.Design the XAMLContinueContinue reading “File Handling in Isolated Storage in Silver Light”