wddx

Consuming a WDDX REST-ish API with WCF

I've got some somewhat old school web services that I need to talk to. They are somewhat REST-like, in that they are called with regular GET and POST HTTP requests, and return WDDX-formatted data in the response body. The consumer code in this instance is .NET. Ideally, I'd like to use WCF to take advantage of all of its magic. The stic...