by David Kiff
23. September 2009 15:25
I found myself repeating the same old try..catch logic within our WCF services. Quite often we would catch specific exceptions and re-throw them as fault exceptions, whereas the rest required logging and re-throwing.
I decided to create a wrapper around the class responsible for invoking the operations. That will allow us to add a generic try..catch around every operation, that we apply the behaviour to.More...
by David Kiff
22. September 2009 11:27
This blog post will describe how to secure your WCF services that are hosted within IIS 7.0, using Secure Sockets Layer.
Secure Sockets Layer (SSL) is a protocol primarily used for encryption of data between two parties, running at the Transport Layer.More...
by David Kiff
28. August 2009 15:40
When creating a WCF service that is hosted in IIS using the .svc file, you need to specify the Service attribute in the directive. The value of this service attribute is the fully qualified type name of service file (the one that contains the implementation of the service). More...