What is the best way to access a Rails 3 REST-ful web service, developed using standard Active Resource techniques including HTTP authentication over SSL, from a VB.NET consumer?
Consumer can be .NET 4.0 if that is necessary.
Are there any .NET libraries yet that can bridge the gap?
I have already come across links like this (http://aspguy.wordpress.com/2008/10/10/dealing-with-rest-web-services/), which use Linq.XML or XML.XPath to parse responses and generate post data for REST-ful web services. I have in fact coded a system similar to the one at that link, except for a different geo-coding provider and using XPath instead of Linq.
I'm looking for something more like Rails Active Resource, rather than hand-coding the XML or JSON encoding/decoding of every single data model?