views:

49

answers:

3

Are there any .net REST libraries which support Windows Phone 7 and silverlight?

A: 

You don't need a library. REST is just based on the original intentions with the HTTP protocol, and that's supported by the classes in the .NET framework.

You can use the HttpWebRequest or WebClient classes to make requests.

Guffa
A: 

What, exactly, do you mean? Do you mean a library "helper" that can wrap up REST calls for you like RestSharp (which supports Windows Phone)?

Or do you mean something that allows the device to serve REST services (not going to happen since V1 doesn't support sockets, among other reasons)?

Or do you mean something altogether different?

ctacke
A: 

I've had a lot of success using Hammock especially when requiring something like OAuth.

Nigel Sampson