I have a REST webservice that I need to consume in C#. I need support for more than just GET requests though. I need everything that is done by REST including GET, PUT, POST, and DELETE. What is the best way of interfacing with this? I do not see anything for HTTPRequest to be able to do POST or anything other than GET unless you construct your own headers(which I prefer not to)
Is there some easy and lightweight way to fully consume REST webservices in C#?
Right-click on the REST element and select Consume REST API.... In the displayed dialog, choose Add Single Method. Fill the information about the Method URL. You can include parameters between braces in the URL for the method's input parameters.
Similarly, the act of consuming or using a REST API means to eat it all up. In context, it means to eat it, swallow it, and digest it — leaving any others in the pile exposed.
The first REST API request in a session must be a sign-in request. This is a POST request that sends the user credentials in the body of the request. Because this is a POST request, the request must include the Content-Type header. You can send your the body of the request block as XML or JSON.
Check out the series of screencasts on WCF REST up on Channel 9:
http://channel9.msdn.com/tags/REST%20Starter%20Kit%20endpoint%20screencasts/
There's a great one amongst those called Consuming REST services with HttpClient which should give you a nice step-by-step instruction on how to do all of this.
Also check out the WCF REST Developer Center on MSDN for more articles, blog posts, and tutorial on WCF and REST.
The HttpClient in the Microsoft.Http namespace that comes with the WCF Rest Starter kit is very helpful.
Aaron Skonnard from Pluralsight created several articles and screencasts highlighting the HttpClient.
There are several more resources that he posted to the Pluralsight blog in March 2009 covering the HttpClient.
You could take a look at the REST Starter Kit on CodePlex.
HTTPRequest is the request currently processed in a ASP app.
To make outboud HTTP REST requests, use the HttpWebRequest class. It has properties like Method (POST, PUT, DELETE) and you can write your payload into the request stream returned by GetRequestStream (or its async counterpart for high performance).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With