> Scott, I'm woefully ignorant as an IIS admin, as is my windows admin
> (exchange is the first thing they've set up on iis7). How can we tell
> which mode we are in? KC
In the IIS Manager, expand your computer name and click on the
'Application Pools' node. The table on the right will show you all of
the application pools you have setup, what version of the .NET framework
they are running, generally either v2.0 or v4.0 (v2.0 covers everything
from v2.0 through 3.5 SP1) and whether the Managed Pipeline is 'Classic'
or 'Integrated'. The out-of-the-box install will generally only have 1
app pool, DefaultAppPool running at v2.0 in Integrated Mode.
> Yes, these handlers were recognized/installed automatically by iis7...
> or so it seems. We see them in a 'mappings' list.
The IIS manager basically just operates on the web.config file for you.
I would compare the web.config file you have to the pieces that I
posted. Keep in mind that I've posted only the relevant pieces of the
file with the appropriate values--I'm just conveying the hierarchy of
elements in the file, not a complete web.config file. Imagine there are
ellipses between every line :-)
<configuration>
<system.web>
<!-- IIS 5/6 & IIS 7+ Classic Pipeline configuration -->
<httpHandlers>
<add verb="*" path="MyHandler.asx" type="Example.MyHandler,
Example" validate="false" />
</httpHandlers>
<httpModules>
<add name="MyModule" type="Example.MyModule, Example" />
</httpModules>
</system.web>
<system.webServer>
<!-- IIS 7+ Integrated Pipeline configuration -->
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<remove name="MyHandler" />
<add name="MyHandler" verb="*" path="MyHandler.asx"
preCondition="integratedMode" type="Example.MyHandler, Example"/>
</handlers>
<modules>
<remove name="MyModule"/>
<add name="MyModule" type="Example.MyModule, Example" />
</modules>
</system.webServer>
</configuration>
--
You are currently subscribed to [email protected] as:
[email protected]
To unsubscribe, change settings or access archives, see
http://www.ja-sig.org/wiki/display/JSG/cas-user