« Previous Next »

Not Answered Thread: Problem with compression and "application/soap+xml" MIME type

Last post 12-30-2008 11:48 PM by Jasen.Plietz. 2 replies.

 

RSS

Page 1 of 1 (3 items)

Sort Posts:

  • 12-24-2008, 8:33 PM

    • Jasen.Plietz
    • Not Ranked
    • Joined on 12-24-2008, 8:12 PM
    • San Francisco, CA
    • Posts 2

    Problem with compression and "application/soap+xml" MIME type

    For some reason when I register content (MIME) types with the "+" symbol, the IIS7 compression handler does not compress the response.  For example, I wrote a WCF service to invoke that exposes SOAP 1.1 and SOAP 1.2 messages.  IIS7 correctly compresses the response for text/xml (SOAP 1.1), but DOES NOT perform compression for application/soap+xml (SOAP 1.2).

    Here is the httpCompression element for my web server:
    <httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
      <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" />
      <dynamicTypes>
        <add mimeType="text/*" enabled="true" />
        <add mimeType="message/*" enabled="true" />
        <add mimeType="application/x-javascript" enabled="true" />
        <add mimeType="application/soap+xml" enabled="true" />
        <add mimeType="*/*" enabled="false" />
      </dynamicTypes>
      <staticTypes>
        <add mimeType="text/*" enabled="true" />
        <add mimeType="message/*" enabled="true" />
        <add mimeType="application/javascript" enabled="true" />
        <add mimeType="application/soap+xml" enabled="true" />
        <add mimeType="*/*" enabled="false" />
      </staticTypes>
    </httpCompression>

    If this is a bug, please direct me to the appropriate place to submit it.

    Thanks for any help,

    Jasen
  • 12-29-2008, 3:24 PM In reply to

    • anilr
    • Top 10 Contributor
    • Joined on 05-23-2006, 10:13 PM
    • Redmond, WA
    • Posts 2,343

    Re: Problem with compression and "application/soap+xml" MIME type

    Can you collect a failed request trace for the request in question?

    Anil Ruia
    Senior Software Design Engineer
    IIS Core Server
  • 12-30-2008, 11:48 PM In reply to

    • Jasen.Plietz
    • Not Ranked
    • Joined on 12-24-2008, 8:12 PM
    • San Francisco, CA
    • Posts 2

    Re: Problem with compression and "application/soap+xml" MIME type

    It's not really a failed request.  The server returns the content without compressing it.  I have included 2 request trace file contents (these are verbose).

    Here's the SOAP 1.2 request trace (application/soap+xml) that doesn't get compressed:

    <?xml version="1.0" encoding="UTF-8" ?>
    <?xml-stylesheet type='text/xsl' href='freb.xsl'?>
    <!-- saved from url=(0014)about:internet -->
    <failedRequest url="http://localhost/ServiceSamples/SimpleTestService.asmx"
                   siteId="1"
                   appPoolId="DefaultAppPool"
                   processId="4824"
                   verb="POST"
                   remoteUserName=""
                   userName=""
                   tokenUserName="NT AUTHORITY\IUSR"
                   authenticationType="anonymous"
                   activityId="{00000000-0000-0000-1000-0080010000F2}"
                   failureReason="STATUS_CODE"
                   statusCode="200"
                   triggerStatusCode="200"
                   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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="SiteId">1</Data>
      <Data Name="AppPoolId">DefaultAppPool</Data>
      <Data Name="ConnId">1610612751</Data>
      <Data Name="RawConnId">0</Data>
      <Data Name="RequestURL">http://localhost:80/ServiceSamples/SimpleTestService.asmx</Data>
      <Data Name="RequestVerb">POST</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="FilterName">C:\Windows\Microsoft.NET\Framework\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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Headers">Content-Length: 330
    Content-Type: application/soap+xml; charset=utf-8
    Accept: */*
    Accept-Encoding: GZIP
    Accept-Language: en-US
    Expect: 100-continue
    Host: localhost
    User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1)
    </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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="RequestURL">/ServiceSamples/SimpleTestService.asmx</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="PhysicalPath"></Data>
      <Data Name="URLInfoFromCache">true</Data>
      <Data Name="URLInfoAddedToCache">false</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="PhysicalPath">C:\InetPub\wwwroot\ServiceSamples\SimpleTestService.asmx</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="AuthTypeSupported">2</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">Basic</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>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="AuthTypeSupported">4</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">NT</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>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthentication</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>0</Level>
      <Opcode>1</Opcode>
      <Keywords>0xf</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">POST</Data>
      <Data Name="Data2">/ServiceSamples/SimpleTestService.asmx</Data>
      <Data Name="Data3"></Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetStart</Opcode>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>7</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">/LM/W3SVC/1/ROOT/ServiceSamples-2-128751710763270000</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetAppDomainEnter</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>8</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.HttpApplication</Data>
      <Data Name="Data2">Start</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetStartHandler</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.WindowsAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.WindowsAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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>3</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthentication</Data>
      <Data Name="Notification">2</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_COMPLETION</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="AuthTypeSupported">16</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">Digest</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>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DefaultAuthentication</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.DefaultAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.DefaultAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DefaultAuthentication</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ServiceModel</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.ServiceModel.Activation.ServiceHttpModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.ServiceModel.Activation.ServiceHttpModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ServiceModel</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">UrlAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.UrlAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.UrlAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">UrlAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">FileAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.FileAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.FileAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">FileAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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>5</Level>
      <Opcode>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ApplicationRequestRouting</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ApplicationRequestRouting</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>12</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetMapHandlerEnter</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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>37</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_READ_ENTITY_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>38</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="BytesReceived">330</Data>
      <Data Name="ErrorCode">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_READ_ENTITY_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>5</Level>
      <Opcode>51</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Buffer">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
    &lt;soap:Envelope xmlns:soap=&quot;http://www.w3.org/2003/05/soap-envelope&quot;&gt;
      &lt;soap:Body&gt;
        &lt;CreateOrder xmlns=&quot;http://services.schwab.com/&quot;&gt;
          &lt;product&gt;Microsoft Visual Studio 2008 Team Suite&lt;/product&gt;
          &lt;quantity&gt;100&lt;/quantity&gt;
        &lt;/CreateOrder&gt;
      &lt;/soap:Body&gt;
    &lt;/soap:Envelope&gt;</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_REQUEST_ENTITY</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>13</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetMapHandlerLeave</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>42</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetSessionDataBegin</Opcode>
      <Keywords>
       <Keyword>AppServices</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>43</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetSessionDataEnd</Opcode>
      <Keywords>
       <Keyword>AppServices</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</Data>
      <Data Name="Notification">128</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">EXECUTE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>18</Opcode>
      <Keywords>0x4</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetHttpHandlerEnter</Opcode>
      <Keywords>
       <Keyword>Page</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>19</Opcode>
      <Keywords>0x4</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetHttpHandlerLeave</Opcode>
      <Keywords>
       <Keyword>Page</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</Data>
      <Data Name="Notification">128</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">EXECUTE_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">512</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">UPDATE_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>5</Level>
      <Opcode>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">512</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">UPDATE_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">512</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">UPDATE_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>17</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="CachePolicy">0</Data>
      <Data Name="TimeToLive">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>OUTPUT_CACHE_UPDATE_START</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <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>18</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Result">5</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>OUTPUT_CACHE_UPDATE_END</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <freb:Description Data="Result">VERB_NOT_GET</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">512</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">UPDATE_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</Data>
      <Data Name="Notification">512</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">UPDATE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</Data>
      <Data Name="Notification">512</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">UPDATE_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">1024</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">LOG_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">1024</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">LOG_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">2048</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">END_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>9</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetEndHandler</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">2048</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">END_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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</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>4</Level>
      <Opcode>6</Opcode>
      <Keywords>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_START</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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>8</Opcode>
      <Keywords>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Reason">12</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_NOT_SUCCESS</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
      <freb:Description Data="Reason">NO_MATCHING_CONTENT_TYPE</freb:Description>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_END</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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>5</Level>
      <Opcode>52</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Reason">1</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_NOT_SEND_CUSTOM_ERROR</Opcode>
      <freb:Description Data="Reason">SETSTATUS_SUCCESS</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>5</Level>
      <Opcode>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="HttpsysCacheable">false</Data>
      <Data Name="Reason">22</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">VERB_NOT_GET</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Headers">Cache-Control: private, max-age=0
    Content-Type: application/soap+xml; charset=utf-8
    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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="Buffer">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;soap:Envelope xmlns:soap=&quot;http://www.w3.org/2003/05/soap-envelope&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt;&lt;soap:Body&gt;&lt;CreateOrderResponse xmlns=&quot;http://services.schwab.com/&quot;&gt;&lt;CreateOrderResult&gt;&lt;OrderId&gt;EPPW8970&lt;/OrderId&gt;&lt;OrderDescription&gt;100 Microsoft Visual Studio 2008 Team Suite&lt;/OrderDescription&gt;&lt;ProductName&gt;Microsoft Visual Studio 2008 Team Suite&lt;/ProductName&gt;&lt;ProductQuantity&gt;100&lt;/ProductQuantity&gt;&lt;ExpectedShipDate&gt;2009-01-03T04:24:36.87Z&lt;/ExpectedShipDate&gt;&lt;/CreateOrderResult&gt;&lt;/CreateOrderResponse&gt;&lt;/soap:Body&gt;&lt;/soap:Envelope&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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="BytesSent">846</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="2008-12-31T04:24:36.870Z"/>
      <Correlation ActivityID="{00000000-0000-0000-1000-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-1000-0080010000F2}</Data>
      <Data Name="BytesSent">846</Data>
      <Data Name="BytesReceived">621</Data>
      <Data Name="HttpStatus">200</Data>
      <Data Name="HttpSubStatus">0</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>

    Here's the SOAP 1.1 request trace (text/xml) that is correctly compressed: 

    <?xml version="1.0" encoding="UTF-8" ?>
    <?xml-stylesheet type='text/xsl' href='freb.xsl'?>
    <!-- saved from url=(0014)about:internet -->
    <failedRequest url="http://localhost:80/ServiceSamples/SimpleTestService.asmx"
                   siteId="1"
                   appPoolId="DefaultAppPool"
                   processId="4824"
                   verb="POST"
                   remoteUserName=""
                   userName=""
                   tokenUserName="NT AUTHORITY\IUSR"
                   authenticationType="anonymous"
                   activityId="{00000000-0000-0000-0C00-0080010000F2}"
                   failureReason="STATUS_CODE"
                   statusCode="200"
                   triggerStatusCode="200"
                   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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="SiteId">1</Data>
      <Data Name="AppPoolId">DefaultAppPool</Data>
      <Data Name="ConnId">1610612747</Data>
      <Data Name="RawConnId">0</Data>
      <Data Name="RequestURL">http://localhost:80/ServiceSamples/SimpleTestService.asmx</Data>
      <Data Name="RequestVerb">POST</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="FilterName">C:\Windows\Microsoft.NET\Framework\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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Headers">Content-Length: 332
    Content-Type: text/xml; charset=utf-8
    Accept: */*
    Accept-Encoding: GZIP
    Accept-Language: en-US
    Expect: 100-continue
    Host: localhost
    User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1)
    SOAPAction: http://services.schwab.com/CreateOrder
    </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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="RequestURL">/ServiceSamples/SimpleTestService.asmx</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="PhysicalPath">C:\InetPub\wwwroot\ServiceSamples\SimpleTestService.asmx</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="AuthTypeSupported">2</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">Basic</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>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="AuthTypeSupported">4</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">NT</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>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthentication</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>0</Level>
      <Opcode>1</Opcode>
      <Keywords>0xf</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">POST</Data>
      <Data Name="Data2">/ServiceSamples/SimpleTestService.asmx</Data>
      <Data Name="Data3"></Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetStart</Opcode>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>7</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">/LM/W3SVC/1/ROOT/ServiceSamples-2-128751710763270000</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetAppDomainEnter</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>8</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.HttpApplication</Data>
      <Data Name="Data2">Start</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetStartHandler</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.WindowsAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.WindowsAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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>3</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthentication</Data>
      <Data Name="Notification">2</Data>
      <Data Name="NotificationStatus">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>NOTIFY_MODULE_COMPLETION</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="AuthTypeSupported">16</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AUTH_START</Opcode>
      <Keywords>
       <Keyword>Authentication</Keyword>
      </Keywords>
      <freb:Description Data="AuthTypeSupported">Digest</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>28</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DefaultAuthentication</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.DefaultAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.DefaultAuthenticationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DefaultAuthentication</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ServiceModel</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.ServiceModel.Activation.ServiceHttpModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.ServiceModel.Activation.ServiceHttpModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ServiceModel</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">UrlAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.UrlAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.UrlAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">UrlAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">FileAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.FileAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Security.FileAuthorizationModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">FileAuthorization</Data>
      <Data Name="Notification">4</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">AUTHORIZE_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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>5</Level>
      <Opcode>1</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ApplicationRequestRouting</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ApplicationRequestRouting</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>12</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetMapHandlerEnter</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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>37</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_READ_ENTITY_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>38</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="BytesReceived">332</Data>
      <Data Name="ErrorCode">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_READ_ENTITY_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>5</Level>
      <Opcode>51</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Buffer">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
    &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;
      &lt;soap:Body&gt;
        &lt;CreateOrder xmlns=&quot;http://services.schwab.com/&quot;&gt;
          &lt;product&gt;Microsoft Visual Studio 2008 Team Suite&lt;/product&gt;
          &lt;quantity&gt;100&lt;/quantity&gt;
        &lt;/CreateOrder&gt;
      &lt;/soap:Body&gt;
    &lt;/soap:Envelope&gt;</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_REQUEST_ENTITY</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>13</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetMapHandlerLeave</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>42</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetSessionDataBegin</Opcode>
      <Keywords>
       <Keyword>AppServices</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>43</Opcode>
      <Keywords>0x8</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetSessionDataEnd</Opcode>
      <Keywords>
       <Keyword>AppServices</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">32</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">REQUEST_ACQUIRE_STATE</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</Data>
      <Data Name="Notification">128</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">EXECUTE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>18</Opcode>
      <Keywords>0x4</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetHttpHandlerEnter</Opcode>
      <Keywords>
       <Keyword>Page</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>4</Level>
      <Opcode>19</Opcode>
      <Keywords>0x4</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetHttpHandlerLeave</Opcode>
      <Keywords>
       <Keyword>Page</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">ManagedPipelineHandler</Data>
      <Data Name="Notification">128</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">EXECUTE_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Session</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</Data>
      <Data Name="Notification">256</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">RELEASE_REQUEST_STATE</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">512</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">UPDATE_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>5</Level>
      <Opcode>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">512</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">UPDATE_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">512</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">UPDATE_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>17</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="CachePolicy">0</Data>
      <Data Name="TimeToLive">0</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>OUTPUT_CACHE_UPDATE_START</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <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>18</Opcode>
      <Keywords>0x80</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Result">5</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>OUTPUT_CACHE_UPDATE_END</Opcode>
      <Keywords>
       <Keyword>Cache</Keyword>
      </Keywords>
      <freb:Description Data="Result">VERB_NOT_GET</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">HttpCacheModule</Data>
      <Data Name="Notification">512</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">UPDATE_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</Data>
      <Data Name="Notification">512</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">UPDATE_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">OutputCache</Data>
      <Data Name="Notification">512</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">UPDATE_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">1024</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">LOG_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">AspNetFilterModule</Data>
      <Data Name="Notification">1024</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">LOG_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">2048</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">END_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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>10</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineEnter</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>11</Opcode>
      <Keywords>0x2</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Data1">System.Web.Profile.ProfileModule</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetPipelineLeave</Opcode>
      <Keywords>
       <Keyword>Module</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid>
     </ExtendedTracingInfo>
    </Event>
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
     <System>
      <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>
      <EventID>0</EventID>
      <Version>0</Version>
      <Level>5</Level>
      <Opcode>9</Opcode>
      <Keywords>0x1</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ConnID">0</Data>
      <Data Name="Context ID">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>AspNetEndHandler</Opcode>
      <Keywords>
       <Keyword>Infrastructure</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">Profile</Data>
      <Data Name="Notification">2048</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">END_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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DigestAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">WindowsAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">BasicAuthenticationModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</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>4</Level>
      <Opcode>6</Opcode>
      <Keywords>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_START</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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>7</Opcode>
      <Keywords>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_SUCCESS</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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>9</Opcode>
      <Keywords>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="OriginalSize">636</Data>
      <Data Name="CompressedSize">457</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_DO</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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>0x40</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>DYNAMIC_COMPRESSION_END</Opcode>
      <Keywords>
       <Keyword>Compression</Keyword>
      </Keywords>
     </RenderingInfo>
     <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
      <EventGuid>{E60CEE96-4472-448D-A13C-2170B18220EC}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="ModuleName">DynamicCompressionModule</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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>5</Level>
      <Opcode>52</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Reason">1</Data>
     </EventData>
     <RenderingInfo Culture="en-US">
      <Opcode>GENERAL_NOT_SEND_CUSTOM_ERROR</Opcode>
      <freb:Description Data="Reason">SETSTATUS_SUCCESS</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>5</Level>
      <Opcode>2</Opcode>
      <Keywords>0x100</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="HttpsysCacheable">false</Data>
      <Data Name="Reason">22</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">VERB_NOT_GET</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Headers">Cache-Control: private, max-age=0
    Content-Type: text/xml; charset=utf-8
    Content-Encoding: gzip
    Vary: Accept-Encoding
    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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Buffer">‹</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>5</Level>
      <Opcode>49</Opcode>
      <Keywords>0x0</Keywords>
      <TimeCreated SystemTime="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="Buffer">Žþkœ|</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="BytesSent">705</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="2008-12-31T04:24:36.848Z"/>
      <Correlation ActivityID="{00000000-0000-0000-0C00-0080010000F2}"/>
      <Execution ProcessID="4824" ThreadID="1800"/>
      <Computer>MOBILEFUSION</Computer>
     </System>
     <EventData>
      <Data Name="ContextId">{00000000-0000-0000-0C00-0080010000F2}</Data>
      <Data Name="BytesSent">705</Data>
      <Data Name="BytesReceived">663</Data>
      <Data Name="HttpStatus">200</Data>
      <Data Name="HttpSubStatus">0</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>

     

    I hope this helps!

    Cheers,
    Jasen

    Jasen
Page 1 of 1 (3 items)