Configuration for httphandler in classic mode
- by happyspider
I have to install an httphandler that needs to run on classic mode. I have created an application on the iis that uses a classic apppool and put the handler assembly there.
The vendor gave me a configuration in the deployment document that looks like this:
<system.web>
<globalization requestEncoding="iso-8859-1" responseEncoding="iso-8859-1" />
<httpModules>
</httpModules>
<httpHandlers>
<add verb="*" path="*" type="ProductName.ProductName, ProductName" />
</httpHandlers>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<add name="someUnspecificName" path="*" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
</handlers>
</system.webServer>
The error I get when requesting a URL on the application is a 404, so I guess the handle is not used at all.
Does the configuration look ok for a 64bit system?