WCF routing

Hello World routing sample

Bridging and Error Handling routing sample

Advanced Filters routing sample

Dynamic routing sample

Advanced error handling routing sample

Routing topic on MSDN — full coverage of services, contracts, filters, and scenarios

Routing Rules! Blog — the entire blog is about the routing service and the different scenarios it enables. Take a read through all the blog posts for sure.

Building a WCF Router, Part 1 on MSDN Magazine

Building a WCF Router, Part 2 on MSDN Magazine

 

Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF) Samples for .NET Framework 4
http://www.microsoft.com/en-us/download/details.aspx?id=21459
http://download.microsoft.com/download/1/5/9/159D6D71-7728-45D4-BC15-5DF1F2DDCD94/WF_WCF_Samples.exe

 

Self-signed certificates with WCF

Using a self-signed certificate with .NET’s HttpWebRequest/Response
Turns out, if you just want to disable certificate validation altogether, you can change the ServerCertificateValidationCallback on the ServicePointManager, like so:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };”
http://stackoverflow.com/questions/526711/using-a-self-signed-certificate-with-nets-httpwebrequest-response
How to accept a self-signed SSL certificate in a WCF client?
http://stackoverflow.com/questions/4977218/how-to-accept-a-self-signed-ssl-certificate-in-a-wcf-client

C# Ignore certificate errors?
http://stackoverflow.com/questions/2675133/c-sharp-ignore-certificate-errors