When using the 3.5 version of the compact framework it is possible to connect with wcf services. This is because the CF 3.5 contains a limited subset of the wcf technology. There are several blog posts listing the wcf capabilities in CF e.g.: http://blogs.msdn.com/andrewarnottms/archive/2007/08/21/the-wcf-subset-supported-by-netcf.aspx
We were researching for a mobile client to connect to a wcf [...]
Archive for the ‘WCF’ Category
Compact framework WCF, Disco files, netcfsvcutil
Posted in .net 3.5, .net Compact Framework, IIS, WCF on November 6, 2008 | No Comments »
MSMQ Message priority
Posted in .net 3.5, MSMQ, Visual Studio .Net 2008, WCF on October 22, 2008 | No Comments »
In my recent development I’ve been using msmq to store messages that can’t reach a wcf service when it’s not available. I was setting the Message (System.Messaging) property Priority so that the queue would prioritize the incoming messages.
However when I looked at the queue all the messages their priorities where 0 or “Lowest”. It seems [...]
WCF: msmqIntegrationBinding
Posted in .net 3.5, Visual Studio .Net 2008, WCF on October 22, 2008 | No Comments »
Today I discovered the msmqintegrationbinding in the windows communication framework.
This binding is especially to allow wcf services to process message that are put in a message queue by some legacy program. The advantage of this is that you can do this without the need to change the legacy client.
If you want more information on how [...]
Exception serialization & WCF
Posted in .net 3.0, WCF on January 19, 2007 | 1 Comment »
I was helping a colleague of mine this week with some exception handling in WCF. The problem we were facing was that when we send a faultexception we lost important information about the original exception like the innerexceptions. Although it may not be best practice to send all of the exception information to the client [...]
