Objective This article will explain; how to solve the caching problem in IE while making call to for REST enabled WCF service. Client might be a SILVERLIGHT client or AJAX client. Background Read my other articles on WCF REST service for better understanding of this article. Is REST service and a web page is same? … Continue reading Solving Caching problem of IE for WCF REST service
Month: December 2009
NTLM and Windows Authentication on WCF service
Objective This document will explain various combinations of IIS and WCF Ntlm/Windows authentication settings. What is difference between NTLM and WINDOWS authentication in WCF? Windows authentication = authentication in NTLM + authentication in Active Directory NTLM authentication = authentication in only NTLM IIS configuration For all scenario IIS is configured for Windows authentication. What I … Continue reading NTLM and Windows Authentication on WCF service
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 Studio … Continue 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. … Continue 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 for … Continue 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 Dynamic … Continue 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 Light … Continue 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 at … Continue 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 verb … Continue 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 the … Continue reading Introduction to Silver Light 3.0 Navigation