Dynamic Data Part# 2

Objective This is Part#2 of ASP.Net Dynamic Data article series. This article will give introductions of different scaffold templates. This article will explain how to customize the templates also. This article is containing three samples which is demonstrating, how to update the default templates. We could customize the templates given as default with ASP.Net DynamicContinue reading "Dynamic Data Part# 2"

Dynamic Data Part #1

Objective: This is Part#1 of Dynamic Data article series. This article will give an introduction of Dynamic data and how to create a very basic data driven web application on North wind database using Dynamic data feature of ASP.Net 3.5 extension. Introduction It is a feature of ASP.Net 3.5 Extensions. It allows easily building, customizingContinue reading "Dynamic Data Part #1"

Creating XML Tree from Scratch through LINQ

Objective: This article is going to explain, How to create XML Tree using LINQ? This will be explaining Functional Construction way of creating XML tree. There are three samples given in this article. One for basic XML tree construction, one to construct from array of objects and last to construct XML tree from content ofContinue reading "Creating XML Tree from Scratch through LINQ"

Creating REST Service step by Step (A Simplest approach)

Objective This article will give a step by step visual explanation of how to create a REST enabled WCF service. Back Ground I have written before also REST enabled service. I was success to create REST service but now I realized that was the bit complex way. To have an understanding of REST service readContinue reading "Creating REST Service step by Step (A Simplest approach)"

One Way Operation in WCF

Objective This article will discuss about One Way Operations in WCF. I am also going to explain One Way Operation with Session full service pros and cons. Why we need One Way Service? There might be requirements where Service's Operation is not going to return any value. And at the same time client also notContinue reading "One Way Operation in WCF"

Hosting Options in WCF

 Objective This article is targeted to very new WCF developer. This will explain different Hosting options. Hosting of WCF Service  WCF service cannot exist in Void. Every WCF service must be hosted in a Windows process called the Host process.    Service Explanation  We are going to use WCF service listed below for all typeContinue reading "Hosting Options in WCF"

Channel Fault Handling at WCF Client

 Service Exception Handling and Channel Fault handling at client side in WCF Objective  In this article, I will show different approach to deal with service side exception and channel fault at client side. I will do a comparison study between various approaches and I will provide best approach also. Service  Consider the below very simpleContinue reading "Channel Fault Handling at WCF Client"

Instance Management in WCF

Instance Management is a technique to decide, which SERVICE INSTANCE handles which CLIENT REQUEST and when? This is a service side implementation detail. This is useful to decide scalability, performance, durability, transactions and queued calls.   There are three instance management techniques in WCF.   BEHAVIOR Instance management is a service side activation implementation detailContinue reading "Instance Management in WCF"

Per-Session Instance Management in WCF

Objective This article is part # 2 of Instance Management in WCF. This article will explain Session Full Instance management service. This will explain different Session Mode at Contract level. This will explain Per-session service also. This article will be explaining Session Full Service with a code also. Part # 1 of this series couldContinue reading "Per-Session Instance Management in WCF"