我们有一个在IIS 8.5中运行的ASP.NET应用程序,我们希望使用两个IIS处理程序。处理程序是:
我们的问题是,似乎第一个处理程序处理所有请求,第二个处理程序永远不会处理ChartImg.axd URL。
我的问题是:
以下是有关如何构建web.config文件的详细信息(删除了不必要的详细信息)
C:\的Inetpub \ wwwroot的\的web.config
<configuration>
<system.webServer>
<handlers accessPolicy="Read, Execute, Script">
<add name="OracleWebGateExtension" path="*" verb="*" modules="IsapiModule" scriptProcessor="c:\oracle\product\11.1.1\as_1\webgate\iis\lib\webgate.dll" resourceType="Unspecified" requireAccess="None" />
</handlers>
</system.webServer>
</configuration>
C:\的Inetpub \ wwwroot的\的应用 \ web.config中
<configuration>
<system.webServer>
<handlers accessPolicy="Read, Script">
<remove name="ChartImageHandler" />
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
</configuration>