Details on changes from CTP -> Beta 1 of ASP.NET AJAX (aka Atlas)

Here’s a great document that details all the changes from CTP to Beta 1 as well as a comprehensive matrix of features that have been moved out of the “Core” and into the “Value-Add” library in Beta1 of ASP.NET AJAX. I am a big fan of the refactoring that has happened throughout the “Core” library. A great example is the creation […]

Collection properties need a setter implementation when using DataContractSerializer

I was having a problem with serializing a FaultException that had a custom details class that was a collection. Today I figured out that, when using the DataContractSerializer, you need to make sure you provide a setter implementation even for your collection based properties. Once again, this is a departure from the way that the […]

I’ve hit a snag with TransportWithMessageCredential over plain HTTP

So a couple days ago I posted an entry about how to implement a custom transport that allows you to send message credentials over plain old HTTP. Unfortunately when I rolled this into the test environment where I had all the “real” infrastructure in place I ran into a new problem. It appears that the […]