- 1、本文档共36页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Windows Server 应用程式相容性.ppt
IIS 6 monolithic For example, if you don’t want to use Digest Authenticaiton, you can clear the checkbox, but the code is still loaded in memory. It’s not used, but is still present. ASP.net is invoked when file extension is called and loaded into W3WP on demand. This is late in the IIS 6 request processing pipeline as several key events have already occurred including authentication. And how do you have functionality? You have to use ISAPI filters to handlers. While there performed well, you have to work within the contraints of ISAPI. IIS 7 takes the monolithic features of IIS 6 and breaks them into approx 40 modules. These modules register for events in the request processing pipeline such as the Authentication, Execute handler, or the send Response event. Since IIS 7 can preload .NET framework into the worker process, native and managed code modules can both service the request pipeline . ****************************************************************************************************** Script In this slide you can see that in IIS 6, ASP.net is loaded as an ISAPI application by the ISAPI handler. Inside the IIS 6 pipeline there is Authentication but there is also Authentication in ASP.net. ASP.net has it’s own handler mapping as does IIS 6. IIS 6 has it’s own error message and caching systems and ASP.net has these features as well, but they operate differently. This duplication of effort leads to confusion about which component is going to handle the various actions and leads to articles specifically written to help people understand how these things are related. ****************************************************************************************************** Script In IIS 7, the ASP.NET capabilities are moved into the IIS 7 core pipeline. This makes these features available to all requests, not just those bound for a .NET application. So if you want to use Forms authentication for a PHP website, go ahead! This also allows you to quickly
文档评论(0)