Ich versuche, einige Daten aus einer Anforderung in der neuen Asp.Net Web Api zu extrahieren. Ich habe ein Handler-Setup wie folgt:
public class MyTestHandler : DelegatingHandler
{
protected override System.Threading.Tasks.Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)
{
if (request.Content.IsFormData())
{
request.Content.ReadAsStreamAsync().ContinueWith(x => {
var result = "";
using (var sr = new StreamReader(x.Result))
{
result = sr.ReadToEnd();
}
Console.Write(result);
});
}
return base.SendAsync(request, cancellationToken);
}
}
Dies ist meine http-Anfrage:
POST http://127.0.0.1/test HTTP/1.1
Connection: Keep-Alive
Content-Length: 29
Content-Type: application/x-www-form-urlencoded
Expect: 100-continue
Host: 127.0.0.1
my_property=my_value
Das Problem ist, dass ich, egal wie ich versuche, die Informationen aus request.Content
sie ist immer leer. Ich habe versucht
request.Content.ReadAsStreamAsync
request.Content.ReadAsFormDataAsync
request.Content.ReadAs<FormDataCollection>
wie auch
[HttpGet,HttpPost]
public string Index([FromBody]string my_property)
{
//my_property == null
return "Test";
}
Nicht, wenn es funktioniert. Ich kann die Daten nicht aus dem Body herausbekommen. Ich hoste innerhalb von IIS auf Windows 7 und verwende Fiddler, um die Anfrage zu übermitteln. Was mache ich falsch?