-
Recent Posts
Archives
- April 2012
- March 2012
- February 2012
- December 2011
- October 2011
- September 2011
- August 2011
- June 2011
- May 2011
- February 2011
- January 2011
- December 2010
- September 2010
- August 2010
- June 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- June 2009
- January 2009
- December 2008
- October 2008
- September 2008
- August 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- November 2007
- September 2007
- August 2006
- January 2006
- December 2005
- November 2005
Categories
Meta
Category Archives: WCF
System.ServiceModel.ServiceActivationException when EnsureCertificateCanDoKeyExchange (netTcpBinding only)
This was a strange problem. I had a service with two endpoints, one with basicHttpBinding and one with netTcpBinding, both using transport security with certificates. If I tried to browse the service using IE I got a ServiceActivationException, and looking … Continue reading
Posted in WCF
Leave a comment
Securing a WCF Service in Windows Azure with SSL
It is easy to find articles on how to create https (SSL) endpoints in Windows Azure services, e.g. this one. But I didn’t find information on how to configure the actual service, so I had to experiment. Here is a … Continue reading
Posted in WCF, Windows Azure
3 Comments
Using a WCF Custom Instance Provider
I recently developed a couple of WCF services that I wanted to share some common data, which I stored to and read from an XML file using standard serialization. (I didn’t want the trouble of setting up a database and … Continue reading
Posted in WCF
Leave a comment
System.ServiceModel.CommunicationException: The socket connection was aborted.
I recently encountered this misleading error from WCF: System.ServiceModel.CommunicationException: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. … Continue reading
Posted in WCF
Leave a comment