Author Contact Detail in ASP.Net MVC

Objective The Core purpose of this article is demonstrated to perform CRUD operation on a database in ASP.NET MVC Framework. See my other articles on ASP.NET MVC Framework to , get an understanding of different components of framework. My articles could be found Introduction Here Output Caching Here About Controller here SilverLight in MVC FrameworkContinueContinue reading “Author Contact Detail in ASP.Net MVC”

Action Filter in ASP.Net MVC Application

Objective This article will give an introduction of Action Filter in ASP.Net MVC framework. This will also explain how to create a custom Action filter. Action Filters in ASP.Net MVC framework Action filters are attribute This could be applied on a particular Action This could be applied on a Controller. This modifies the way ActionContinueContinue reading “Action Filter in ASP.Net MVC Application”

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 DynamicContinueContinue 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, customizingContinueContinue 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 ofContinueContinue 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 readContinueContinue 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 notContinueContinue 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 typeContinueContinue 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 simpleContinueContinue 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 detailContinueContinue reading “Instance Management in WCF”