WCF Tutorial
Learn Interview questions, Azure etc - Visit - www.Learn2Expert.net
Skip Navigation LinksHome No of Views: 1720219
WCF Tutorial Home

Home

Welcome to the WCF Tutorial

Welcome to my site about WCF tutorial. This tutorial will explain about WCF concepts, creating new service and lot more things in WCF. This is great network distributed system developed by Microsoft for communication between applications.



Latest Articles
WCF RIA Service
RIA Domain Service
Problems solved in RIA
Query/Update data process in RIA
How to create Silverlight- WCF RIA Service
RESTful Service
Create RESTful Service
JSON using WCF
Introduction to WCF 4.0
Custom Message Header
WCF Exception Handling in Silverlight
Two-Phase Committed Protocol
Transaction Propagation
Transaction Protocols








Tips!

  • Always create the service with Interface->Implementation format, mention the contract in Interface.
  • Define the service in Class library and refer the class library in Host project. Don’t use service class in host project.
  • Change the instance mode to per call as default.
  • Always catch exception using try/catch block and throw exception using FaultException < T >.
  • Logging and Include exception should be enable while compiling the project in debug mode. While in production deployment disable the logging and Include exception details.