Miscellaneous Debris
Avner Kashtan's Frustrations and Exultations
-
Creating CustomBindings programatically
I had another revelation earlier, when going over Nicholas Allen's explanation of the GetProperty<T> method and BindingContexts:The Binding objects supplied by the WCF framework are only a … more
-
Aggregated Interface Implementation
I've been struggling around the aggregation used in WCF's Binding object model, as implemented in the GetProperty<T> method (see relevant discussions with Nicholas Allen from the WCF team here … more
-
WCF: Navigating the Binding maze
A few days ago I ranted a bit about the Binding object model in WCF and how restrictive it feels when I want to imperatively describe my service bindings without being tied down to a specific … more
-
WCF Serialization Part 2d: A Solution, a Conclusion and a Contribution
This is the last part of my continuing saga of serializing dictionaries over WCF and beyond.Quick recap: While WCF allows me to serialize an IDictionary easily, trying to serialize that dictionary … more
-
WCF Serialization Part 2c: Hacking the NameValueCollection (unsuccesfully)
As we mentioned here and here, I've been struggling to get the NameValueCollection object to pass through WCF serialization. Please read the first two posts first for some context. In the … more
-
WCF Serialization Part 2b: WCF Collection Serialization
As we mentioned here, I'm currently struggling with getting WCF to serialize my NameValueCollection object on a service operation. The previous post goes over the general details, while here I' … more
-
WCF Serialization Part 2a: NameValueCollection Denied!
As we all know, IDictionaries aren't serializable. This is has been a cause of much concern and consternation throughout the years. Throughout these trying times, however, we had one shining … more
-
WCF Serialization part 1: Interfaces, Base classes and the NetDataContractFormatSerializer
One of WCF's goals is interoperability with standard protocol stacks, like WSE or other WS-* implementations. This led, I am told, to the design of WCF's default object serializer - the … more
-
WCF and Non-polymorphic bindings
I've been using WCF for the past few months and on the whole, I think the programming model works. I'm getting to really like the extensibility model and the whole deal seems to click … more
-
UI Usability - case studies and recommendations?
Doing work on our WinForm application, we find ourselves having to make choices - too many choices - about the UI. We don't have access to professional UI engineers, unfortunately, and we make … more