iis isapi和asp.net,它们之间的关系是什么?
iis isapi和asp.net,它们有什么关系?
例如:向服务器发送请求,问题1:请描述一个简单的处理流程。
问题2: 一个请求是否可以由asp.net引擎和isapi按顺序处理?或者只有一个人可以处理该请求?
iis isapi and asp.net,what's the relationship of them?
eg: a request send to server,question 1 :please describe a simple process workflow .
Q2:
did a request can be handle by asp.net engine and isapi in order? or only one can hanle the request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于您所指的 IIS 版本。
在集成管道模式存在之前,asp.net 引擎是由 isapi 调用的。在经典模式下(或在集成管道之前),isapi 扩展被调用并使用互操作来调用 asp.net 的请求。
由于集成管道是现在使用的主要模式,请查看:
http://drdobbs.com/windows/219501263
http://msdn.microsoft.com/en-us/magazine/cc135973.aspx
Depends which version of IIS you are referring to.
The asp.net engine WAS invoked by the isapi before Integrated Pipeline mode existed. In classic mode (or prior to integrated pipeline) the isapi extension was invoked and used interop to call off into asp.net for the request.
Since the Integrated Pipeline is the main mode used now, check out:
http://drdobbs.com/windows/219501263
http://msdn.microsoft.com/en-us/magazine/cc135973.aspx