« Previous Next »

Thread: Reverse Proxy not working

Last post 06-22-2009 10:36 AM by micxba. 5 replies.

Average Rating Rate It (5)

RSS

Page 1 of 1 (6 items)

Sort Posts:

  • 06-15-2009, 12:05 PM

    • micxba
    • Not Ranked
    • Joined on 06-20-2005, 5:42 PM
    • Posts 9

    Reverse Proxy not working

    I am starting out simple trying to create some reverse proxy rules in IIS. So far just some redirect rules are working, none of the rewrite though.

    The Rewrite Rul I have is basically an implementation from here: http://ruslany.net/2009/04/10-url-rewriting-tips-and-tricks/

     <rule name"Proxy1">
      <match url="(.*) />
      <conditions logicalGrouping="MatchAll" />
      <action type = "Rewrite" url="http://172.28.x.x:88/app1/{R:1}" />
     </rule>

     So right now, when I enter i.e. http://mydomain.com/version.html it should rewrite it to http://172.28.x.x:88/app1/version.html

    I have enabled tracing but the stuff in the log does not mean much to me.

    Any help is greatly appreciated.

    This is just a start, eventuall I would like to navigate to e.g. http://mydomain.com/1234 and rewrite that to http://172.28.x.x:88/app1/app2/44444/
    (something like that at least).

    Hoping if I can figure out the first part, I can figure out the rest.

  • 06-15-2009, 10:57 PM In reply to

    • lextm
    • Top 10 Contributor
    • Joined on 10-22-2008, 4:18 AM
    • Shanghai, PRC
    • Posts 1,373

    Re: Reverse Proxy not working

    Lex Li
    Support Engineer at Microsoft
    ---------------------------
    This posting is provided "AS IS" with no warranties, and confers no rights.
  • 06-15-2009, 11:20 PM In reply to

    • ruslany
    • Top 25 Contributor
    • Joined on 07-01-2007, 7:38 PM
    • Redmond, WA
    • Posts 660

    Re: Reverse Proxy not working

    When you make a request to http://mydomain.com/version.html what is the error you are getting from IIS?

    http://ruslany.net
  • 06-16-2009, 9:58 AM In reply to

    • micxba
    • Not Ranked
    • Joined on 06-20-2005, 5:42 PM
    • Posts 9

    Re: Reverse Proxy not working

     

    lextm:
    the pattern htere seems invalid (just an *) I am using (.*) which should be close to that.

     

    ruslany: I am actually getting a 404 error. I have a trace I am going to post below.

    <?xml version="1.0" encoding="UTF-8" ?>
    <?xml-stylesheet type='text/xsl' href='freb.xsl'?>
    <!-- saved from url=(0014)about:internet -->
    <failedRequest url="http://webapp.us:80/favicon.ico"
                   siteId="1"
                   appPoolId="webapp.us"
                   processId="3492"
                   verb="GET"
                   remoteUserName=""
                   userName=""
                   tokenUserName="NT AUTHORITY\IUSR"
                   authenticationType="anonymous"
                   activityId="{00000000-0000-0000-0C00-0080030000FF}"
                   failureReason="STATUS_CODE"
                   statusCode="404.4"
                   triggerStatusCode="404.4"
                   timeTaken="0"
                   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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="SiteId">1</Data>
      <Data Name="AppPoolId">webapp.us</Data>
      <Data Name="ConnId">1610612745</Data>
      <Data Name="RawConnId">0</Data>
      <Data Name="RequestURL">http://webapp.us:80/favicon.ico</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>4</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RequestMonitorModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>5</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RequestMonitorModule</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>4</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RewriteModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>5</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RewriteModule</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>4</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">FailedRequestsTracingModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>5</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">FailedRequestsTracingModule</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>4</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="FilterName">C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_filter.dll</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILTER_START</Opcode>
      <Keywords>
       <Keyword>Filter</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{00237F0D-73EB-4BCF-A232-126693595847}</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>13</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILTER_PREPROC_HEADERS_START</Opcode>
      <Keywords>
       <Keyword>Filter</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{00237F0D-73EB-4BCF-A232-126693595847}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</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>31</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="HeaderName">AspFilterSessionId:</Data>
      <Data Name="HeaderValue"></Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILTER_SET_REQ_HEADER</Opcode>
      <Keywords>
       <Keyword>Filter</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{00237F0D-73EB-4BCF-A232-126693595847}</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>14</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILTER_PREPROC_HEADERS_END</Opcode>
      <Keywords>
       <Keyword>Filter</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{00237F0D-73EB-4BCF-A232-126693595847}</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>0x8</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILTER_END</Opcode>
      <Keywords>
       <Keyword>Filter</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{00237F0D-73EB-4BCF-A232-126693595847}</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>5</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>PRE_BEGIN_REQUEST_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="Headers">Connection: keep-alive
    Keep-Alive: 300
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Accept-Encoding: gzip,deflate
    Accept-Language: en-us,en;q=0.5
    Host: webapp.us
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)
    </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>12</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="RequestURL">/favicon.ico</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>URL_CACHE_ACCESS_START</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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>13</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="PhysicalPath"></Data>
      <Data Name="URLInfoFromCache">false</Data>
      <Data Name="URLInfoAddedToCache">true</Data>
      <Data Name="ErrorCode">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>URL_CACHE_ACCESS_END</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <freb:Description Data="ErrorCode">The operation completed successfully.
     (0x0)</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</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>5</Level>
      <Opcode>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">2147483648</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_PATH</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">2147483648</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_PATH</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RequestFilteringModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RequestFilteringModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RewriteModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="HeaderName">X-Original-URL</Data>
      <Data Name="HeaderValue">/favicon.ico</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>42</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="OldUrl">/favicon.ico</Data>
      <Data Name="NewUrl">http://172.28.75.31:90/s1mobile-server/favicon.ico</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>URL_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>5</Level>
      <Opcode>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">RewriteModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">FailedRequestsTracingModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">FailedRequestsTracingModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">ConfigurationValidationModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">ConfigurationValidationModule</Data>
      <Data Name="Notification">1</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">BEGIN_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">2</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">2</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">AnonymousAuthenticationModule</Data>
      <Data Name="Notification">2</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="AuthTypeSupported">1</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">Anonymous</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{C33BBE8F-985B-4080-81E6-005F1A06B9E2}</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>27</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="RequestAuthType">1</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_REQUEST_AUTH_TYPE</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="RequestAuthType">Anonymous</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{C33BBE8F-985B-4080-81E6-005F1A06B9E2}</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>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="AuthType">1</Data>
      <Data Name="NTLMUsed">false</Data>
      <Data Name="RemoteUserName"></Data>
      <Data Name="AuthUserName"></Data>
      <Data Name="TokenImpersonationLevel">2</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_SUCCEEDED</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthType">Anonymous</freb:Description>
      <freb:Description Data="TokenImpersonationLevel">ImpersonationImpersonate</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{C33BBE8F-985B-4080-81E6-005F1A06B9E2}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</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>4</Level>
      <Opcode>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_END</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{C33BBE8F-985B-4080-81E6-005F1A06B9E2}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">AnonymousAuthenticationModule</Data>
      <Data Name="Notification">2</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">2</Data>
      <Data Name="fIsPostNotification">true</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">2</Data>
      <Data Name="fIsPostNotificationEvent">true</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">8</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">RESOLVE_REQUEST_CACHE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>15</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>OUTPUT_CACHE_LOOKUP_START</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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>16</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="Result">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>OUTPUT_CACHE_LOOKUP_END</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <freb:Description Data="Result">NOT_FOUND</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">8</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">RESOLVE_REQUEST_CACHE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">StaticCompressionModule</Data>
      <Data Name="Notification">16</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">StaticCompressionModule</Data>
      <Data Name="Notification">16</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpRedirectionModule</Data>
      <Data Name="Notification">16</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpRedirectionModule</Data>
      <Data Name="Notification">16</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IIS Web Core</Data>
      <Data Name="Notification">16</Data>
      <Data Name="HttpStatus">404</Data>
      <Data Name="HttpReason">Not Found</Data>
      <Data Name="HttpSubStatus">4</Data>
      <Data Name="ErrorCode">2147942523</Data>
      <Data Name="ConfigExceptionInfo"></Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>MODULE_SET_RESPONSE_ERROR_STATUS</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>
      <freb:Description Data="ErrorCode">The filename, directory name, or volume label syntax is incorrect.
     (0x8007007b)</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpLoggingModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpLoggingModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">ProtocolSupportModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">ProtocolSupportModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">IsapiFilterModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">CustomErrorModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotification">false</Data>
      <Data Name="fIsCompletion">false</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_START</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="HttpStatus">404</Data>
      <Data Name="HttpSubStatus">4</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>10</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="FileName">C:\inetpub\custerr\en-US\404.htm</Data>
      <Data Name="UserName">IUSR</Data>
      <Data Name="DomainName">NT AUTHORITY</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILE_CACHE_ACCESS_START</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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>11</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="Successful">true</Data>
      <Data Name="FileFromCache">true</Data>
      <Data Name="FileAddedToCache">false</Data>
      <Data Name="FileDirmoned">true</Data>
      <Data Name="LastModCheckErrorIgnored">true</Data>
      <Data Name="ErrorCode">0</Data>
      <Data Name="LastModifiedTime">Wed, 06 May 2009 19:54:11 GMT</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>FILE_CACHE_ACCESS_END</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <freb:Description Data="ErrorCode">The operation completed successfully.
     (0x0)</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="ModuleName">CustomErrorModule</Data>
      <Data Name="Notification">536870912</Data>
      <Data Name="fIsPostNotificationEvent">false</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_END</Opcode>
      <Keywords>
       <Keyword>RequestNotifications</Keyword>
      </Keywords>
      <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>
      <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</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>14</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="HttpsysCacheable">false</Data>
      <Data Name="Reason">6</Data>
      <Data Name="CachePolicy">0</Data>
      <Data Name="TimeToLive">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>HTTPSYS_CACHEABLE</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <freb:Description Data="Reason">URL_CHANGE_BY_FILTER</freb:Description>
      <freb:Description Data="CachePolicy">NO_CACHE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="Headers">Content-Type: text/html
    Server: Microsoft-IIS/7.0
    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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="Buffer">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
    &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
    &lt;head&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;/&gt;
    &lt;title&gt;404 - File or directory not found.&lt;/title&gt;
    &lt;style type=&quot;text/css&quot;&gt;
    &lt;!--
    body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
    fieldset{padding:0 15px 10px 15px;}
    h1{font-size:2.4em;margin:0;color:#FFF;}
    h2{font-size:1.7em;margin:0;color:#CC0000;}
    h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
    #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:&quot;trebuchet MS&quot;, Verdana, sans-serif;color:#FFF;
    background-color:#555555;}
    #content{margin:0 0 0 2%;position:relative;}
    .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
    --&gt;
    &lt;/style&gt;
    &lt;/head&gt;
    &lt;body&gt;
    &lt;div id=&quot;header&quot;&gt;&lt;h1&gt;Server Error&lt;/h1&gt;&lt;/div&gt;
    &lt;div id=&quot;content&quot;&gt;
     &lt;div class=&quot;content-container&quot;&gt;&lt;fieldset&gt;
      &lt;h2&gt;404 - File or directory not found.&lt;/h2&gt;
      &lt;h3&gt;The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.&lt;/h3&gt;
     &lt;/fieldset&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;/body&gt;
    &lt;/html&gt;
    </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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="BytesSent">1405</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="2009-06-16T13:44:06.829Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080030000FF}"/>
      <Execution ProcessID="3492" ThreadID="3252"/>
      <Computer>M2200-GATE01</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080030000FF}</Data>
      <Data Name="BytesSent">1405</Data>
      <Data Name="BytesReceived">399</Data>
      <Data Name="HttpStatus">404</Data>
      <Data Name="HttpSubStatus">4</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>
  • 06-18-2009, 1:59 PM In reply to

    • ruslany
    • Top 25 Contributor
    • Joined on 07-01-2007, 7:38 PM
    • Redmond, WA
    • Posts 660

    Re: Reverse Proxy not working

    From the trace file it looks like the URL rewrite module has changed the URL correctly to http://172.28.75.31:90/s1mobile-server/favicon.ico. Do you have ARR module installed? Also, have you enabled the proxy functionality in ARR (Check the “Enable proxy” checkbox located in Application Request Routing feature view is IIS Manager)

    http://ruslany.net
  • 06-22-2009, 10:36 AM In reply to

    • micxba
    • Not Ranked
    • Joined on 06-20-2005, 5:42 PM
    • Posts 9

    Re: Reverse Proxy not working

     Thank you ... totally missed that step in the instructions. My bad.

Page 1 of 1 (6 items)
Microsoft Communities