ashx文件和HttpHandler

ashx 文件用於寫web handler的。.ashx必須包含IsReusable. 以下例所示。}.ashx比.aspx的好處在與不用多一個html 注意了VS2005中Web應用程序項目模板裏的Generic Handler 項,發現它是一個.ashx文件,實際上它是一個HttpHandler。利用.ashx文件是一個更好的方法,這個文件相似於.aspx文件,能夠經過它來調用HttpHandler類,從而免去了普通.aspx頁面的控件解析以及頁面處理的過程。而後在同目錄下,使用解決方案資源管理器,使用"添加"-->"添加類",在類文件名處輸入"TextBuilder.ashx.cs"。使用IE測試,輸入這個.ashx的地址便可html

 

 

什麼是HttpHandlerweb

HttpHandler是一個HTTP請求的真正處理中心,也正是在這個HttpHandler容器中,ASP.NET Framework才真正地對客戶端請求的服務器頁面作出編譯和執行,並將處理事後的信息附加在HTTP請求信息流中再次返回到HttpModule中。服務器

IHttpHandler是什麼ide

IHttpHandler定義了若是要實現一個HTTP請求的處理所必需實現的一些系統約定。HttpHandler與HttpModule不一樣,一旦定義了本身的HttpHandler類,那麼它對系統的HttpHandler的關係將是「覆蓋」關係。測試

IHttpHandler如何處理HTTP請求ui

當一個HTTP請求經同HttpModule容器傳遞到HttpHandler容器中時,ASP.NET Framework會調用HttpHandler的Proce***equest成員方法來對這個HTTP請求進行真正的處理。以一個ASPX頁面爲例,正是在這裏一個ASPX頁面才被系統處理解析,並將處理完成的結果繼續經由HttpModule傳遞下去,直至到達客戶端。url

對於ASPX頁面,ASP.NET Framework在默認狀況下是交給System.Web.UI.PageHandlerFactory這個HttpHandlerFactory來處理的。所謂一個HttpHandlerFactory,所謂一個HttpHandlerFactory,是指當一個HTTP請求到達這個HttpHandler Factory時,HttpHandlerFactory會提供出一個HttpHandler容器,交由這個HttpHandler容器來處理這個HTTP請求。spa

一個HTTP請求都是最終交給一個HttpHandler容器中的Proce***equest方法來處理的。server

 

  

一個簡單的HttpHandler容器htm

經過實現IHttpHandler接口能夠建立自定義HTTP處理程序,該接口只包含兩個方法。經過調用IsReusable,IHttpHandlerFactory能夠查詢處理程序以肯定是否可使用同一實例爲多個請求提供服務。Proce***equest方法將HttpContext實例用做參數,這使它可以訪問Request和Response內部對象。在一個HttpHandler容器中若是須要訪問Session,必須實現IRequiresSessionState接口,這只是一個標記接口,沒有任何方法。

示例1:

using System;

using System.Collections.Generic;

using System.Text;

using System.Web;

using System.Web.SessionState;

 

namespace MyHandler

{

    ///

    /// 目的:實現一個簡單的自定義HttpHandler容器

    /// 做者:文野

    /// 聯繫:stwyhm@cnblogs.com

    ///

    public class MyFirstHandler : IHttpHandler,IRequiresSessionState

    {

        #region IHttpHandler 成員

 

        public bool IsReusable

        {

            get { return true; }

        }

 

        public void Proce***equest(HttpContext context)

        {

            context.Response.Write("

Hello HttpHandler

");

 

            context.Session["Test"] = "測試HttpHandler容器中調用Session";

            context.Response.Write(context.Session["Test"]);

        }

 

        #endregion

    }

}

在Web.config中加入以下配置:

 

    

< span>httpHandlers>

    IHttpHandler工廠

    ASP.NET Framework實際不直接將相關的頁面資源HTTP請求定位到一個其內部默認的IHttpHandler容器之上,而定位到了其內部默認的IHttpHandler工廠上。IHttpHandler工廠的做用是對IHttpHandler容器進行調度和管理。

    IHttpHandlerFactory接口包含兩個方法。GetHandler返回實現IHttpHandler接口的類的實例,ReleaseHandler使工廠能夠重用現有的處理程序實例。

    示例2:

示例2:

using System;

using System.Collections.Generic;

using System.Text;

using System.Web;

 

namespace MyHandler

{

    public class MyHandlerFactory : IHttpHandlerFactory

    {

        #region IHttpHandlerFactory 成員

 

        public IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)

        {

            string fname = url.Substring(url.IndexOf('/') + 1);

            while (fname.IndexOf('/') != -1)

                fname = fname.Substring(fname.IndexOf('/') + 1);

            string cname = fname.Substring(0, fname.IndexOf('.'));

            string className = "MyHandler." + cname;

 

            object h = null;

 

            try

            {

                // 採用動態反射機制建立相應的IHttpHandler實現類。

                h = Activator.CreateInstance(Type.GetType(className));

            }

            catch (Exception e)

            {

                throw new HttpException("工廠不能爲類型"+cname+"建立實例。",e);

            }

 

            return (IHttpHandler)h;

        }

 

        public void ReleaseHandler(IHttpHandler handler)

        {

           

        }

 

        #endregion

    }

 

    public class Handler1 : IHttpHandler

    {

        #region IHttpHandler 成員

 

        public bool IsReusable

        {

            get { return true; }

        }

 

        public void Proce***equest(HttpContext context)

        {

            context.Response.Write("

來自Handler1的信息。

");

 

        }

 

        #endregion

    }

 

    public class Handler2 : IHttpHandler

    {

        #region IHttpHandler 成員

 

        public bool IsReusable

        {

            get { return true; }

        }

 

        public void Proce***equest(HttpContext context)

        {

            context.Response.Write("

來自Handler2的信息。

");

 

        }

 

        #endregion

    }

}

相關文章
相關標籤/搜索