在自定义HttpHandler中无法使用Session

一.问题描述:

    最近需要做一个对特定请求(.report)进行响应的接口,当然是使用实现IHttpHandler来进行处理,实现IHttpHandler接口就必须要实现它的两个方法,ProcessRequest(HttpContext context) 和IsRunable() ,看到在ProcessRequest(HttpContext context) 中有个HttpContext的输入参数,以为通过这个就可以对所有的服务器对象进行使用。不过问题出现了,在这个自定义HTTP响应处理类中,对于Request和Response都可以通过使用HttpContext来引用使用,不过Session 就是不行,总是出现对象未进行引用的错误!

二.解决办法:

  通过上网查资料,却无意中发现在自定义HTTPHANDLER中使用SESSION 的方法!
  1、先引用System.Web.SessionState这个命名空间,
  2、如果是要在HttpHandler中读取Session的内容,就要在实现IHttpHandler的类中同时实现IReadOnlySessionState这个接口。
  3、如果是要在HttpHandler中读写Session的内容,就要在实现IHttpHandler的类中同时实现IRequiresSessionState
  
  这样就可以在自定义的HttpHandler 中正常的使用Session了。

三.代码演示:

1.前台页面cs文件

public partial class TestPage: System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
 
        }
 
        protected void BtnUpLoad_Click(object sender, EventArgs e)
        {
            XmlDocument doc = new XmlDocument();
            doc.Load(TemplateUpload.FileContent);
 
            Session["upLoadXmlDoc"] = doc;
 
            string url = "test.report";
            Response.Redirect(url);
        }
    }

2.实现IHttpHandler的HttpHandler类,用来处理test.report

public class myHttpHandler:IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            String className = businessConfig.Business[context.Request.Path];
 
            //本行将报错,提示:Object reference not set to an instance of an object.
 
            //添加监视,得知context.Session为null
 
            XmlDocument doc =  context.Session["upLoadXmlDoc"]
 
         }
 
        // Override the IsReusable property.
        public bool IsReusable
        {
            get { return true; }
        }
 
    }

3.解决办法:

    让myHttpHandler再实现IRequiresSessionState就ok了

    public class myHttpHandler:IHttpHandler,IRequiresSessionState
    {
        public void ProcessRequest(HttpContext context)
        {
            String className = businessConfig.Business[context.Request.Path];

 

 

            XmlDocument doc =  context.Session["upLoadXmlDoc"]

 

         }

        // Override the IsReusable property.
        public bool IsReusable
        {
            get { return true; }
        }

    }

posted on   大宝pku  阅读(339)  评论(0编辑  收藏  举报

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架

导航

< 2011年5月 >
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 1 2 3 4
5 6 7 8 9 10 11
点击右上角即可分享
微信分享提示