The API I'm trying to call requires that I do a POST but with an empty body. I'm new to using the WCF Web API HttpClient and I can't seem to find out the write code that would do a post with an empty body. I find references to some HttpContent.CreateEmpty() method, but I don't think that is for the Web API HttpClient code since I can't seem to find that method.

link|improve this question

50% accept rate
HttpContent.CreateEmpty was from the old HttpClient prototype that was part of REST Starter kit. Unfortunately there is no equivalent in the new HttpClient. – Darrel Miller Oct 27 '11 at 23:18
feedback

2 Answers

up vote 2 down vote accepted

Have you tried using e.g. StringContent or ObjectContent which derive from HttpContent?

link|improve this answer
Using StringContent with an empty string worked. Thanks! – Ryan Rinaldi Oct 27 '11 at 16:11
It looks like this is only in .NET framework 4.5? msdn.microsoft.com/en-us/library/… – dan Dec 28 '11 at 3:54
It will ship with WCF Web API but I think some of the "good parts" will make it into the framework itself. – Alexander Zeitler Dec 28 '11 at 7:33
Why isn't there any overload methods which does not require a HttpContent class? Should we at least provide something (even an empty string) to make a http post? – tugberk Jan 30 at 10:28
feedback

I think it does that automagically if your web method has no parameters or they all fit into URL template.

For example this declaration sends empty body:

  [OperationContract]
  [WebGet(UriTemplate = "mykewlservice/{emailAddress}",
     RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json,
     BodyStyle = WebMessageBodyStyle.Wrapped)]
  void GetStatus(string emailAddress, out long statusMask);
link|improve this answer
I'm trying to SEND an empty body. The HttpClient.Post() method requires an URI and a HttpContent object. I'm not what to pass as the HttpContent when I don't want to send anything. – Ryan Rinaldi Oct 26 '11 at 19:27
So you're not using WCF. That's even easier: ... HttpWebRequest request = (HttpWebRequest) WebRequest.Create("http://..."); request.Method = "POST"; HttpWebResponse respose = (HttpWebResponse)request.GetResponse(); ... you result in response – aloneguid Oct 26 '11 at 19:30
I'm using HttpClient, not HttpWebRequest. Using StringContent with an empty string worked. – Ryan Rinaldi Oct 27 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

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