What's the easiest/best way to consume a RESTful service from a .NET client application using the .NET 4 Client Profile? Everything I have found ends up pushing me towards the full framework:

  • WCF REST Starter Kit. HttpClient class requires full framework.
  • WebChannelFactory<> is in System.ServiceModel.Web, now removed from the Client Profile.
  • WCF Data Services Client Library is in System.Data.Services.Client (not in the Client profile either)

Is WebClient in System.Net my only option?

link|improve this question

60% accept rate
Have you looked at this? support.microsoft.com/kb/307023 – James Black Jul 12 '10 at 19:31
I'm pretty sure WebClient is a wrapper for the WebRequest class used in that link. – karl.r Jul 12 '10 at 19:35
What part of HttpClient requires the full framework? Is it the reference to System.Web? I'm curious because the only reason for that is one call to System.Web.HttpUtility.UrlEncodeToBytes – Darrel Miller Jul 12 '10 at 22:58
Hmm, yes it's just that one call. – karl.r Jul 13 '10 at 1:10
@ckr When I ran into that problem I found that Mono had an nice drop in replacement. If you get my drift :-) koders.com/csharp/… – Darrel Miller Jul 13 '10 at 17:27
show 1 more comment
feedback

1 Answer

You can use Hammock for REST (http://hammock.codeplex.com), it supports the Client Profile.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.