Additionally, in Step1 Enable Failed-Request Tracing...
Trying to open inetmgr from the command prompt results in "'inetmgr' is not recognized as an internal or external command, operable program or batch file"
If I open IIS Manager, there is no default web site. It does show the sites I deleted from Windows Explorer in the previous step.
I created DefaultWebSite. Under Configure, there is no option for Failed Request Tracking.
I don't know if this set of instructions is outdated, or just plain wrong, but they are unusable.
I un-installed IIS, re-installed it and followed the script. A log was generated, but I don't know what I'm looking for in it. That whole script seems to be a tutorial on how to set up logging, rather than specific trouble shooting.
Since you can open IIS manager, I doubt you encounter the error in command line prompt due to the wrong path for inetmgr.exe. You should use "%windir%\system32\inetsrv\inetmgr". Have you got the tracing file generated successfully? You may post the tracing log
content here so that we could have a check for you.
It would have been handy to have an instruction that it is necessary to locate and then navigate to inetmgr.exe. As far as I cal tell, this log reports an error condition that was set up by the directions. I hope you can see something different.
</head>
<body>
<div id="header"><h1>Server Error in Application "DEFAULT WEB SITE"</h1></div>
<div id="server_version"><p>Internet Information Services 7.5</p></div>
<div id="content">
<div class="content-container">
<fieldset><legend>Error Summary</legend>
<h2>HTTP Error 404.2 - Not Found</h2>
<h3>The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server.</h3>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Detailed Error Information</legend>
<div id="details-left">
<table border="0" cellpadding="0" cellspacing="0">
<tr class="alt"><th>Module</th><td>IsapiModule</td></tr>
<tr><th>Notification</th><td>ExecuteRequestHandler</td></tr>
<tr class="alt"><th>Handler</th><td>ASPClassic</td></tr>
<tr><th>Error Code</th><td>0x800704ec</td></tr>
</table>
</div>
<div id="details-right">
<table border="0" cellpadding="0" cellspacing="0">
<tr class="alt"><th>Requested URL</th><td>http://localhost:80/test.asp</td></tr>
<tr><th>Physical Path</th><td>C:\inetpub\wwwroot\test.asp</td></tr>
<tr class="alt"><th>Logon Method</th><td>Anonymous</td></tr>
<tr><th>Logon User</th><td>Anonymous</td></tr>
<tr class="alt"><th>Failed Request Tracing Log Directory</th><td><a href="file://C:\inetpub\logs\FailedReqLogFiles">C:\inetpub\logs\FailedReqLogFiles</a></td></tr>
</table>
<div class="clear"></div>
</div>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Most likely causes:</legend>
<ul> %09<li>No handler mapping for this request was found. A feature may have to be installed.</li> %09<li>The Web service extension for the requested resource is not enabled on the server.</li> %09<li>The mapping for the
extension points to the incorrect location.</li> %09<li>The extension was misspelled in the browser or the Web server.</li> </ul>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Things you can try:</legend>
<ul> %09<li>Install the feature that handles this request. For example, if you get this error for an .ASPX page, you may have to install ASP.NET via IIS setup.</li> %09<li> Verify that the Web service extension requested
is enabled on the server. <ol> %09%09%09<li>Open the IIS Manager and navigate to the server level.</li> %09%09%09<li>In the Features view, double-click ISAPI and CGI Restrictions to verify that the Web service extension is
set to Allowed.</li> %09%09%09<li>If the extension is not in the list, click Add in the Actions pane.</li> %09%09%09<li>In the Add ISAPI and CGI Restrictions dialog box, type the path of the .dll or .exe file in the ISAPI or CGI Path
box, or click Browse to navigate to the location of the file.</li> %09%09%09<li>In the Description box, type a brief description of the restriction.</li> %09%09%09<li>(Optional) Check "Allow extension path to execute" to allow
the restriction to run automatically. If you do not check this option, the restriction status is Not Allowed, which is the default. You can allow the restriction later by selecting it and clicking Allow on the Actions pane.</li> %09%09%09<li>Click
OK.</li> %09%09</ol> NOTE: Make sure that this Web service extension or CGI is needed for your Web server before adding it to the list. </li> %09<li>Verify that the location of the extension is correct.</li>
%09<li>Verify that the URL for the extension is spelled correctly both in the browser and the Web server.</li> %09<li>Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing
rule for failed requests, click <a href="http://go.microsoft.com/fwlink/?LinkID=66439">here</a>. </li> </ul>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Links and More Information</legend>
This error occurs when the necessary Web service extension is not enabled, the location or the name of the extension are misspelled or incorrectly entered.
<p><a href="http://go.microsoft.com/fwlink/?LinkID=62293&amp;IIS70Error=404,2,0x800704ec,7601">View more information &raquo;</a></p>
Weird indeed. According to the tracing log, you do encounter a 404.2 due to isapi restriction to asp.dll, see:
However, from the corresponding settings you've posted, it does listed as allowed. I suggest you temporarily set allow unlisted to true for isapi restriction to see if this make it work:
%windir%\system32\inetsrv\appcmd set config -section:system.webServer/security/isapiCgiRestriction /notListedIsapisAllowed:"True" /commit:apphost
Note: this is a test for sake of locating the root cause, it is not suggested you set the value as true due to security considerations.
You are aware that the 404.2 error was generated because the instructions set it up to do that? In the reporting setup, only error 404.2 is configured. Or am I mistaken?
Setting unlisted to true gave exactly the same result as before when opening http://localhost/test.asp.
The tracing log indicates the 404.2 error occurs due to restriction to the asp isapi module. Since setting allow unlisted does not solve your issue either, I cannot think of other settings that may cause this error according to the information you provided.
To set the attribute back to false, you may run the command again but change true to false:
%windir%\system32\inetsrv\appcmd set config -section:system.webServer/security/isapiCgiRestriction /notListedIsapisAllowed:"False" /commit:apphost
To locate the root cause, more information is needed. Could you please send a copy of your applicationHost.config and site web.config to me via v-chaozh(at)microsoft(dot)com?
Mikey3
14 Posts
Re: Classic ASP not running
Apr 17, 2012 12:08 PM|LINK
Weird indeed!
The second step in the procedure yu referred me to doesn't make sense.
Create Sample Content
Mikey3
14 Posts
Re: Classic ASP not running
Apr 17, 2012 10:57 PM|LINK
Additionally, in Step1 Enable Failed-Request Tracing...
Trying to open inetmgr from the command prompt results in "'inetmgr' is not recognized as an internal or external command, operable program or batch file"
If I open IIS Manager, there is no default web site. It does show the sites I deleted from Windows Explorer in the previous step.
I created DefaultWebSite. Under Configure, there is no option for Failed Request Tracking.
I don't know if this set of instructions is outdated, or just plain wrong, but they are unusable.
Mikey3
14 Posts
Re: Classic ASP not running
Apr 19, 2012 10:14 PM|LINK
I un-installed IIS, re-installed it and followed the script. A log was generated, but I don't know what I'm looking for in it. That whole script seems to be a tutorial on how to set up logging, rather than specific trouble shooting.
What's next?
Lloydz
2335 Posts
Microsoft
Re: Classic ASP not running
Apr 20, 2012 07:22 AM|LINK
Since you can open IIS manager, I doubt you encounter the error in command line prompt due to the wrong path for inetmgr.exe. You should use "%windir%\system32\inetsrv\inetmgr". Have you got the tracing file generated successfully? You may post the tracing log content here so that we could have a check for you.
Thanks.
Mikey3
14 Posts
Re: Classic ASP not running
Apr 20, 2012 08:02 AM|LINK
It would have been handy to have an instruction that it is necessary to locate and then navigate to inetmgr.exe. As far as I cal tell, this log reports an error condition that was set up by the directions. I hope you can see something different.
<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type='text/xsl' href='freb.xsl'?>
<!-- saved from url=(0014)about:internet -->
<failedRequest url="http://localhost:80/test.asp"
siteId="1"
appPoolId="DefaultAppPool"
processId="2140"
verb="GET"
remoteUserName=""
userName=""
tokenUserName="NT AUTHORITY\IUSR"
authenticationType="anonymous"
activityId="{00000000-0000-0000-1000-0080000000FB}"
failureReason="STATUS_CODE"
statusCode="404.2"
triggerStatusCode="404.2"
timeTaken="78"
xmlns:freb="http://schemas.microsoft.com/win/2006/06/iis/freb"
>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>0</Level>
<Opcode>1</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.556Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="SiteId">1</Data>
<Data Name="AppPoolId">DefaultAppPool</Data>
<Data Name="ConnId">1610612751</Data>
<Data Name="RawConnId">0</Data>
<Data Name="RequestURL">http://localhost:80/test.asp</Data>
<Data Name="RequestVerb">GET</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_REQUEST_START</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>5</Level>
<Opcode>53</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="HeaderName">AspFilterSessionId</Data>
<Data Name="HeaderValue"></Data>
<Data Name="Replace">true</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_SET_REQUEST_HEADER</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>55</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="RemoteAddress">::1</Data>
<Data Name="RemotePort">55466</Data>
<Data Name="LocalAddress">::1</Data>
<Data Name="LocalPort">80</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_ENDPOINT_INFORMATION</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>50</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Headers">Connection: Keep-Alive
Accept: text/html, application/xhtml+xml, */*
Accept-Encoding: gzip, deflate
Accept-Language: en-US
Host: localhost
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_REQUEST_HEADERS</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">AXD-ISAPI-2.0</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness32</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">PageHandlerFactory-ISAPI-2.0</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness32</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">SimpleHandlerFactory-ISAPI-2.0</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness32</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">WebServiceHandlerFactory-ISAPI-2.0</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness32</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">HttpRemotingHandlerFactory-rem-ISAPI-2.0</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness32</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">HttpRemotingHandlerFactory-soap-ISAPI-2.0</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness32</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">AXD-ISAPI-2.0-64</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness64</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">PageHandlerFactory-ISAPI-2.0-64</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness64</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">SimpleHandlerFactory-ISAPI-2.0-64</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness64</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">WebServiceHandlerFactory-ISAPI-2.0-64</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness64</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">HttpRemotingHandlerFactory-rem-ISAPI-2.0-64</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness64</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>46</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">HttpRemotingHandlerFactory-soap-ISAPI-2.0-64</Data>
<Data Name="Precondition">classicMode,runtimeVersionv2.0,bitness64</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>30</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="PhysicalPath"></Data>
<Data Name="AccessPerms">513</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_GET_URL_METADATA</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>43</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="OldHandlerName"></Data>
<Data Name="NewHandlerName">ASPClassic</Data>
<Data Name="NewHandlerModules">IsapiModule</Data>
<Data Name="NewHandlerScriptProcessor">C:\Windows\system32\inetsrv\asp.dll</Data>
<Data Name="NewHandlerType"></Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>HANDLER_CHANGED</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">OutputCache</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">Session</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">WindowsAuthentication</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">FormsAuthentication</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">DefaultAuthentication</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">RoleManager</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">UrlAuthorization</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">FileAuthorization</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">AnonymousIdentification</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">Profile</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>45</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Name">UrlMappingsModule</Data>
<Data Name="Precondition">managedHandler</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_PRECONDITION_NOT_MATCH</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>44</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.572Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="AuthType"></Data>
<Data Name="UserName"></Data>
<Data Name="SupportsIsInRole">true</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>USER_SET</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>3</Level>
<Opcode>16</Opcode>
<Keywords>0x4</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.603Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="ImageName">C:\Windows\system32\inetsrv\asp.dll</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>SECURITY_DENIED_BY_ISAPI_RESTRICTION</Opcode>
<Keywords>
<Keyword>Security</Keyword>
</Keywords>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{29347FFB-BA48-41E6-BFFD-469C5E543CA5}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>0</Level>
<Opcode>33</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.603Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="HttpStatus">404</Data>
<Data Name="HttpSubStatus">2</Data>
<Data Name="FileNameOrURL">404.htm</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_SEND_CUSTOM_ERROR</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>35</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.603Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_FLUSH_RESPONSE_START</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>47</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.603Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Headers">Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_RESPONSE_HEADERS</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>5</Level>
<Opcode>49</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.603Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="Buffer"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>IIS 7.5 Detailed Error - 404.2 - Not Found</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;background:#CBE1EF;}
code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;}
.config_source code{font-size:.8em;color:#000000;}
pre{margin:0;font-size:1.4em;word-wrap:break-word;}
ul,ol{margin:10px 0 10px 40px;}
ul.first,ol.first{margin-top:5px;}
fieldset{padding:0 15px 10px 15px;}
.summary-container fieldset{padding-bottom:5px;margin-top:4px;}
legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;}
legend{color:#333333;padding:4px 15px 4px 10px;margin:4px 0 8px -12px;_margin-top:0px;
border-top:1px solid #EDEDED;border-left:1px solid #EDEDED;border-right:1px solid #969696;
border-bottom:1px solid #969696;background:#E7ECF0;font-weight:bold;font-size:1em;}
a:link,a:visited{color:#007EFF;font-weight:bold;}
a:hover{text-decoration:none;}
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;}
h3{font-size:1.4em;margin:10px 0 0 0;color:#CC0000;}
h4{font-size:1.2em;margin:10px 0 5px 0;
}#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS",Verdana,sans-serif;
color:#FFF;background-color:#5C87B2;
}#content{margin:0 0 0 2%;position:relative;}
.summary-container,.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
.config_source{background:#fff5c4;}
.content-container p{margin:0 0 10px 0;
}#details-left{width:35%;float:left;margin-right:2%;
}#details-right{width:63%;float:left;overflow:hidden;
}#server_version{width:96%;_height:1px;min-height:1px;margin:0 0 5px 0;padding:11px 2% 8px 2%;color:#FFFFFF;
background-color:#5A7FA5;border-bottom:1px solid #C1CFDD;border-top:1px solid #4A6C8E;font-weight:normal;
font-size:1em;color:#FFF;text-align:right;
}#server_version p{margin:5px 0;}
table{margin:4px 0 4px 0;width:100%;border:none;}
td,th{vertical-align:top;padding:3px 0;text-align:left;font-weight:bold;border:none;}
th{width:30%;text-align:right;padding-right:2%;font-weight:normal;}
thead th{background-color:#ebebeb;width:25%;
}#details-right th{width:20%;}
table tr.alt td,table tr.alt th{background-color:#ebebeb;}
.highlight-code{color:#CC0000;font-weight:bold;font-style:italic;}
.clear{clear:both;}
.preferred{padding:0 5px 2px 5px;font-weight:normal;background:#006633;color:#FFF;font-size:.8em;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error in Application "DEFAULT WEB SITE"</h1></div>
<div id="server_version"><p>Internet Information Services 7.5</p></div>
<div id="content">
<div class="content-container">
<fieldset><legend>Error Summary</legend>
<h2>HTTP Error 404.2 - Not Found</h2>
<h3>The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server.</h3>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Detailed Error Information</legend>
<div id="details-left">
<table border="0" cellpadding="0" cellspacing="0">
<tr class="alt"><th>Module</th><td>IsapiModule</td></tr>
<tr><th>Notification</th><td>ExecuteRequestHandler</td></tr>
<tr class="alt"><th>Handler</th><td>ASPClassic</td></tr>
<tr><th>Error Code</th><td>0x800704ec</td></tr>
</table>
</div>
<div id="details-right">
<table border="0" cellpadding="0" cellspacing="0">
<tr class="alt"><th>Requested URL</th><td>http://localhost:80/test.asp</td></tr>
<tr><th>Physical Path</th><td>C:\inetpub\wwwroot\test.asp</td></tr>
<tr class="alt"><th>Logon Method</th><td>Anonymous</td></tr>
<tr><th>Logon User</th><td>Anonymous</td></tr>
<tr class="alt"><th>Failed Request Tracing Log Directory</th><td><a href="file://C:\inetpub\logs\FailedReqLogFiles">C:\inetpub\logs\FailedReqLogFiles</a></td></tr>
</table>
<div class="clear"></div>
</div>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Most likely causes:</legend>
<ul> %09<li>No handler mapping for this request was found. A feature may have to be installed.</li> %09<li>The Web service extension for the requested resource is not enabled on the server.</li> %09<li>The mapping for the extension points to the incorrect location.</li> %09<li>The extension was misspelled in the browser or the Web server.</li> </ul>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Things you can try:</legend>
<ul> %09<li>Install the feature that handles this request. For example, if you get this error for an .ASPX page, you may have to install ASP.NET via IIS setup.</li> %09<li> Verify that the Web service extension requested is enabled on the server. <ol> %09%09%09<li>Open the IIS Manager and navigate to the server level.</li> %09%09%09<li>In the Features view, double-click ISAPI and CGI Restrictions to verify that the Web service extension is set to Allowed.</li> %09%09%09<li>If the extension is not in the list, click Add in the Actions pane.</li> %09%09%09<li>In the Add ISAPI and CGI Restrictions dialog box, type the path of the .dll or .exe file in the ISAPI or CGI Path box, or click Browse to navigate to the location of the file.</li> %09%09%09<li>In the Description box, type a brief description of the restriction.</li> %09%09%09<li>(Optional) Check "Allow extension path to execute" to allow the restriction to run automatically. If you do not check this option, the restriction status is Not Allowed, which is the default. You can allow the restriction later by selecting it and clicking Allow on the Actions pane.</li> %09%09%09<li>Click OK.</li> %09%09</ol> NOTE: Make sure that this Web service extension or CGI is needed for your Web server before adding it to the list. </li> %09<li>Verify that the location of the extension is correct.</li> %09<li>Verify that the URL for the extension is spelled correctly both in the browser and the Web server.</li> %09<li>Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click <a href="http://go.microsoft.com/fwlink/?LinkID=66439">here</a>. </li> </ul>
</fieldset>
</div>
<div class="content-container">
<fieldset><legend>Links and More Information</legend>
This error occurs when the necessary Web service extension is not enabled, the location or the name of the extension are misspelled or incorrectly entered.
<p><a href="http://go.microsoft.com/fwlink/?LinkID=62293&amp;IIS70Error=404,2,0x800704ec,7601">View more information &raquo;</a></p>
</fieldset>
</div>
</div>
</body>
</html>
</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_RESPONSE_ENTITY_BUFFER</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>36</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.634Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="BytesSent">7026</Data>
<Data Name="ErrorCode">0</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_FLUSH_RESPONSE_END</Opcode>
<freb:Description Data="ErrorCode">The operation completed successfully.
(0x0)</freb:Description>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>0</Level>
<Opcode>2</Opcode>
<Keywords>0x0</Keywords>
<TimeCreated SystemTime="2012-04-19T21:52:20.634Z"/>
<Correlation ActivityID="{00000000-0000-0000-1000-0080000000FB}"/>
<Execution ProcessID="2140" ThreadID="3696"/>
<Computer>MIKESMAC</Computer>
</System>
<EventData>
<Data Name="ContextId">{00000000-0000-0000-1000-0080000000FB}</Data>
<Data Name="BytesSent">7026</Data>
<Data Name="BytesReceived">254</Data>
<Data Name="HttpStatus">404</Data>
<Data Name="HttpSubStatus">2</Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>GENERAL_REQUEST_END</Opcode>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
</ExtendedTracingInfo>
</Event>
</failedRequest>
Mikey3
14 Posts
Re: Classic ASP not running
Apr 20, 2012 08:04 AM|LINK
Today, for the first time in this thread, I get a notice that a moderator must approve posts. Where did that come from?
Lloydz
2335 Posts
Microsoft
Re: Classic ASP not running
Apr 20, 2012 09:23 AM|LINK
Weird indeed. According to the tracing log, you do encounter a 404.2 due to isapi restriction to asp.dll, see:
However, from the corresponding settings you've posted, it does listed as allowed. I suggest you temporarily set allow unlisted to true for isapi restriction to see if this make it work:
%windir%\system32\inetsrv\appcmd set config -section:system.webServer/security/isapiCgiRestriction /notListedIsapisAllowed:"True" /commit:apphost
Note: this is a test for sake of locating the root cause, it is not suggested you set the value as true due to security considerations.
Thanks.
Mikey3
14 Posts
Re: Classic ASP not running
Apr 20, 2012 08:48 PM|LINK
You are aware that the 404.2 error was generated because the instructions set it up to do that? In the reporting setup, only error 404.2 is configured. Or am I mistaken?
Setting unlisted to true gave exactly the same result as before when opening http://localhost/test.asp.
How do I set notListedISAPIIsAllowed off again?
Lloydz
2335 Posts
Microsoft
Re: Classic ASP not running
Apr 23, 2012 03:00 AM|LINK
The tracing log indicates the 404.2 error occurs due to restriction to the asp isapi module. Since setting allow unlisted does not solve your issue either, I cannot think of other settings that may cause this error according to the information you provided. To set the attribute back to false, you may run the command again but change true to false:
%windir%\system32\inetsrv\appcmd set config -section:system.webServer/security/isapiCgiRestriction /notListedIsapisAllowed:"False" /commit:apphost
To locate the root cause, more information is needed. Could you please send a copy of your applicationHost.config and site web.config to me via v-chaozh(at)microsoft(dot)com?
Thanks.
Mikey3
14 Posts
Re: Classic ASP not running
May 01, 2012 01:06 PM|LINK