Logging and Tracing WCF Soap Messages
Today my team lead shoves me into an R&D to trace and log WCF soap messages. Then I have started reading different blogs post and books as well. After reading couple of useful blog specially my...
View ArticleGetting Started with WCF 4.0 Routing Service
Routing is the process of picking and directs messages to the proper endpoints through transitional. That is, the purpose of the Routing Service is to receive messages from clients and frontward those...
View ArticleWCF 4.0 Configuration Updates
Windows Communication Foundation (WCF) is a framework for building service-oriented applications. It allows developers to configure services using configuration files or code. Though the configuration...
View ArticleWCF 4.0 Discovery
WCF services can broadcast their availability to the network using a multicast memo or to a discovery proxy server. Client applications can pursuit the network or a discovery proxy server to discovery...
View ArticleHTTPS Communication in WCF using Self-sign Certificate
When working with distributed application, securing communication between the client and the service is a very vital issue. Windows Communication Foundation provides the facility of transfer security...
View ArticleDuplex Service in WCF
In WCF, a service can call back to its clients. That is to say that, at the time of call back, the service behaves as a client as well as the client becomes the service and, the client must assist...
View ArticleTask-based asynchronous operation in WCF
Though Performance blocking and Sluggishness are the tailbacks for any application, we can easily overcome these bottlenecks by using asynchronous programming. But old-style practice for asynchronous...
View ArticleWebSocket in WCF
WebSocket, like as TCP, is a bi-directional, full-duplex communication channel over a single TCP connection but it shortens abundant complications close to bi-directional communication as well as...
View ArticleIAsyncResult asynchronous operation in WCF
We are very well-versed that WCF service operations can be implemented asynchronously or synchronously .And the clients can call service operations synchronously or asynchronously since asynchronous...
View ArticleEvent-based asynchronous operation in WCF
As a series of article, this time, I am going to introduce you with Event-based asynchronous communication. I have used here same service operation of IAsyncResult asynchronous operation that I have...
View Article