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 couldContinueContinue reading “Per-Session Instance Management in WCF”

Single Instance Management in WCF

Objective This article is part # 3 of Instance Management in WCF. This article will explain about Singleton Service Instance mode. This article will give theoretical introduction and explanation of coding sample also. It will also discuss about various disadvantages of Singleton Service Instance mode and its potential place of uses. Part # 1 ofContinueContinue reading “Single Instance Management in WCF”

Streaming in WCF

Objective In this article, I am going to explain various aspects of streaming of messages in WCF. For example; I/O Streams Streaming and Binding Streaming and Transport channel Stream management Why we need Streaming? In WCF any receiving message is delivered only once entire message has been received. What I mean here is that firstContinueContinue reading “Streaming in WCF”

Transport level Security in WCF

Objective  This article will give a very brief introduction of transport level security in WCF When we say security at the transport layer, then the main concern is with the integrity, privacy and to certain extent authentication of the message as it travels along the wire.  In WCF, the secure transports available for use areContinueContinue reading “Transport level Security in WCF”

Data Contract Hierarchy in WCF

Objective  This article will explain Data Contract hierarchy How base class and sub class are getting exposed in WCF? What is Known Type attribute Mixing of sterilization and Data Contract Data Contract Hierarchy   If any class in hierarchy is not attributed as [DataContract] or [serilizable] then InvalidDataContractException will occur at service run time  WCFContinueContinue reading “Data Contract Hierarchy in WCF”