zoukankan      html  css  js  c++  java
  • Carrying per-request context using the HttpRequestMessage.Properties

    In a Web API application, I use Castle Windsor to supply services configured with PerWebRequest lifetime and everything works fine on IIS.

    However, when I use the ASP.NET Web API Self Host (Beta) package I need to create a custom lifetime in order to scope those services per HTTP request.

    I'd suggest you using a message handler to set some your object into HttpRequestMessage.Property:

    public class MyApplication : HttpApplication
    {
        protected void Application_Start()
        {
            RegisterHttpMessageHandlers(GlobalConfiguration.Configuration);
        }
        public void RegisterHttpMessageHandlers(HttpConfiguration config)
        {
            config.MessageHandlers.Add(new MyMessageHandler());
        }
    }
    
    public static class MyHttpMessageHandlerExtensions
    {
        public static class HttpPropertyKey
        {
            public static readonly string MyProperty = "MyCompany_MyProperty";
        }
    
        public static MyContext GetContext(this HttpRequestMessage request)
        {
            return (MyContext)request.Properties[HttpPropertyKey.MyProperty ];
        }
    
        public static void SetContext(this HttpRequestMessage request, MyContext ctx)
        {
            request.Properties[HttpPropertyKey.MyProperty] = ctx;
        }
    }
    public class MyMessageHandler : DelegatingHandler
    {
        protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
        {
            request.SetContext(new MyContext(){/*some your data*/});
            return base.SendAsync(request, cancellationToken);
        }
    }
    
    public class MyController: ApiController
    {
        public object GetData()
        {
            MyContext ctx = this.Request.GetContext(); // the extenstion method is used
        }
    }
  • 相关阅读:
    怎么能忘了N皇后(N Queens)?
    中序线索二叉树及相关算法概述(java实现)
    树遍历算法概述
    广义表与字符串
    KMP算法简述
    Linux常用系统符号总结
    linux 父、子shell变量传递问题
    数据结构总结之一栈与队列
    n!素因子p的幂 swjtuOJ 2090【数论】
    N!分解素因子及若干问题【转载】
  • 原文地址:https://www.cnblogs.com/lenmom/p/8797653.html
Copyright © 2011-2022 走看看