Objective This article will give a basic introduction of Dynamic Object in c# 4.0 DynamicObject class This provides a base class for specifying dynamic behavior at run time. This class must be inherited to use. This class cannot be instantiated. This class is inside namespace System.Dynamic This class implements IDynamicMetaObjectProvider This class enables to defineContinue reading "Working with Dynamic Object in c# 4.0 Part #1"
Creating message body by parsing document from Document Library and sending mail in SharePoint 2007
Objective This article will give an idea of, How to parse a document from Document Library and replace with dynamic values at run time. How to send mail in SharePoint using SPUtility class. Introduction of a real time problem to use above said features of SharePoint. Background There was a requirement in one of myContinue reading "Creating message body by parsing document from Document Library and sending mail in SharePoint 2007"
Cascading drop down column in a SharePoint 2007 List
Objective This article will show how to use codeplex project to achieve Cascading drop down columns in SharePoint list. This article will show how to achieve parent child relationship in column of SharePoint list. Step 1Download the project from codeplex. Choose WSP file to download. To download the project Click here Step 2 After downloadingContinue reading "Cascading drop down column in a SharePoint 2007 List"
Making Image Gray in SILVERLIGHT 3.0
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.jpgContinue reading "Making Image Gray in SILVERLIGHT 3.0"
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 userContinue 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'tContinue 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: CreateContinue 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 theContinue 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?Continue 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 IContinue reading "NTLM and Windows Authentication on WCF service"