What techniques do people use to "consume" services in the REST stile on .Net ? Plain http client? Related to this: many rest services are now using JSON (its tighter and faster) - so what JSON lib is used?
I bookmarked this blog post ages ago, although I've never tried it. Sounds like it might help you:
My approach was
Write some libraries and interfaces to serialize your objects into REST-compatible XML. You can't neccessarily just use the built-in serializers, because your service may not accept the same kind of XML that .NET wants to give you.
Example: When passing booleans to a Rails REST service,
"true"
gets unserialized astrue
, whereas"True"
(which .NET gives you) unserializes tofalse
.Write some libraries to do the HTTP, wrapping around the basic .NET
WebRequest
objects. You might get some mileage out of some third party libraries in this area as it tends to be more standard. I found some issues though, such as this lovely bug in the .NET framework, so I'm glad I stuck with the basics.