我正在重新实现一个请求记录器作为Owin Middleware,它记录所有传入请求的请求url和body.我能够阅读身体,但如果我在我的控制器中做body参数是null.
我猜它是空的,因为流的位置是最后的,所以当它尝试反序列化身体时没有什么可以读取的.我以前版本的Web API有一个类似的问题,但是可以将Stream的位置设置为0.这个特定的流引发了一个这个流不支持搜索操作异常.
在最新版本的Web API 2.0中,我可以在我的请求记录器中调用Request.HttpContent.ReadAsStringAsync(),并且机身仍然会以机智方式到达控制器.
阅读后如何倒退流?
要么
如何读取请求体而不消耗它?
public class RequestLoggerMiddleware : OwinMiddleware { public RequestLoggerMiddleware(OwinMiddleware next) : base(next) { } public override Task Invoke(IOwinContext context) { return Task.Run(() => { string body = new StreamReader(context.Request.Body).ReadToEnd(); // log body context.Request.Body.Position = 0; // cannot set stream position back to 0 Console.WriteLine(context.Request.Body.CanSeek); // prints false this.Next.Invoke(context); }); } }
public class SampleController : ApiController { public void Post(ModelClass body) { // body is now null if the middleware reads it } }
解决方法
只找到一个解决方案.用包含数据的新流替换原始流.
public override Task Invoke(IOwinContext context) { return Task.Run(() => { string body = new StreamReader(context.Request.Body).ReadToEnd(); // log body byte[] requestData = Encoding.UTF8.GetBytes(body); context.Request.Body = new MemoryStream(requestData); this.Next.Invoke(context); }); }
如果你正在处理大量的数据,我相信一个FileStream也可以替代.