You typically create WCF proxy to run operations remotely. I came across a use case where I had to maximize
Continue reading »Category: WCF
Productivity: Auto generate WCF Service Contracts using T4 template.
The purpose of this T4 template is to auto generate WCF Service Contracts with appropriate ServiceContract, OperationContract (with Name for
Continue reading »BindingManager- How to read WCF Binding from configuration?
BindingManager reads the binding configured in the web.config and apply them at Endpoint. BindingManager is reading ServiceModel section from web.config
Continue reading »Apply or customize WCF behaviors at Runtime
BehaviorManager is designed to apply or customize WCF behaviors at runtime.BehaviorManager reads the behaviors configured in the web.config and apply
Continue reading »Custom Error Behavior by implementing IErrorHandler at WCF Service
Today, I am going to show how to handle errors (handled or unhandled by WCF service) at the application level.
Continue reading »Preserving Object Reference in WCF and Resolve KnownTypes Error at Runtime
By default object references are not preserved by the DataContractSerializer, Values of an object referenced multiple times is serialized multiple
Continue reading »