Objective This article will show; how to make an Image Gray in SILVERLIGHT 3.0. This is a very basic article showing ; how to make an image gray in SILVERLIGHT. Follow the Steps Create a new SILVERLIGHT application. Design the XAML page Create two rows In first row put an Image using Image control. A.jpgContinueContinue reading “Making Image Gray in SILVERLIGHT 3.0”
Author Archives: Dhananjay Kumar
Behavior in SILVERLIGHT 3.0
Objective This article will give a basic introduction of BEHAVIOR feature in SILVERLIGHT3.0. I will also walkthrough to create a custom behavior. What is Behavior in SILVERLIGHT 3? According to definition given in the product introduction of SILVERLIGHT3 A Behavior is in essence a reusable piece of interactivity that can be applied directly to userContinueContinue reading “Behavior in SILVERLIGHT 3.0”
Dynamic type with Reflection in debug mode
Objective This article will give simple debug mode explanation on how Reflection and Dynamic type works. Note: Read my previous article on dynamic type here Dynamic Type Let us create a very simple class called Student. public class Student{ public void Print(string Name) { Console.WriteLine(“Student Name is ” + Name); }} Now say, you don’tContinueContinue reading “Dynamic type with Reflection in debug mode”
Returning Large volume of records from SOAP based WCF service
Objective In this article I will explain; How to return large volume of data (around 50000 records) from SOAP based WCF service to any client. I will show; what service configuration setting and client configuration setting is needed to handle large volume of data returning for WCF service. Follow the below steps, Step 1: CreateContinueContinue reading “Returning Large volume of records from SOAP based WCF service”
CRUD Operations on Windows Azure table and Azure Storage
Objective This article will give a walkthrough on how to perform a CRUD operation on Azure table. Step 1 Creating the Create a new Cloud Service Application. To create, File -> New -> Projects -> Cloud Services. Select ASP.Net Web Role. I am giving CRUDSample to the name of the project and CRUDWebRole to theContinueContinue reading “CRUD Operations on Windows Azure table and Azure Storage”
Solving Caching problem of IE for WCF REST service
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?ContinueContinue reading “Solving Caching problem of IE for WCF REST service”
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 IContinueContinue 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 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”