My name is Ed Pinto. I work on the team delivering the Windows Communication Foundation (WCF). Part of my responsibility is to focus on the usability of WCF. In an effort to make the transition to the Nov/05 CTP a little easier we've put together a list of breaking changes that describes changes you are most likely to run into when porting your app. Feel free to contact me, or ask questions on the WCF forum.
Major changes
Changing Configuration:
You no longer configure a uniquely named security element within a binding configuration. You set the security mode (usually one of Transport, Message, or TransportWithMessageCredential) using binding\security\@mode. Depending on the binding and the selected security mode, you configure the binding\security\message element or the binding\security\transport element.
In the same way, reliableSession is a standard element available under most bindings.
The following is a sample of new configuration:
Here is a sample client config:
For client code, your best bet is to rerun svcutil.
Namespaces
Detail
Detailed API change reports are available here on Omri's blog. They cover:
These reports are not intended for end to end consumption, but rather they offer a reference to help you decipher changes when you know the name of an API in the Beta1, the PDC, or the Nov/05 CTP build.
Update Dec 14, 2005: Added link to detailed list.
Update Dec 20, 2005: Corrected InstanceMode.Shared to be InstanceMode.Shareable