ASP.NET Framework深度历险(3)
2024-07-10 12:58:32
供稿:网友
asp.net framework深度历险(3)
author:uestc95
articletype:原创
e-mail:[email protected]
.net framework version:1.0.3705正式版
vs.net(c#) version:7.0.9466正式版
这几天胃口还算好,虽然算不上“吃嘛嘛香”,但是也算是不错了,但愿能增上几斤才好。
怎么样,我们在chapter two最后提出的两个问题估计早出来了吧,:)
first:为什么在httpmodule中不能使用session?
second:系统默认的几个httpmodule在哪里配置的?
我们先挑软柿子捏,第二个问题的答案是:在文件machine.config中配置,比如在你的系统文件目录中的c:/wi
nnt/microsoft.net/framework/v1.0.3705/config/machine.config。
虽然是个软柿子,但是还是有些东东在里面的,那就是machine.config和我们常见的web.config有什么关
系呢?在asp.net framework启动处理一个http request的时候,她会依次加载machine.config以及你请求页面
所在目录的web.config文件,里面的配置是有<remove>标签的,什么意思不说也知道了吧。如果你在machine.c
onfig中配置了一个自己的httpmodule,你仍然可以在离你最近web.config文件中“remove”掉这个映射关系。
至于第一个问题,呵呵,如果你仔细的运行过上次的文件但是没有自己仔细深入研究一下的话,一定会觉
得在httpmodule中的确无法使用session,:)。如果你发现上次提出的问题本身就是一个"problem",那么恭喜你,你没有掉进我故意给出的框框中,并且很有质疑精神,:)
今天我们就来解释一下httpmodule和httphandler之间的关系,在今天的“日记”完成的时候,你也就会发现第一个问题的答案了。
chapter three -- 深入httpmodule
我们曾经提及当一个http request被asp.net framework捕获之后会依次交给httpmodule以及httphandler来处理,但是不能理解为httpmodule和httphandler是完全独立的,实际上是,在http request在httpmodule传递的过程中会在某个事件内将控制权交给httphandler的,而真正的处理在httphandler中完成之后,再将控制权交还给httpmodule。也就是说httpmodule在某个请求经过她的时候会再恰当时候同httphandler进行通信,在何时,如何通信呢?这就是下面提到的了。
我们提到在httpmodule中最开始的事件是beginrequest,最终的事件是endrequest。你如果仔细看上次给出的源程序的话,应当发现在方法init()中参数我们传递的是一个httpapplication类型,而我们曾经提及的两个事件正是这个传递进来的httpapplication的事件之一。
httpapplication还有其它的事件,分别如下:
application.beginrequest
application.endrequest
application.prerequesthandlerexecute
application.postrequesthandlerexecute
application.releaserequeststate
application.acquirerequeststate
application.authenticaterequest
application.authorizerequest
application.resolverequestcache
application.presendrequestheaders
application.presendrequestcontent
需要注意的是,在事件endrequest之后还会继续执行application.presendrequestheaders以及application.presendrequestcontent事件,而这两个事件大家想必应当从名称上面看得出来事做什么用途的了吧。是的,一旦触发了这两个事件,就表明整个http request的处理已经完成了,在这两个事件中是开始向客户端传送处理完成的数据流了。看到这里,您应当有一个疑问才对:怎么没见到httphandler就处理完成了?不是提到过httphandler才是真正处理http request的吗?如果你有这个疑问表明你是仔细在看,也不枉我打字打得这莫累,:)。
其实一开始我就提到了,在一个http request在httpmodule传递过程中,会在某一个时刻(确切的说应当是事件)中将这个请求传递给httphandler的。这个事件就是resolverequestcache,在这个事件之后,httpmodule会建立一个httphandler的入口实例(做好准备了,:)),但是此时并没有将控制权交出,而是继续触发acquirerequeststate以及prerequesthandlerexecute事件(如果你实现了的话)。看到了吗,最后一个事件的前缀是pre,呵呵。这表明下一步就要进入httphandler了,的确如此,正如我们猜想的那样,在prerequesthandlerexecute事件之后,httpmodule就会将控制权暂时交给httphandler,以便进行真正的http request处理工作。而在httphandler内部会执行processrequest来处理请求。在httphandler处理完毕之后,会将控制权交还给httpmodule,httpmodule便会继续对处理完毕的http request进行层层的转交动作,直到返回到客户端。
怎么样,是不是有些混乱?呵呵,苦于纯文本无法画流程图,我手头上已经画好了一个整个httpmodule的生命周期图,我只能暂且在这里用字符描绘一下前后流程了,如果你想要这个图片,可以给我发送mail,我给你mail过去。
http request在整个httpmodule中的生命周期图:
http request开始
|
httpmodule
|
httpmodule.beginrequest()
|
httpmodule.authenticaterequest()
|
httpmodule.authorizerequest()
|
httpmodule.resolverequestcache()
|
建立httphandler控制点
|
接着处理(httphandler已经建立,此后session可用)
|
httpmodule.acquirerequeststate()
|
httpmodule.prerequesthandlerexecute()
|
进入httphandler处理httprequest
|
httphandler.processrequest()
|
返回到httpmodule接着处理(httphandler生命周期结束,session失效)
|
httpmodule.postrequesthandlerexecute()
|
httpmodule.releaserequeststate()
|
httpmodule.updaterequestcache()
|
httpmodule.endrequest()
|
httpmodule.presendrequestheaders()
|
httpmodule.presendrequestcontent()
|
将处理后的数据返回客户端
|
整个http request处理结束
怎么样,从上面的图中应当找到上次我们提出的第一个问题的答案了吧。
为了验证上面的流程,我们可以用下面的这个自己的httpmoduel来验证一下就知道了。
注意我们下面给出的是类的内容,框架还是前次我们给出的那个,自己加上就好了:
public void init(httpapplication application)
{
application.beginrequest += (new eventhandler(this.application_beginrequest));
application.endrequest += (new eventhandler(this.application_endrequest));
application.prerequesthandlerexecute +=(new eventhandler(this.application_prerequesthandlerexecute));
application.postrequesthandlerexecute +=(new eventhandler(this.application_postrequesthandlerexecute));
application.releaserequeststate +=(new eventhandler(this.application_releaserequeststate));
application.acquirerequeststate +=(new eventhandler(this.application_acquirerequeststate));
application.authenticaterequest +=(new eventhandler(this.application_authenticaterequest));
application.authorizerequest +=(new eventhandler(this.application_authorizerequest));
application.resolverequestcache +=(new eventhandler(this.application_resolverequestcache));
application.presendrequestheaders +=(new eventhandler(this.application_presendrequestheaders));
application.presendrequestcontent +=(new eventhandler(this.application_presendrequestcontent));
}
private void application_prerequesthandlerexecute(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_prerequesthandlerexecute<br>");
}
private void application_beginrequest(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_beginrequest<br>");
}
private void application_endrequest(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_endrequest<br>");
}
private void application_postrequesthandlerexecute(object source,eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_postrequesthandlerexecute<br>");
}
private void application_releaserequeststate(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_releaserequeststate<br>");
}
private void application_updaterequestcache(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_updaterequestcache<br>");
}
private void application_authenticaterequest(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_authenticaterequest<br>");
}
private void application_authorizerequest(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_authorizerequest<br>");
}
private void application_resolverequestcache(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_resolverequestcache<br>");
}
private void application_acquirerequeststate(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_acquirerequeststate<br>");
}
private void application_presendrequestheaders(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_presendrequestheaders<br>");
}
private void application_presendrequestcontent(object source, eventargs e)
{
httpapplication application = (httpapplication)source;
httpcontext context = application.context;
context.response.write("application_presendrequestcontent<br>");
}
public void dispose()
{
}
好了,手累的不行了,:)
老规矩,下面的问题仔细考虑:
httpmodule中的application的多个事件和global.asax中的application事件有联系吗?如果有,该会有哪些联系呢?
下回会探讨httphandler的构建了,:)
不过最近挺忙,不知道何时能继续......尽力吧。
see you later.
(待续,欢迎探讨:[email protected])