I have a WCF service sending stuff over to an MVC application.
The WCF service uses RestSharp, to do the following:
LoggingEventData data = loggingEvent.GetLoggingEventData();
IRestClient client = new RestClient(Config.Wcf.OvermindApi.BaseUrl);
IRestRequest request = new RestRequest(Config.Wcf.OvermindApi.PutLog);
request.RequestFormat = DataFormat.Json;
request.AddBody(data);
client.PutAsync(request, (response, handle) => { });
On the client side of this scenario, I have the following:
[HttpPut]
public ActionResult Log(LoggingEventData data)
{
Stream stream = Request.InputStream;
string json = stream.ReadFully();
var loggingEvent = new LoggingEvent(data);
log.Logger.Log(loggingEvent);
return new EmptyResult();
}
The weird thing is: even though I can't either parse the Request contents directly using the InputStream (json == ""), nor via MVC's binding (everything in data is default(T)), I can do Request.SaveAs(file) and get the Request body like that, and Request.ContentLength is set to something like 480.
How should I be sending this over the pipe in order to make it simpler for MVC's default model binder to grab it, or at the very least, how can I parse the content in the MVC side of things, so that I can implement a custom model binder that deals with this parsing.
I just want to get the data string some other way than Request.SaveAs.