beamenwaerschoen
Goto Top

Server-connect ergibt Fehler 500.19

Hallo.

An unserem Server 2012 Ess wollte ich heute noch einen weiteren Client anbinden. Leider erscheint beim Aufrufen des Connectors per Browser die Fehlermledung 500. Ich habe dann die localhost-abfrage vom Server gemacht, aber dort erscheint auch nur der Fehler 500.19, bzw. 0x8007007e. Ich habe nun eine Weile lang MrGoogle befragt, komme aber einfach nicht mehr weiter. Es muss etwas mit dem IIS zu tun haben. Daher habe ich dort mal die Protokollierung(Failed Request Tracing ) der Sites aktiviert. Aber aus dem Log werde ich nicht schlau. Bei MS finde ich dieses: https://support.microsoft.com/de-de/kb/942055 Aber helfen tut es mir nicht.

Habt Ihr ne Idee?

Gruß und DANKE im Voraus für die Mühe.

bws


In der freb.xsl steht:

<?xml version="1.0" encoding="UTF-8" ?>  
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:freb="http://schemas.microsoft.com/win/2006/06/iis/freb" xmlns:ev="http://schemas.microsoft.com/win/2004/08/events/event" xmlns="http://www.w3.org/1999/xhtml" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:jsext="urn:schemas-microsoft-com:jsext" >   
<xsl:output method="html" media-type="text/html" omit-xml-declaration="yes" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>  
<!-- saved from url=(0014)about:internet -->


<msxsl:script language="javascript" implements-prefix="jsext" >  
    <![CDATA[
    
    function datediff(s, e)
    {
        var startDate = convertXMLDate(s);
        
        var endDate = convertXMLDate(e);
        return endDate - startDate;
    }
    
    function convertXMLDate(d)
    {
        
        var dateObj = new Date();
        
        var datepat = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).(\d{3})Z$/;
        
        var match = datepat.exec(d);
        
        if ( match != null && match.length > 0 )
        {
            dateObj.setFullYear(match[1]);
            dateObj.setMonth(match[2]);
            dateObj.setDate(match[3]);
            dateObj.setHours(match[4]);
            dateObj.setMinutes(match[5]);
            dateObj.setSeconds(match[6]);
            dateObj.setMilliseconds(match[7]);
        }    
        
        return dateObj.getTime();
    }
    
    function formatDate(d)
    {
        
        var date = new Date(convertXMLDate(d));
        
        var strDate = new String();
        strDate = date.getFullYear() + "-" + date.getMonth() + "-" + date.getDate();  
        strDate = strDate + ", " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds() + ":" + date.getMilliseconds();  
        return strDate;
    }
        
]]>
</msxsl:script>
    
          
    <xsl:template name="Severity">  
        <xsl:param name="Duration"/>  
        <xsl:param name="DisplayInformational" select="0"/>  
        <xsl:choose>
            <xsl:when test="./ev:System/ev:Level = 3"><div class="severity-warning"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Warning'"/></xsl:call-template></div></xsl:when>  
            <xsl:when test="./ev:System/ev:Level = 2"><div class="severity-error"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Error'"/></xsl:call-template></div></xsl:when>  
            <xsl:when test="./ev:System/ev:Level = 1"><div class="severity-critical"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CriticalError'"/></xsl:call-template></div></xsl:when>  
            <xsl:when test="./ev:System/ev:Level = 5 and $DisplayInformational=1"><div class="severity-verbose"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Verbose'"/></xsl:call-template></div></xsl:when>  
            <xsl:when test="./ev:System/ev:Level = 4 and $DisplayInformational=1"><div class="severity-informational"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Informational'"/></xsl:call-template></div></xsl:when>  
        </xsl:choose>
    </xsl:template>
    
    <xsl:template match="/">  
    <html>
        <head>
            <xsl:text disable-output-escaping="yes">  
                <![CDATA[<!-- saved from url=(0014)about:internet -->]]>
            </xsl:text>
            <title><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'RequestDiagnostics'"/></xsl:call-template><xsl:value-of select="./failedRequest/@url"/>, STATUS_CODE <xsl:value-of select="./failedRequest/@statusCode"/>, <xsl:value-of select="./failedRequest/@timeTaken"/> ms, <xsl:value-of select="./failedRequest/@verb"/> </title>  

            <style type="text/css">              
               <xsl:text disable-output-escaping="yes"><![CDATA[  
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    HTML TAGS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body.iistraceinfo { 
    margin:0;
    padding:0;
    font-size:.7em;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    background-color:white;
    }

fieldset {
    padding:2 0px 1px 1px;
    margin:8px;
    position:relative;
    }

.summary-container fieldset {
    padding-bottom:5px;
    margin-top:4px;
    }
    
fieldset fieldset {
    padding:2px 0px 1px 10px;
    margin:10px 0;
    }

.no-border {
    border: none;
    }


legend {
    color:#333333;
    padding:10px 20px 10px 9.5em;
    margin:0 0 5px 0;
    }

legend.no-expand-all {
    padding:2px 15px 4px 10px;
    margin:0 0 0 -12px;
    }

.summary-container legend {
    -moz-border-radius: 5px;
    border-radius: 5px;
    color:#333333;
    padding:4px 15px 4px 10px;
    margin:4px 0 0 12px;
    _margin-top:0px; /* IE 6 will read this only */
    border-top:1px solid #EDEDED;
    border-left:1px solid #EDEDED;
    border-right:1px solid #969696;
    border-bottom:1px solid #969696;
    background:#E7ECF0;
    font-weight:bold;
    font-size:1em;
    }

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    HEADINGS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
h1 { 
    font-size:1.2em;
    margin:0;
    word-wrap:break-word;
    text-align:left;
    }
    
h2 { 
    font-size:1.1em;
    margin:0 0 0 0;
    display:inline;
    }

.summary-container h2 {
    margin-bottom:-17px;
    }

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    LINKS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
a:link, a:visited { 
    color:#007EFF;
    font-weight:bold;
    text-decoration:none;
    }
    
a:hover { 
    text-decoration:underline; 
    }
    
a .expand-collapse {
    text-decoration:none;
    }


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    HEADER
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#header { 
    width:95%;
    margin:0 0 0 0;
    padding:6px 2% 6px 3%;
    font-family:"trebuchet MS", Verdana, sans-serif;  
    color:#FFF;
    background-color:#5C87B2;
    text-align:right;
    }

#header p {
    margin:1px 0 1px 0;
    padding:0;
    font-size:1.2em;
    font-weight:bold;
    }

#header a {
    color:#F1F7FC;
    }

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    MENU
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#menu_container,
#sub_menu_container { 
    width:98%;
    _height:44px;
    min-height:44px;
    margin:0 0 5px 0;
    padding:8px 0 0 2%;
    color:#FFFFFF;
    background-color:#5C87B2;
    /*background-color:#5A7FA5;*/
    border-bottom:1px dotted #C1CFDD;
    border-top:1px dotted #4A6C8E;
/*    progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#AABDD0,endColorStr=#125295);
*/    position:relative;    
    }
    
#menu_container ul,
#sub_menu_container ul {
    margin:0;
    }
    
#menu_container li,
#sub_menu_container li {
    list-style:none;
    float:left;
    position:relative;
    text-align:center;
    }

#menu_container a:link,
#menu_container a:visited,
#sub_menu_container a:link,
#sub_menu_container a:visited {
    color:#fff;
    display:block;
    _height:24px;
    min-height:24px;
    padding:5px 10px 4px 10px;
    float:left;
    text-align:center;
    font-weight:bold;
    font-size:.9em;
    text-decoration:none;
    border:1px dotted #224870;
    }
    
#menu_container a.active:link,
#menu_container a.active:visited,
#sub_menu_container a.active:link,
#sub_menu_container a.active:visited,
#sub_menu_container a.parent-tab-highlight:link,
#sub_menu_container a.parent-tab-highlight:visited {
    color:#000;
    border-top:1px solid #224870;
    background:#B3CAD9;
    padding-bottom:3px;
    _height:35px;
    min-height:35px;
    }

#menu_container a#viewErrors:link,
#menu_container a#viewErrors:visited,
#sub_menu_container a#viewDetails:link,
#sub_menu_container a#viewDetails:visited {
    border-left:1px solid #224870;
    }

#menu_container a:hover,
#sub_menu_container a:hover {
    text-decoration:underline;
    }
    
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    SUB MENU SPECIFIC STYLES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#sub_menu_container { 
    margin:-10px 0 5px 0;
    border-top:none;
    background-color:#B3CAD9;
    }

#sub_menu_container a.active:link,
#sub_menu_container a.active:visited {
    background-color:white;
    }
    
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    TABLES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
td,
th { 
    vertical-align:top;
    padding:1px; 
    text-align:left;
    }

thead th {
    background-color:#5C81A7;
    }

table {
    margin:8px 0 4px 0;
    }

table.request-summary {
    margin:0px 0 5px 0;
    }

table.column-1 {
    width:55%;
    }

table.column-2 {
    float:right;
    width:43%;
    }
        
.request-summary th {
    width:28%;
    text-align:left;
    white-space:nowrap;
    }
    
table.column-2 th {
    width:48%;
    }

/* REQUEST SUMMARY TABLE */

.request-summary td,
.request-summary th {
    padding:3px 6px;
    font-weight:normal; 
    }

.request-summary th {
    color:#808080;
    font-weight:bold; 
    text-align:right;
    }

.request-summary tr.alt td, 
.request-summary tr.alt th { 
    background-color:#F8F8F8; 
    }
    
table tr.alt td, 
table tr.alt th { 
    background-color:#F8F8F8;
    }
     
fieldset fieldset table tr.alt td, 
fieldset fieldset table tr.alt th { 
    background-color:transparent;
}     
     
/* columns */

td.col-number,
th.col-number {
    width:35px;
    }

td.col-actions,
th.col-actions {
    width:65px;
    }

td.col-view,
th.col-view {
    width:65px;
    }

td.col-severity,
th.col-severity {
    width:70px;
    }
    
td.col-event,
th.col-event {
    }

td.col-notification,
th.col-notification {
    }
    
td.col-name,
th.col-name {
    width:35%;
    }

td.col-filter-module,
th.col-filter-module {
    width:35%;
    }

td.col-duration,
th.col-duration {
    width:65px;
    text-align:center;
    font-weight:bold;
    }

td.event-data {
    word-wrap:break-word;
    word-break:break-all;
    white-space:pre-wrap;
    }
td.event-name {
    word-wrap:break-word;
    word-break:break-all;
    }
.pre-event-data {
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:1em;
    margin-bottom:0px;
    white-space:pre;
    word-wrap:break-word;
    }
td.col-uri,
th.col-uri {
    width:30%;
    }

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    NESTED TABLES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* NESTED TABLE CELLS */
table table tr td,
table table tr th,
table table tr.alt td,
table table tr.alt th { 
    background-color:#FFF;
    }

/* NESTED TABLE CELLS in ALT PARENT ROWS */
table tr.alt table tr td,
table tr.alt table tr th,
table tr.alt table tr.alt td,
table tr.alt table tr.alt th { 
    background-color:white; /*just changed*/
    }
    
/* NESTED TABLE TH HEADERS */
table table th,
fieldset fieldset table th{  
    font-weight:normal;
    width:40%;
    text-align:right;
    color:#808080;
    padding-right:8px;
    }
    
    
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    SORTABLE TABLES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
table.sortable a.sortheader { 
    display:block; 
    color:#FFF;
    }
    
table.sortable span.sortarrow { 
    color:#FFF; 
    text-decoration:none; 
    font-size:1.2em;
    }   

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    SEVERITY
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.severity-critical,
.severity-error,
.severity-warning,
.severity-failed,
.severity-informational,
.severity-verbose {
    font-family:"Courier New", Courier, monospace;  
    color:#990000;
    font-weight:bold;
    padding:0 10px;
    font-size:1.2em;
    line-height:1.1em;
    }
    
.severity-critical {
    background:#990000;
    border:3px solid #990000;
    text-transform:uppercase;
    color:#FFF;
    }

.severity-error {
    background:#FFE4CC;
    border:3px solid #990000;
    text-transform:uppercase;
    }

.severity-warning {
    background:#FFFFCC;
    border:1px solid #CD8282;
    }

.severity-failed {
    background:#E4FAC8;
    font-style:italic;
    color:#BB7700;
    }
    
.severity-informational {
    color:#B0B0B0;
    }

.severity-verbose {
    color:#919191;
    }

/* STYLES WHEN INSIDE A TABLE COLUMN */
td .severity-critical,
td .severity-error,
td .severity-warning,
td .severity-failed,
td .severity-informational,
td .severity-verbose {
    display:block;
    width:6em;
    text-align:center;
    padding:4px 2px;
    margin-left:0;
    font-size:1.1em;
    float:left;
    }

/* STYLES WHEN INSIDE THE COMPLETE TRACE*/
fieldset div.severity-critical,
fieldset div.severity-error,
fieldset div.severity-warning,
fieldset div.severity-failed,
fieldset div.severity-informational,
fieldset div.severity-verbose  {
    float:right;
    width:11em;
    text-align:left;
    padding:1px 2px;
    font-size:1.1em;
    }

/* SOME HAVE THICK BORDERS SO WE RE-STYLE THEM */
fieldset div.severity-critical,
fieldset div.severity-error {
    top:1px;
    text-align:center;
    }

fieldset div.severity-warning {
    top:2px;
    text-align:center;
    }

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
    MISC STYLES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.summary-container,
.content-container {
    background:#FFF;
    width:98%;
    margin:8px 0 0 1%;
    padding:0 0 1px 0;
    position:relative;
    }

div.outer { 
    width:90%; 
    margin:15px;
    }
    
div.buffer {
    padding-top:7px; 
    padding-bottom:17px; 
    }
    
.small { 
    font-size:.9em; 
    }
    
div.hidden { 
    display:none 
    }
    
.highlight {
    background-color:Yellow;
    }

.tinylink {
    font-size:.9em;
    }

.no-data {
    background:#B3CAD9;
    font-family:Verdana, Arial, Helvetica, sans-serif;
	color:black;
    font-weight:bold;
    padding:5px;
    text-align:center;
    font-style:italic;
    }
    
.expand-collapse {
    font-family:"Courier New", Courier, monospace;  
    font-weight:bold;
    padding:0 6px 0 0;
    font-size:1.2em;
    text-decoration:none;
    }

.expand-collapse-all {
    font-size:1em;
    color:#333333;
    padding:3px 12px 3px 10px;
    border-top:1px solid #EDEDED;
    border-left:1px solid #EDEDED;
    border-right:1px solid #969696;
    border-bottom:1px solid #969696;
    background:#E7ECF0;
    font-weight:bold;
    font-size:1.1em;
    position:absolute;
    top:5px;
    left:20px;
    z-index:100;
    text-decoration:none;
    }

.duration {
    float:right;
    width:6em;
    text-align:right;
    padding:1px 5px 0 0;
    margin-left:25px;
    }

.duration-value {
    font-size:.9em;
    }

span.iistraceinfo { background-color:white; color:black;font-size:1em; word-wrap: break-word; }
span.iistraceinfo table { font-size:1em; cellspacing:0; cellpadding:0; margin-bottom:25; width:95%;}
span.iistraceinfo tr.subhead { background-color:cccccc;}
span.iistraceinfo th { padding:0,3,0,3 }
span.iistraceinfo td { padding:0,30,0,3;white-space:pre;word-wrap: break-word;white-space: pre-wrap;}
span.iistraceinfo tr.alt { background-color:F8F8F8; color:black }
span.iistraceinfo a:hover { color:darkblue;text-decoration:none; }
span.iistraceinfo table td { padding-right:20 }
]]></xsl:text>
</style>

<script type="text/javascript">  
<xsl:text disable-output-escaping="yes"><![CDATA[  
                //addEvent(window, "unload", backCheck);  
                var lastSectionName = null;
                var lastTabName = null;
                var currentSectionName = null;
                var currentTabName = null;
                /*function backCheck(e)
                {
                    if ( lastSectionName != null )
                    {
                        alert("loc: " + window.location);  
                        window.location.replace(window.location + "?sectionName=" + lastSectionName + "&tabName=" + lastTabName);  
                    }
                }*/
                var styles = new Object();

                function toggleDiv(divId, expand)
                {
                    var d = window.document.getElementById(divId + '_details');  
                    var i = window.document.getElementById(divId + '_button');  
              
                    if( expand == null || typeof(expand) == 'undefined' )  
                        expand = (d.style.display == 'block'?false:true);  
              
                    if ( expand )
                    {
                        d.style.display = 'block';  
                        i.innerHTML = "-";  
                    }
                    else
                    {
                        d.style.display = 'none';  
                        i.innerHTML = "+";  
                    }
                }
            
                function toggleAll(expandAllText, collapseAllText, sectionId)
                {
                    var currentState = null;
                    var expand = true;

  
                    // Determine the current state.
                    eval("currentState = window." + sectionId + "_expand;");  
                    if ( currentState == null )
                        expand = false; // default state is now expand
                    else if ( currentState == false )
                        expand = true;
                    else
                        expand = false;
    
                    expandAll(expandAllText, collapseAllText, sectionId, expand);
                    
                    eval("window." + sectionId + "_expand = " + expand + ";");  
                }
            
                function expandAll(expandAllText, collapseAllText, sectionId, expand)
                {

                    var expandButton = window.document.getElementById(sectionId + "_button");  
                    var indexElements = null;
                    
                    if ( sectionId == "section_detail" )  
                        indexElements = window.document.getElementsByTagName("fieldset");  
                    else
                        indexElements = window.document.getElementsByTagName("tr");  

                    
                    for ( var i = 0; i < indexElements.length; i++)
                    {
                        if ( indexElements[i].id && indexElements[i].id.indexOf(sectionId) >= 0 )
                            toggleDiv(indexElements[i].id, expand);
                    }
                    
                    if ( expandButton && expandButton.innerHTML)
                        if ( expand == true )
                            expandButton.innerHTML = "<span class='expand-collapse'>-</span>" + collapseAllText;  
                        else
                            expandButton.innerHTML = "<span class='expand-collapse'>+</span>" + expandAllText;  
                }
            
                function findInDetail(indexNumber)
                {
                    // Change the report to "All Events"  
                    setView('section_detail', 'viewDetails');  
                    
                    // Navigate to the indexNumber anchor.
                    
                    window.location.replace("#detail_" + indexNumber);  
                    
                    //Fat.fade_element(id, fps, duration, from, to)                                                         
                    Fat.fade_element('section_detail_' + indexNumber, null, null, '#ffff66', '#ffffff' );  
                }

                var currentView = null;
                var currentTabId = null;
                function setView(divId, tabId)
                {
                    
                    lastSectionName = currentSectionName;
                    lastTabName = currentTabName;
                    currentSectionName = divId;
                    currentTabName = tabId;
                    // Get the value of the radioReportOptions radio.
                    //var rg = window.document.getElementsByName("radioView");  
                    var currentViewElement = null;
                    var currentTabElement = null;
                    var selectedViewElement = null;
                    var selectedTabElement = null;
                    var requestDetailsElement = window.document.getElementById('sub_menu_container');  
                    var requestDetailsTab = window.document.getElementById('requestDetails');  
                    var requestSummary = window.document.getElementById('section_generalinformation');  
                    
                    switch( divId )
                    {
                    case "section_errors":  
                    case "section_compact":  
                        if ( requestDetailsElement )
                            requestDetailsElement.style.display = 'none';  
                        if ( requestDetailsTab )
                            requestDetailsTab.className = "";  
                        break;
                    case "section_detail":  
                        if ( requestDetailsElement )
                            requestDetailsElement.style.display = 'block';  
                        if ( requestDetailsTab )
                            requestDetailsTab.className = "active";  
                        break;
                    }
              
                    // Hide the current view.
                    if ( currentView != null && currentTabId != null )
                    {
                        currentViewElement = window.document.getElementById(currentView);
                        currentTabElement = window.document.getElementById(currentTabId);
                        if ( currentViewElement )
                            currentViewElement.style.display = 'none';  
                        if ( currentTabElement )
                            currentTabElement.className = "";  
                    }
                    
                    // Show the selected view.
                    selectedViewElement = window.document.getElementById(divId);
                    selectedTabElement = window.document.getElementById(tabId);
                    
                    if ( selectedViewElement )
                        selectedViewElement.style.display = 'block';  
              
                    selectedTabElement.className = "active";  
              
                    switch( divId )
                    {
                    case "section_errors":  
                        if ( requestSummary )
                            requestSummary.style.display = 'block';  
                        //toggleDiv("section_generalinformation", true);  
                        break;
                    case "section_compact":  
                    case "section_detail":  
                        if ( requestSummary )
                            requestSummary.style.display = 'none';  
                        //toggleDiv("section_generalinformation", false);  
                        break;
                    }
              
                    currentView = divId;
                    currentTabId = tabId;
                }
            
                function load()
                {   
                    // If there is a section that needs to be viewed, show it.
                    /*alert("search: " + window.location.search);  
                    if ( window.location.search.indexOf("sectionName", 0) >= 0 )  
                    {
                        var nv = window.location.search.split('&');  
                        var sn = nv.split('=')[1];  
                        var tn = nv[1].split('=')[1];  
                        alert("sn: " + sn + ", tn: " + tn);  
                        setView(sn, tn);
                        return;
                    }
                    alert("test2");*/  
                    setView('section_errors','viewErrors');  
                }
            
                // Sort Table
                addEvent(window, "load", sortables_init);  

                var SORT_COLUMN_INDEX;

                function sortables_init() {
                        // Find all tables with class sortable and make them sortable
                        if (!document.getElementsByTagName) return;
                        tbls = document.getElementsByTagName("table");  
                        for (ti=0;ti<tbls.length;ti++) {
                                thisTbl = tbls[ti];
                                if (((' '+thisTbl.className+' ').indexOf("sortable") != -1) && (thisTbl.id)) {  
                                        //initTable(thisTbl.id);
                                        ts_makeSortable(thisTbl);
                                }
                        }
                
                        //alert("boo: " + window.document.getElementById('defaultsortme'));  
                        //ts_resortTable(window.document.getElementById('defaultsortme'), '0'),   
                }

                function ts_makeSortable(table) {
                        var defaultCell = null
                        var defaultIndex = null;
                        
                        if (table.rows && table.rows.length > 0) {
                                var firstRow = table.rows;
                        }
                        if (!firstRow) return;
                
                        // We have a first row: assume it's the header, and make its contents clickable links  
                        for (var i=0;i<firstRow.cells.length;i++) {
                                var cell = firstRow.cells[i];
                                var txt = ts_getInnerText(cell);
                                /*cell.innerHTML = '<a href="#" class="sortheader" '+   
                                'onclick="ts_resortTable(this, '+i+');return false;" alt="Sort By This Column">' +   
                                txt+'<span class="sortarrow">&nbsp;</span></a>';*/  
                                
                                // BDG: Added default sort direction: desc class for descending.
                                if ( (' '+cell.className+' ').indexOf("desc") != -1 )  
                                {
                                    cell.innerHTML = '<a href="#" class="sortheader" '+   
                                    'onclick="ts_resortTable(this, '+i+');return false;" alt="Sort By This Column">' +   
                                    txt+'<span class="sortarrow" sortdir="down">&nbsp;</span></a>';  
                                }
                                else
                                {
                                    cell.innerHTML = '<a href="#" class="sortheader" '+   
                                    'onclick="ts_resortTable(this, '+i+');return false;" alt="Sort By This Column">' +   
                                    txt+'<span class="sortarrow">&nbsp;</span></a>';  
                                }
                                
                                if ( (' '+cell.className+' ').indexOf("defaultsort") != -1 )  
                                {
                                    defaultCell = cell;
                                    defaultIndex = i;
                                    var span;
                                    // Mark default sorted column in table with down arrow symbol
                                    for (var ci=0;ci<defaultCell.firstChild.childNodes.length;ci++) 
                                    {
                                        if (defaultCell.firstChild.childNodes[ci].tagName && defaultCell.firstChild.childNodes[ci].tagName.toLowerCase() == 'span')   
                                        {
                                            span = defaultCell.firstChild.childNodes[ci];
                                            span.setAttribute('sortdir','down');  
                                            span.innerHTML = '&darr;';  
                                        }
                                    }

                                }
                        }
                
                        // ts_makeSortable gets called on page load, so don't sort tables here.  
                        // If sorting happens here, page load time goes up.
                        //if ( defaultCell)
                        //    ts_resortTable(defaultCell.firstChild, defaultIndex);
                }

                function ts_getInnerText(el) {
                    if (typeof el == "string") return el;  
                    if (typeof el == "undefined") { return el };  
                    if (el.innerText) return el.innerText;    //Not needed but it is faster
                    var str = "";  
                
                    var cs = el.childNodes;
                    var l = cs.length;
                    for (var i = 0; i < l; i++) {
                        switch (cs[i].nodeType) {
                            case 1: //ELEMENT_NODE
                                str += ts_getInnerText(cs[i]);
                                break;
                            case 3:    //TEXT_NODE
                                str += cs[i].nodeValue;
                                break;
                        }
                    }
                    return str;
                }

                function ts_resortTable(lnk,clid) {
                        // get the span
                        var span;
                        for (var ci=0;ci<lnk.childNodes.length;ci++) {
                                if (lnk.childNodes[ci].tagName && lnk.childNodes[ci].tagName.toLowerCase() == 'span') span = lnk.childNodes[ci];  
                        }
                        var spantext = ts_getInnerText(span);
                        var td = lnk.parentNode;
                        var column = clid || td.cellIndex;
                        var table = getParent(td,'TABLE');  
                
                        // Work out a type for the column
                        if (table.rows.length <= 1) return;
                        var itm = ts_getInnerText(table.rows[1].cells[column]);
                        sortfn = ts_sort_caseinsensitive;
                        if (table.className.indexOf("col-number") != -1) {  
                        	sortfn =ts_sort_numeric;
                      	}
                        else if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d\d\d$/)) {
                            sortfn = ts_sort_date;
                        }
                        else if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d$/)) {
                            sortfn = ts_sort_date;
                        }
                        else if  (itm.match(/^[\d\.]+$/) || itm == "<!--EmptyNumber-->" ) {  
                            sortfn = ts_sort_numeric;
                        }
                        
                        SORT_COLUMN_INDEX = column;
                        var firstRow = new Array();
                        var newRows = new Array();
                        for (i=0;i<table.rows.length;i++) { firstRow[i] = table.rows[i]; }
                        for (j=1;j<table.rows.length;j++) { newRows[j-1] = table.rows[j]; }

                        newRows.sort(sortfn);

                        if (span.getAttribute("sortdir") == 'down') {  
                                ARROW = '&uarr;';  
                                newRows.reverse();
                                span.setAttribute('sortdir','up');  
                        } else {
                                ARROW = '&darr;';  
                                span.setAttribute('sortdir','down');  
                        }
                        
                        // BDG: Set the 'alt' class.  
                        for ( i = 0; i < newRows.length; i++ )
                        {
                            if ( i % 2 == 0 )
                                newRows[i].className = "alt";  
                            else
                                newRows[i].className = ""  
                        }
                
                        // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
                        // don't do sortbottom rows  
                        for (i=0;i<newRows.length;i++) { if (!newRows[i].className || (newRows[i].className && (newRows[i].className.indexOf('sortbottom') == -1))) table.tBodies.appendChild(newRows[i]);}  
                        // do sortbottom rows only
                        for (i=0;i<newRows.length;i++) { if (newRows[i].className && (newRows[i].className.indexOf('sortbottom') != -1)) table.tBodies.appendChild(newRows[i]);}  
                
                        // Delete any other arrows there may be showing
                        var allspans = document.getElementsByTagName("span");  
                        for (var ci=0;ci<allspans.length;ci++) {
                                if (allspans[ci].className == 'sortarrow') {  
                                        if (getParent(allspans[ci],"table") == getParent(lnk,"table")) { // in the same table as us?  
                                                allspans[ci].innerHTML = '&nbsp;&nbsp;&nbsp;';  
                                        }
                                }
                        }
                    
                        span.innerHTML = ARROW;
                }

                function getParent(el, pTagName) {
                    if (el == null) return null;
                    else if (el.nodeType == 1 && el.tagName.toLowerCase() == pTagName.toLowerCase())    // Gecko bug, supposed to be uppercase
                        return el;
                    else
                        return getParent(el.parentNode, pTagName);
                }
                function ts_sort_date(a,b) {
                        // y2k notes: two digit years less than 50 are treated as 20XX, greater than 50 are treated as 19XX
                        aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]);
                        bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]);
                        if (aa.length == 10) {
                                dt1 = aa.substr(6,4)+aa.substr(3,2)+aa.substr(0,2);
                        } else {
                                yr = aa.substr(6,2);
                                if (parseInt(yr) < 50) { yr = '20'+yr; } else { yr = '19'+yr; }  
                                dt1 = yr+aa.substr(3,2)+aa.substr(0,2);
                        }
                        if (bb.length == 10) {
                                dt2 = bb.substr(6,4)+bb.substr(3,2)+bb.substr(0,2);
                        } else {
                                yr = bb.substr(6,2);
                                if (parseInt(yr) < 50) { yr = '20'+yr; } else { yr = '19'+yr; }  
                                dt2 = yr+bb.substr(3,2)+bb.substr(0,2);
                        }
                        if (dt1==dt2) return 0;
                        if (dt1<dt2) return -1;
                        return 1;
                }

                function ts_sort_numeric(a,b) { 
                        aa = parseFloat(ts_getInnerText(a.cells[SORT_COLUMN_INDEX]));
                        //if (isNaN(aa)) aa = 0;
                        if (isNaN(aa))
                            return 1;
                        bb = parseFloat(ts_getInnerText(b.cells[SORT_COLUMN_INDEX])); 
                        //if (isNaN(bb)) bb = -1;
                        if (isNaN(bb))
                            return -1;
                        return aa-bb;
                }

                function ts_sort_caseinsensitive(a,b) {
                        aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]).toLowerCase();
                        bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]).toLowerCase();
                        if (aa==bb) return 0;
                        if (aa<bb) return -1;
                        return 1;
                }

                function ts_sort_default(a,b) {
                        aa = ts_getInnerText(a.cells[SORT_COLUMN_INDEX]);
                        bb = ts_getInnerText(b.cells[SORT_COLUMN_INDEX]);
                        if (aa==bb) return 0;
                        if (aa<bb) return -1;
                        return 1;
                }


                function addEvent(elm, evType, fn, useCapture)
                // addEvent and removeEvent
                // cross-browser event handling for IE5+,  NS6 and Mozilla
                // By Scott Andrew
                {
                    if (elm.addEventListener){
                        elm.addEventListener(evType, fn, useCapture);
                        return true;
                    } else if (elm.attachEvent){
                        var r = elm.attachEvent("on"+evType, fn);  
                        return r;
                    } else {
                        alert("Handler could not be removed");  
                    }
                } 
                
                /*  FADE METHODS */
                var Fat = {
                    make_hex : function (r,g,b) 
                    {
                        r = r.toString(16); if (r.length == 1) r = '0' + r;  
                        g = g.toString(16); if (g.length == 1) g = '0' + g;  
                        b = b.toString(16); if (b.length == 1) b = '0' + b;  
                        return "#" + r + g + b;  
                    },
                    fade_all : function ()
                    {
                        var a = document.getElementsByTagName("*");  
                        for (var i = 0; i < a.length; i++) 
                        {
                            var o = a[i];
                            var r = /fade-?(\w{3,6})?/.exec(o.className);
                            if (r)
                            {
                                if (!r[1]) r[1] = "";  
                                if (o.id) Fat.fade_element(o.id,null,null,"#"+r[1]);  
                            }
                        }
                    },
                    fade_element : function (id, fps, duration, from, to) 
                    {
                        if (!fps) fps = 30;
                        if (!duration) duration = 3000;
                        if (!from || from=="#") from = "#FFFF33";  
                        if (!to) to = this.get_bgcolor(id);
                        
                        var frames = Math.round(fps * (duration / 1000));
                        var interval = duration / frames;
                        var delay = interval;
                        var frame = 0;
                        
                        if (from.length < 7) from += from.substr(1,3);
                        if (to.length < 7) to += to.substr(1,3);
                        
                        var rf = parseInt(from.substr(1,2),16);
                        var gf = parseInt(from.substr(3,2),16);
                        var bf = parseInt(from.substr(5,2),16);
                        var rt = parseInt(to.substr(1,2),16);
                        var gt = parseInt(to.substr(3,2),16);
                        var bt = parseInt(to.substr(5,2),16);
                        
                        var r,g,b,h;
                        while (frame < frames)
                        {
                            r = Math.floor(rf * ((frames-frame)/frames) + rt * (frame/frames));
                            g = Math.floor(gf * ((frames-frame)/frames) + gt * (frame/frames));
                            b = Math.floor(bf * ((frames-frame)/frames) + bt * (frame/frames));
                            h = this.make_hex(r,g,b);
                        
                            setTimeout("Fat.set_bgcolor('"+id+"','"+h+"')", delay);  

                            frame++;
                            delay = interval * frame; 
                        }
                        setTimeout("Fat.set_bgcolor('"+id+"','"+to+"')", delay);  
                    },
                    set_bgcolor : function (id, c)
                    {
                        var o = document.getElementById(id);
                        o.style.backgroundColor = c;
                    },
                    get_bgcolor : function (id)
                    {
                        var o = document.getElementById(id);
                        while(o)
                        {
                            var c;
                            if (window.getComputedStyle) c = window.getComputedStyle(o,null).getPropertyValue("background-color");  
                            if (o.currentStyle) c = o.currentStyle.backgroundColor;
                            if ((c != "" && c != "transparent") || o.tagName == "BODY") { break; }  
                            o = o.parentNode;
                        }
                        if (c == undefined || c == "" || c == "transparent") c = "#FFFFFF";  
                        var rgb = c.match(/rgb\s*\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/);
                        if (rgb) c = this.make_hex(parseInt(rgb[1]),parseInt(rgb[2]),parseInt(rgb[3]));
                        return c;
                    }
                }
            
            ]]>
 </xsl:text>
 </script>
    
        </head>
        <body class="iistraceinfo" onload="load();">  
            <div id="header">  
                <h1>Request Diagnostics for <xsl:value-of select="./failedRequest/@verb"/> <xsl:text xml:space="preserve"> </xsl:text>  
                  <a><xsl:attribute name="href">  
                  <xsl:value-of select="./failedRequest/@url"/></xsl:attribute><xsl:value-of select="./failedRequest/@url"/></a></h1>  
              <!--p> STATUS_CODE <xsl:value-of select="./failedRequest/@statusCode"/>, <xsl:value-of select="./failedRequest/@timeTaken"/> ms, <xsl:value-of select="./failedRequest/@verb"/> (<xsl:value-of select="jsext:formatDate(string(./failedRequest/ev:Event/ev:System/ev:TimeCreated[1]/@SystemTime))"/>)</p--> 
            </div>
            <xsl:choose>
               <xsl:when test="function-available('jsext:datediff')">  
			     <!-- jsext:datediff presence is s trigger for complex tracing report -->
                 <div id="menu_container">  
                     <ul>
                         <li><a href="javascript:setView('section_errors', 'viewErrors');" id="viewErrors" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'RequestSummary'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_detail', 'viewDetails');" id="requestDetails" class="parent-tab-highlight"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'RequestDetails'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_compact', 'viewCompact');" id="viewCompact" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CompactView'"/></xsl:call-template></a></li>  
                     </ul>
                 </div>
                 <div id="sub_menu_container" >  
                     <ul>
                         <li><a href="javascript:setView('section_detail', 'viewDetails');" id="viewDetails" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CompleteRequestTrace'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_filters', 'viewModules');" id="viewModules" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'FilterNotifications'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_notifications', 'viewNotifications');" id="viewNotifications" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ModuleNotifications'"/></xsl:call-template><br />  
                             </a></li>
                         <li><a href="javascript:setView('section_perf', 'viewPerf');" id="viewPerf" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'PerformanceView'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_auth', 'viewAuth');" id="viewAuth" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'AuthenticationAuthorization'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_aspx', 'viewAsp');" id="viewAsp" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ASPPageTrace'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_modtrace', 'viewModTrace');" id="viewModTrace" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CustomModuleTrace'"/></xsl:call-template></a></li>  
                         <li><a href="javascript:setView('section_fastcgi', 'viewfastcgi');" id="viewfastcgi" ><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'fastcgi'"/></xsl:call-template></a></li>  
                     </ul>
                 </div>
                 <xsl:call-template name="GeneralInformation"/>  
                 
                 <div class="content-container">  
                     <xsl:call-template name="ErrorsAndWarnings"/>  
                     <xsl:call-template name="CompactViewTemplate"/>  
                     <xsl:call-template name="Performance" />  
                     <xsl:call-template name="CompleteRequestTrace"/>  
                     <xsl:call-template name="Notifications"/>  
                     <xsl:call-template name="Filters"/>  
                     <xsl:call-template name="Authentication"/>  
                     <xsl:call-template name="ASPX"/>  
                     <xsl:call-template name="ManagedModules"/>  
                     <xsl:call-template name="fastcgi"/>  
                 </div>
              </xsl:when>
			  <xsl:otherwise>
			     <xsl:call-template name="GeneralInformation"/>  
			     <xsl:call-template name="ErrorsAndWarnings"/>  
			     <div class="content-container">  
	   			     <!--provide simple report - the compact view which doesn't need any scripts --> 
				     <xsl:call-template name="CompactViewTemplate">  
				          <!--setting ClassMode to block will make it visible by default-->
				          <xsl:with-param name="IdName" select="section_compact_minimal_mode"/>  
				          <xsl:with-param name="DisplayMode" select="block"/>  
				     </xsl:call-template>
                 </div>
			  </xsl:otherwise>
			</xsl:choose>

        </body>
    </html>
</xsl:template>
    
<xsl:template name="GeneralInformation">  
    <div id="section_generalinformation" class="summary-container">  
        <fieldset>
        <h2>
            <legend> <a href="javascript:toggleDiv('section_generalinformation');"><span id="section_generalinformation_button" class="expand-collapse">-</span>Request Summary</a></legend>  
        </h2>
        <div id="section_generalinformation_details">  
            <table class="request-summary column-2" border="0" cellpadding="0" cellspacing="0">  
                <tr class="alt">  
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Site'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@siteId" /></td>  
                </tr>
                <tr>
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Process'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@processId" /></td>  
                </tr>
                <tr class="alt">  
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'FailureReason'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@failureReason" /></td>  
                </tr>
                <tr>
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'TriggerStatus'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@triggerStatusCode" /></td>  
                </tr>
                <tr class="alt">  
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'FinalStatus'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@statusCode" /></td>  
                </tr>
                <tr>
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'TimeTaken'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@timeTaken" /> msec</td>  
                </tr>
            </table>
            <table class="request-summary column-1" cellspacing="0" cellpadding="0" border="0">  
                <tr class="alt">  
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Url'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@url" /></td>  
                </tr>
                <tr>
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'App Pool'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@appPoolId" /></td>  
                </tr>
                <tr class="alt">  
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Authentication'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@authenticationType" /></td>  
                </tr>
                <tr>
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'User from token'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@tokenUserName" /></td>  
                </tr>
                <tr class="alt">  
                    <th><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Activity ID'"/></xsl:call-template></th>  
                    <td><xsl:value-of select="./failedRequest/@activityId" /></td>  
                </tr>
            </table>
        </div>
        </fieldset>
    </div>
</xsl:template>
    
<xsl:template name="EventDetail">  
    <xsl:param name="SectionName"/>  
    <xsl:param name="Position" select="position()"/>  
    <xsl:param name="DisplayMode" select="hidden"/>  
    <div>
        <xsl:attribute name="class"><xsl:value-of select="$DisplayMode"/></xsl:attribute>  
        <xsl:attribute name="id"><xsl:value-of select="$SectionName"/>_<xsl:value-of select="$Position"/>_details</xsl:attribute>  
    <table cellspacing="0" cellpadding="0" border="0" width="100%">  
            <tbody>
                <xsl:for-each select="./ev:EventData/ev:Data">  
                  <xsl:variable name="EntryName" select="./@Name"/>  
                  <xsl:variable name="EntryValue" select="."/>  
                  <xsl:variable name="EntryFriendlyValue" select="../../ev:RenderingInfo/freb:Description[@Data=$EntryName]" />  
                  <xsl:choose>
                        <!--display the value from the EventData/Data only if theer is no freb:Description available (that would be a friendlier rendering of information)-->
                        <xsl:when test="$EntryName != 'ContextId'">  
                            <tr>
                                <xsl:if test="position() mod 2 = 1">  
                                    <xsl:attribute name="class">alt</xsl:attribute>  
                                </xsl:if>
                                <th>
                                    <xsl:value-of select="$EntryName"/>  
                                </th>
                                 <td class="event-data">  
                                   <xsl:if test="not($EntryFriendlyValue)">  
                                     <xsl:value-of select="$EntryValue"/>  
                                   </xsl:if>
                                   <xsl:if test="$EntryFriendlyValue" >  
                                     <xsl:value-of select="$EntryFriendlyValue"/>  
                                   </xsl:if>

                                 </td>

                               </tr>
                        </xsl:when>
                      
                    </xsl:choose>
                </xsl:for-each>
            </tbody>
        </table>
    </div>
</xsl:template>
    
<xsl:template name="EventName" match="ev:Event" mode="EventName">  
    <xsl:param name="Duration">NO_DURATION</xsl:param>  
    <xsl:param name="SectionName"/>  
    <xsl:param name="Position" select="position()"/>  
    <xsl:param name="DisplaySeverity" select="1"/>  
    <xsl:param name="DisplayInformation" select="0"/>  
    <xsl:param name="DetailsDisplayMode" select="block"/>  
    <a>
        <xsl:attribute name="href">javascript:toggleDiv('<xsl:value-of select="$SectionName"/>_<xsl:value-of select="$Position"/>');</xsl:attribute>  
        <span class="expand-collapse"><xsl:attribute name="id"><xsl:value-of select="$SectionName"/>_<xsl:value-of select="$Position"/>_button</xsl:attribute>-</span>  
        <xsl:value-of select="./ev:RenderingInfo/ev:Opcode"/>  
    </a><!--xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text--> 
    <xsl:if test="$DisplaySeverity=1">  
        <xsl:call-template name="Severity"><xsl:with-param name="Duration" select="$Duration"/></xsl:call-template>  
    </xsl:if>
    <xsl:call-template name="EventDetail">  
        <xsl:with-param name="SectionName" select="$SectionName"/>  
        <xsl:with-param name="Position" select="$Position"/>  
        <xsl:with-param name="DisplayMode" select="$DetailsDisplayMode"/>  
    </xsl:call-template>
</xsl:template>
    
<xsl:template name="CompactViewTemplate">  
   <xsl:param name="IdName" select="section_compact"/>  
   <xsl:param name="DisplayMode" select="hidden"/>  
   <div> 
     <xsl:choose>
       <xsl:when test="function-available('jsext:datediff')">  
         <xsl:attribute name="id">section_compact</xsl:attribute>  
         <xsl:attribute name="class">hidden</xsl:attribute>  
      </xsl:when>
	  <xsl:otherwise>
         <xsl:attribute name="id"><xsl:value-of select="section_compact_minimal_view"/></xsl:attribute>  
         <xsl:attribute name="class"><xsl:value-of select="block"/></xsl:attribute>  
	   </xsl:otherwise>
	 </xsl:choose>
         
     <span class="iistraceinfo">  

       <table cellspacing="0" cellpadding="0" border="1" style="width:100%;border-collapse:collapse;table-layout:fixed;">  
    
        <tr class="subhead" align="Left"><th width="32px">No.</th><th width="250px">EventName</th><th>Details</th><th width="100px" title="Timestamp in GMT (low resolution timer)">Time</th></tr>         
        <xsl:for-each select="/failedRequest/ev:Event">  
          <xsl:call-template name="ProcessEvent">  
            <xsl:with-param name="Event" select="."/>  
            <xsl:with-param name="Position" select="position()"/>  
          </xsl:call-template>
        </xsl:for-each>
    
       </table>    
     </span>
   </div>
</xsl:template>

<xsl:template  name="ErrorsAndWarnings">  
        
    <div id="section_errors" class="summary-container hidden">  
    <fieldset>
    <h2>
       <legend> <a href="javascript:toggleDiv('section_errors');"><span id="section_errors_button" class="expand-collapse">-</span>Errors &amp; Warnings</a></legend>  
    </h2>
    <div id="section_errors_details">  
    <table id="section_errors_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
      <thead>
        <tr>
          <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
          <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
                    <th class="col-severity"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Severity'"/></xsl:call-template></th>  
          <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
          <th class="col-name"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Module Name'"/></xsl:call-template></th>  
        </tr>
      </thead>
            <tbody>
              <xsl:choose>
	              <xsl:when test="count(./failedRequest/ev:Event/ev:System[ev:Level='1' or ev:Level='2' or ev:Level='3'])=0">  
	                <tr>
	                  <td colspan="4"><span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No Errors or Warnings'"/></xsl:call-template></span></td>  
                    </tr>
	              </xsl:when>
	              <xsl:otherwise>
		            <xsl:for-each select="./failedRequest/ev:Event">  
		                <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
		                
		                <xsl:if test="ev:System/ev:Level='1' or ev:System/ev:Level='2' or ev:System/ev:Level='3'">  
		                    <tr>
		                        <xsl:attribute name="id">section_errors_<xsl:value-of select="position()"/></xsl:attribute>  
		                        <td><xsl:value-of select="position()"/>.</td>  
		                        <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
		                        <td>
		                            <xsl:choose>
		                                <xsl:when test="./ev:System/ev:Level = 3"><span class="severity-warning"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Warning'"/></xsl:call-template></span></xsl:when>  
		                                <xsl:when test="./ev:System/ev:Level = 2"><span class="severity-error"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Error'"/></xsl:call-template></span></xsl:when>  
		                                <xsl:when test="./ev:System/ev:Level = 1"><span class="severity-critical"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CriticalError'"/></xsl:call-template></span></xsl:when>  
		                            </xsl:choose>
		                        </td>
		                        <td>
		                            <xsl:call-template name="EventName">  
		                                <xsl:with-param name="SectionName" select="'section_errors'"/>  
		                                <xsl:with-param name="DisplaySeverity" select="'0'"/>  
		                                <xsl:with-param name="Duration" select="$Duration"/>  
		                            </xsl:call-template>
		                        </td>
		                        <td>
		                            <xsl:value-of select="./ev:EventData/ev:Data[@Name='ModuleName']"/>  
		                        </td>
		                    </tr>
		                </xsl:if>
		            </xsl:for-each>
		          </xsl:otherwise>
	          </xsl:choose>
              <tr>
                <td colspan="4"><span><a href="javascript:setView('section_detail', 'viewDetails');" id="requestDetails" class="parent-tab-highlight"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'SeeAllRequestDetails'"/></xsl:call-template></a></span></td>  
              </tr>

            </tbody>
    </table>
    </div>
    </fieldset>
    </div>
</xsl:template>
    
<xsl:template name="Authentication">  
    <div id="section_auth" class="hidden">  
      <div class="expand-collapse-all">  
        <a>
          <xsl:attribute name="href">  
            javascript:toggleAll('<xsl:call-template name="Text">  
                                     <xsl:with-param name="TextValue" select="'ExpandAll'"/>  
                                    </xsl:call-template>', '  
                                    <xsl:call-template name="Text">  
                                      <xsl:with-param name="TextValue" select="'CollapseAll'"/>  
                                    </xsl:call-template>', 'section_auth');  
          </xsl:attribute>
          <span id="section_auth_button">  
            <span class="expand-collapse">-</span>  
            <xsl:call-template name="Text">  
            <xsl:with-param name="TextValue" select="'CollapseAll'"/>  
            </xsl:call-template>
          </span>
        </a>
      </div>
    <fieldset>
    <h2>
      <legend>
        <xsl:call-template name="Text">  
          <xsl:with-param name="TextValue" select="'AuthenticationandAuthorization'"/>  
        </xsl:call-template>
      </legend>
    </h2>
    
    <table id="section_auth_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
      <thead>
        <tr>
          <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
          <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
          <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
        </tr>
      </thead>
            <tbody>
                <xsl:choose>
                    <xsl:when test="count(./failedRequest/ev:Event/ev:RenderingInfo[starts-with(ev:Opcode, 'AUTH_')=1 or starts-with(ev:Opcode, 'SECURITY_')=1 or starts-with(ev:Opcode, 'FILTER_AUTHENTICATION_')=1 or starts-with(ev:Opcode, 'FILTER_AUTH_')=1 or starts-with(ev:Opcode, 'FILTER_ACCESS_DENIED_')=1 or starts-with(ev:Opcode, 'RoleManager')=1 ]) = 0">  
                        <tr><td colspan="4"><span class="no-data"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No Data Exists'"/></xsl:call-template></span></td></tr>  
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:for-each select="./failedRequest/ev:Event">  
                            <xsl:if test="starts-with(./ev:RenderingInfo/ev:Opcode, 'AUTH_')=1 or starts-with(./ev:RenderingInfo/ev:Opcode, 'SECURITY_')=1 or starts-with(./ev:RenderingInfo/ev:Opcode, 'FILTER_AUTHENTICATION_')=1 or starts-with(./ev:RenderingInfo/ev:Opcode, 'FILTER_AUTH_')=1 or starts-with(./ev:RenderingInfo/ev:Opcode, 'FILTER_ACCESS_DENIED_')=1 or starts-with(./ev:RenderingInfo/ev:Opcode, 'RoleManager')=1">  
                                <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
                                <tr>
                                    <xsl:attribute name="id">section_auth_<xsl:value-of select="position()"/></xsl:attribute>  
                                    <td><xsl:value-of select="position()"/>.</td>  
                                    <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
                                    <td>
                                        <xsl:call-template name="EventName">  
                                            <xsl:with-param name="SectionName" select="'section_auth'"/>  
                                            <xsl:with-param name="Duration" select="$Duration"/>  
                                        </xsl:call-template>
                                    </td>
                                </tr>
                            </xsl:if>
                        </xsl:for-each>
                    </xsl:otherwise>
                </xsl:choose>
                
            </tbody>
    </table>
    </fieldset>
  </div>
</xsl:template>

<xsl:template name="ManagedModules">  
    <div id="section_modtrace" class="hidden">  
        <div class="expand-collapse-all"> <a ><xsl:attribute name="href">javascript:toggleAll('<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ExpandAll'"/></xsl:call-template>', '<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template>', 'section_modtrace');</xsl:attribute><span id="section_modtrace_button"><span class="expand-collapse">-</span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template></span></a></div>  
        <fieldset>
            <h2>
                <legend> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CustomModuleTracesHeading'"/></xsl:call-template> </legend>  
            </h2>
            
            <table id="section_modtrace_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
                <thead>
                    <tr>
                        <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
                        <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
                        <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
                        <th class="col-uri"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Uri'"/></xsl:call-template></th>  
                    </tr>
                </thead>
                <tbody>
                        <xsl:choose>
                            <xsl:when test="count(./failedRequest/ev:Event/ev:RenderingInfo[starts-with(ev:Opcode, 'AspNetModuleDiag')=1]) = 0">  
                                <tr><td colspan="4" align="center"><span class="no-data">No Data Exists For The Requested Report</span></td></tr>  
                            </xsl:when>
                            <xsl:otherwise>
                                <xsl:for-each select="./failedRequest/ev:Event">  
                                    <xsl:if test="starts-with(./ev:RenderingInfo/ev:Opcode, 'AspNetModuleDiag')=1">  
                                        <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
                                        <tr>
                                            <xsl:attribute name="id">section_modtrace_<xsl:value-of select="position()"/></xsl:attribute>  
                                            <td><xsl:value-of select="position()"/>.</td>  
                                            <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
                                            <td>
                                                <xsl:call-template name="EventName">  
                                                    <xsl:with-param name="SectionName" select="'section_modtrace'"/>  
                                                    <xsl:with-param name="Duration" select="$Duration"/>  
                                                </xsl:call-template>
                                            </td>
                                            <td>
                                                <xsl:value-of select="./ev:EventData/ev:Data[@Name='Uri']"/>  
                                            </td>
                                        </tr>
                                    </xsl:if>
                                </xsl:for-each>
                            </xsl:otherwise>
                        </xsl:choose>
                    </tbody>
            </table>
        </fieldset>
    </div>
</xsl:template>
    
<xsl:template name="ASPX">  
    <div id="section_aspx" class="hidden">  
        <div class="expand-collapse-all"> <a ><xsl:attribute name="href">javascript:toggleAll('<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ExpandAll'"/></xsl:call-template>', '<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template>', 'section_aspx');</xsl:attribute><span id="section_aspx_button"><span class="expand-collapse">-</span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template></span></a></div>  
    <fieldset>
            <h2>
                <legend> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ASPPageTraceHeading'"/></xsl:call-template> </legend>  
            </h2>
            
            <table id="section_aspx_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
                <thead>
                    <tr>
                        <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
                        <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
                        <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
                        <th class="col-uri"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Uri'"/></xsl:call-template></th>  
                    </tr>
                </thead>
                <tbody>
                    <xsl:choose>
                        <xsl:when test="count(./failedRequest/ev:Event/ev:RenderingInfo[ev:Opcode='AspNetPageTraceWarnEvent' or ev:Opcode='AspNetPageTraceWriteEvent']) = 0">  
                            <tr><td colspan="4" align="center"><span class="no-data"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No Data Exists'"/></xsl:call-template></span></td></tr>  
                        </xsl:when>
                        <xsl:otherwise>
                            <xsl:for-each select="./failedRequest/ev:Event">  
                                <xsl:if test="./ev:RenderingInfo/ev:Opcode = 'AspNetPageTraceWarnEvent' or ./ev:RenderingInfo/ev:Opcode = 'AspNetPageTraceWriteEvent'">  
                                    <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
                                    <tr>
                                        <xsl:attribute name="id">section_aspx_<xsl:value-of select="position()"/></xsl:attribute>  
                                        <td><xsl:value-of select="position()"/>.</td>  
                                        <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
                                        <td>
                                            <xsl:call-template name="EventName">  
                                                <xsl:with-param name="SectionName" select="'section_aspx'"/>  
                                                <xsl:with-param name="Duration" select="$Duration"/>  
                                            </xsl:call-template>
                                        </td>
                                        <td>
                                            <xsl:value-of select="./ev:EventData/ev:Data[@Name='Uri']"/>  
                                        </td>
                                    </tr>
                                </xsl:if>
                            </xsl:for-each>
                        </xsl:otherwise>
                    </xsl:choose>
                </tbody>
            </table>
        </fieldset>
    </div>
</xsl:template>

<xsl:template name="Notifications">  
    <div id="section_notifications" class="hidden">  
        <div class="expand-collapse-all"><a><xsl:attribute name="href">javascript:toggleAll('<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ExpandAll'"/></xsl:call-template>', '<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template>', 'section_notifications');</xsl:attribute><span id="section_notifications_button"><span class="expand-collapse">-</span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template></span></a></div>  
        <fieldset>
            <h2>
                <legend> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ModuleNotificationsHeading'"/></xsl:call-template> </legend>  
            </h2>
            <table id="section_notifications_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
                <thead>
                    <tr>
                        <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
                        <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
                        <th class="col-notification"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
                        <th class="col-filter-module"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Module'"/></xsl:call-template></th>  
                        <th class="col-filter-notification"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Notification'"/></xsl:call-template></th>  
                        <th class="col-duration" title="Time elapsed from the previous event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Duration'"/></xsl:call-template> (ms)</th>  
                    </tr>
                </thead>
                <tbody>
                    <xsl:for-each select="./failedRequest/ev:Event">  
                        <xsl:if test="count(./ev:EventData/ev:Data[@Name='ModuleName'])=1 and contains(./ev:RenderingInfo/ev:Opcode, '_START')=1">  
                            <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
                            <tr>
                                <xsl:attribute name="id">section_notifications_<xsl:value-of select="position()"/></xsl:attribute>  
                                <td><xsl:value-of select="position()"/>.</td>  
                                <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
                                <td>
                                    <xsl:call-template name="EventName">  
                                        <xsl:with-param name="SectionName" select="'section_notifications'"/>  
                                        <xsl:with-param name="Duration" select="$Duration"/>  
                                        <xsl:with-param name="DetailsDisplayMode" select="hidden"/>  
                                    </xsl:call-template>
                                </td>
                                <td>
                                    <xsl:value-of select="./ev:EventData/ev:Data[@Name='ModuleName']"/>  
                                </td>
                                <td>
                                    <!--<xsl:value-of select="./ev:EventData/ev:Data[@Name='Notification']/@Description"/>--> 
                                    <xsl:value-of select="./ev:RenderingInfo/freb:Description[@Data='Notification']"/>  
                                </td>
                                <td class="col-duration">  
                                    <xsl:value-of select="$Duration"/>  
                                </td>
                            </tr>
                        </xsl:if>
                    </xsl:for-each>
                </tbody>
            </table>
        </fieldset>
    </div>
</xsl:template>
<xsl:template name="Filters">  
    <div id="section_filters" class="hidden">  
        <div class="expand-collapse-all">  
                <a>
                    <xsl:attribute name="href">javascript:toggleAll('<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ExpandAll'"/></xsl:call-template>', '<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template>', 'section_filters');</xsl:attribute>  
                    <span id="section_filters_button"><span class="expand-collapse">-</span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template></span>  
                </a>
            </div>
        <fieldset>
            <h2>
                <legend> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Filters'"/></xsl:call-template> </legend>  
            </h2>
            <table id="section_filters_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
                <thead>
                    <tr>
                        <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
                        <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
                        <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
                        <th class="col-filter-module"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Filter Name'"/></xsl:call-template></th>  
                        <th class="col-duration" title="Time elapsed from the previous event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Duration'"/></xsl:call-template> (ms)</th>  
                    </tr>
                </thead>
                <tbody>
                 <xsl:choose>
                  <xsl:when test="count(./ev:EventData/ev:Data[@Name='FilterName']) = 0">  
                     <tr><td colspan="4"><span class="no-data"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No Data Exists'"/></xsl:call-template></span></td></tr>  
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:for-each select="./failedRequest/ev:Event">  
                        <xsl:if test="count(./ev:EventData/ev:Data[@Name='FilterName']) &gt; 0 and ./following-sibling::*[1]/ev:System/ev:Level = 4 ">  
                            <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
                            <tr>
                                <xsl:attribute name="id">section_filters_<xsl:value-of select="position()"/></xsl:attribute>  
                                <td><xsl:value-of select="position()"/>.</td>  
                                <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute> <xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
                                <td>
                                    <xsl:apply-templates select="./following-sibling::*[1]" mode="EventName">  
                                        <xsl:with-param name="SectionName" select="'section_filters'"/>  
                                        <xsl:with-param name="Position" select="position()"/>  
                                    </xsl:apply-templates>
                                </td>
                                <td>
                                    <xsl:value-of select="./ev:EventData/ev:Data[@Name='FilterName']"/>  
                                </td>
                                <td class="col-duration">  
                                    <xsl:value-of select="$Duration"/>  
                                </td>
                            </tr>
                        </xsl:if>
                    </xsl:for-each>
                   </xsl:otherwise>
                 </xsl:choose>
                </tbody>
            </table>
        </fieldset>
    </div>
</xsl:template>    

    
<xsl:template name="Performance">  
    <div id="section_perf" class="hidden">  
    <fieldset>
    <h2>
      <legend class="no-expand-all"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'PerformanceViewHeading'"/></xsl:call-template></legend>  
    </h2>
    <table id="section_perf_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
      <thead>
        <tr>
          <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
          <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
          <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
          <th class="col-duration" title="Time elapsed from the previous event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Duration'"/></xsl:call-template> (ms)</th>  
        </tr>
      </thead>
      <xsl:for-each select="./failedRequest/ev:Event">  
        <!-- Filter for events containing _START -->
        <xsl:variable name="Duration">  
          <xsl:apply-templates select="." mode="CalculateDuration"/>  
        </xsl:variable>
        <xsl:choose>
          <xsl:when test="$Duration != 'NO_DURATION' and $Duration != 'NO_END'">  
            <tr>
              <xsl:attribute name="id">  
                section_perf_<xsl:value-of select="position()"/>  
              </xsl:attribute>
              <td><xsl:value-of select="position()"/>.</td>  
              <td>
                <a>
                  <xsl:attribute name="href">  
                    javascript:findInDetail('<xsl:value-of select="position()"/>');  
                  </xsl:attribute>
                  <xsl:call-template name="Text">  
                    <xsl:with-param name="TextValue" select="'view trace'"/>  
                  </xsl:call-template>
                </a>
              </td>
              <td>
                <xsl:call-template name="Severity">  
                  <xsl:with-param name="Duration" select="$Duration"/>  
                </xsl:call-template>
                <xsl:value-of select="./ev:RenderingInfo/ev:Opcode"/>  
                <xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text>  
              </td>
              <td class="col-duration">  
                <xsl:choose>
                  <xsl:when test="$Duration != 'NO_DURATION' and $Duration != 'NO_END'">  
                    <xsl:value-of select="$Duration"/>  
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:text disable-output-escaping="yes"><![CDATA[<!--EmptyNumber-->]]></xsl:text>  
                  </xsl:otherwise>
                </xsl:choose>
  
              </td>
            </tr>
          </xsl:when>
        </xsl:choose>
      </xsl:for-each>
    </table>
    </fieldset>
  </div>
    
</xsl:template>

<xsl:template name="fastcgi">  
  <div id="section_fastcgi" class="hidden">  
    <div class="expand-collapse-all"> <a ><xsl:attribute name="href">javascript:toggleAll('<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ExpandAll'"/></xsl:call-template>', '<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template>', 'section_fastcgi');</xsl:attribute><span id="section_fastcgi_button"><span class="expand-collapse">-</span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template></span></a></div>  
    <fieldset>
      <h2>
        <legend><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'fastcgiHeading'"/></xsl:call-template></legend>  
      </h2>

      <table id="section_fastcgi_table" class="sortable" cellspacing="0" cellpadding="0" border="0" width="100%">  
        <thead>
          <tr>
            <th class="defaultsort col-number"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No'"/></xsl:call-template></th>  
            <th class="col-actions"><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></th>  
            <th class="col-event"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'Event'"/></xsl:call-template></th>  
          </tr>
        </thead>
        <tbody>
          <xsl:choose>
            <xsl:when test="count(./failedRequest/ev:Event/ev:RenderingInfo[starts-with(ev:Opcode, 'FASTCGI_')=1 ]) = 0">  
              <tr><td colspan="4"><span class="no-data"><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'No Data Exists'"/></xsl:call-template></span></td></tr>  
            </xsl:when>
            <xsl:otherwise>
              <xsl:for-each select="./failedRequest/ev:Event">  
                <xsl:if test="starts-with(./ev:RenderingInfo/ev:Opcode, 'FASTCGI_')=1 ">  
                  <xsl:variable name="Duration"><xsl:apply-templates select="." mode="CalculateDuration"/></xsl:variable>  
                  <tr>
                    <xsl:attribute name="id">section_fastcgi_<xsl:value-of select="position()"/></xsl:attribute>  
                    <td><xsl:value-of select="position()"/>.</td>  
                    <td><a><xsl:attribute name="href">javascript:findInDetail('<xsl:value-of select="position()"/>');</xsl:attribute><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'view trace'"/></xsl:call-template></a></td>  
                    <td>
                      <xsl:call-template name="EventName">  
                        <xsl:with-param name="SectionName" select="'section_fastcgi'"/>  
                        <xsl:with-param name="Duration" select="$Duration"/>  
                      </xsl:call-template>
                    </td>
                  </tr>
                </xsl:if>
              </xsl:for-each>
            </xsl:otherwise>
          </xsl:choose>

        </tbody>
      </table>
    </fieldset>
  </div>
</xsl:template>

<xsl:template name="CompleteRequestTrace">  
    <div id="section_detail" class="hidden">  
        <div class="expand-collapse-all"><a><xsl:attribute name="href">javascript:toggleAll('<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'ExpandAll'"/></xsl:call-template>', '<xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template>', 'section_detail');</xsl:attribute><span id="section_detail_button"><span class="expand-collapse">-</span><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CollapseAll'"/></xsl:call-template></span></a></div>  

    <fieldset>
    <h2>
      <legend><xsl:call-template name="Text"><xsl:with-param name="TextValue" select="'CompleteRequestTraceHeading'"/></xsl:call-template></legend>  
    </h2>
        <xsl:for-each select="./failedRequest/ev:Event">  
            <xsl:variable name="Duration">  
               <xsl:apply-templates select="." mode="CalculateDuration"/>  
            </xsl:variable>

            <xsl:if test="substring(./ev:RenderingInfo/ev:Opcode,string-length(./ev:RenderingInfo/ev:Opcode)- string-length('_END')+1) = '_END'">  
            </xsl:if>
            <xsl:if test="substring(./ev:RenderingInfo/ev:Opcode,string-length(./ev:RenderingInfo/ev:Opcode)- string-length('_START')+1) = '_START' and $Duration != 'NO_END' and $Duration != 'NO_DURATION'">  
                <xsl:text disable-output-escaping="yes">&lt;fieldset&gt;</xsl:text>  
            </xsl:if>
            <fieldset class="no-border">  
                <xsl:attribute name="id">section_detail_<xsl:value-of select="position()"/></xsl:attribute>  
                <xsl:choose>
                    <xsl:when test="$Duration != 'NO_END' and $Duration != 'NO_DURATION'">  
                        <div class="duration"><span class="duration-value"><xsl:value-of select="$Duration"/><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text>ms</span></div>  
                    </xsl:when>
                    <xsl:otherwise>
                        <div class="duration" ><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text></div>  
                    </xsl:otherwise>
                </xsl:choose>
                <xsl:call-template name="Severity"><xsl:with-param name="DisplayInformational" select="1"/><xsl:with-param name="Duration" select="$Duration"/></xsl:call-template>  
                <a>
                    <xsl:attribute name="name">detail_<xsl:value-of select="position()"/></xsl:attribute>  
                    <xsl:value-of select="position()"/>.  
                </a>
                <xsl:call-template name="EventName">  
                    <xsl:with-param name="DisplaySeverity" select="0"/>  
                    <xsl:with-param name="SectionName" select="'section_detail'"/>  
                    <xsl:with-param name="Duration" select="$Duration"/>  
                    <xsl:with-param name="DisplayInformation" select="1"/>  
                </xsl:call-template>
            </fieldset>
            <xsl:if test="substring(./ev:RenderingInfo/ev:Opcode,string-length(./ev:RenderingInfo/ev:Opcode)- string-length('_END')+1) = '_END'">  
                <xsl:text disable-output-escaping="yes">&lt;/fieldset&gt;</xsl:text>  
            </xsl:if>

        </xsl:for-each>
        </fieldset>
  </div>
</xsl:template>

<!--In: A node list starting with the start tag.-->
<!-- If this is not a *_START node, return NO_DURATION    
            If this is a *_START node and has no corresponding *_END node, return NO_END
            Otherwise, return the time difference between the previous and current event's timestamp in miliseconds.--> 
<xsl:template match="ev:Event" mode="CalculateDuration">  
    <!-- Get the start time from the start event (this event) -->
    <xsl:variable name="startTime" select="./ev:System/ev:TimeCreated/@SystemTime"/>  

    <xsl:choose>
       <xsl:when test="function-available('jsext:datediff')">  
        <xsl:choose>
  	      <xsl:when test="string(preceding-sibling::ev:Event[1]/ev:System/ev:TimeCreated/@SystemTime) = ''">  
	    	<xsl:text>0</xsl:text>
	      </xsl:when>
	      <xsl:otherwise>
	        <xsl:value-of select="jsext:datediff(string(preceding-sibling::ev:Event[1]/ev:System/ev:TimeCreated/@SystemTime),string($startTime))"/>      
	      </xsl:otherwise>
	    </xsl:choose>
	   </xsl:when>
       <xsl:otherwise>
         <!--if not able to calculate the difference because of missing jsext:datediff, then simply return empty string -->
	     <xsl:text></xsl:text>    
	   </xsl:otherwise>
    </xsl:choose>
</xsl:template>
    

<xsl:variable name="language" select="'1033'"/>  
<xsl:template name="Text">  
    <xsl:param name="TextValue"/>  
        
    <xsl:choose>
        <xsl:when test="$language = '1033'">  
            <xsl:choose>
                <xsl:when test="$TextValue='CompleteRequestTrace'">Complete<br />Request Trace</xsl:when>  
                <xsl:when test="$TextValue='Warning'">Warning</xsl:when>  
                <xsl:when test="$TextValue='Error'">Error</xsl:when>  
                <xsl:when test="$TextValue='CriticalError'">Critical Error</xsl:when>  
                <xsl:when test="$TextValue='FailedToComplete'">Failed To Complete</xsl:when>  
                <xsl:when test="$TextValue='Verbose'">Verbose</xsl:when>  
                <xsl:when test="$TextValue='Informational'">Informational</xsl:when>  
                <xsl:when test="$TextValue='RequestSummary'">Request<br />Summary</xsl:when>  
                <xsl:when test="$TextValue='CompactView'">Compact<br />View</xsl:when>  
                <xsl:when test="$TextValue='RequestDetails'">Request<br />Details</xsl:when>  
                <xsl:when test="$TextValue='SeeAllRequestDetails'"> See all events for the request</xsl:when>  
                <xsl:when test="$TextValue='FilterNotifications'">Filter <br />Notifications</xsl:when>  
                <xsl:when test="$TextValue='ModuleNotifications'">Module<br />Notifications</xsl:when>  
                <xsl:when test="$TextValue='PerformanceView'">Performance<br />View</xsl:when>  
                <xsl:when test="$TextValue='AuthenticationAuthorization'">Authentication<br />Authorization</xsl:when>  
                <xsl:when test="$TextValue='ASPPageTrace'">ASP.Net<br />Page Traces</xsl:when>  
                <xsl:when test="$TextValue='CustomModuleTrace'">Custom<br />Module Traces</xsl:when>  
                <xsl:when test="$TextValue='fastcgi'">FastCGI<br />Module</xsl:when>  
                <xsl:when test="$TextValue='ExpandAll'">Expand</xsl:when>  
                <xsl:when test="$TextValue='CollapseAll'">Collapse</xsl:when>  
                <xsl:when test="$TextValue='RequestSummary'">Request Summary</xsl:when>  
                <xsl:when test="$TextValue='Site'">Site</xsl:when>  
                <xsl:when test="$TextValue='Process'">Process</xsl:when>  
                <xsl:when test="$TextValue='FailureReason'">Failure Reason</xsl:when>  
                <xsl:when test="$TextValue='TriggerStatus'">Trigger Status</xsl:when>  
                <xsl:when test="$TextValue='FinalStatus'">Final Status</xsl:when>  
                <xsl:when test="$TextValue='TimeTaken'">Time Taken</xsl:when>  
                <xsl:when test="$TextValue='Url'">Url</xsl:when>  
                <xsl:when test="$TextValue='App Pool'">App Pool</xsl:when>  
                <xsl:when test="$TextValue='Authentication'">Authentication</xsl:when>  
                <xsl:when test="$TextValue='User from token'">User from token</xsl:when>  
                <xsl:when test="$TextValue='Activity ID'">Activity ID</xsl:when>  
                <!-- Errors and Warnings -->
                <xsl:when test="$TextValue='ErrorsandWarnings'">Errors &amp; Warnings</xsl:when>  
                <xsl:when test="$TextValue='No'">No.</xsl:when>  
                <xsl:when test="$TextValue='Severity'">Severity</xsl:when>  
                <xsl:when test="$TextValue='Event'">Event</xsl:when>  
                <xsl:when test="$TextValue='Module Name'">Module Name</xsl:when>  
                <xsl:when test="$TextValue='view trace'">view trace</xsl:when>  
                <!-- Authentication -->
                <xsl:when test="$TextValue='AuthenticationandAuthorization'">Authentication &amp; Authorization</xsl:when>  
                <xsl:when test="$TextValue='No Data Exists'">No Data Exists For The Requested Report</xsl:when>  
                <xsl:when test="$TextValue='No Errors or Warnings'">No Errors or Warnings were found</xsl:when>  
                <!-- Custom Module Traces-->
                <xsl:when test="$TextValue='CustomModuleTracesHeading'">Custom Module Traces</xsl:when>  
                <xsl:when test="$TextValue='ErrorsandWarnings'">Errors &amp; Warnings</xsl:when>  
                <xsl:when test="$TextValue='Uri'">Uri</xsl:when>  
                <!-- ASP Page Traces-->
                <xsl:when test="$TextValue='ASPPageTraceHeading'">ASP.Net Page Traces</xsl:when>  
                <!-- Notifications-->
                <xsl:when test="$TextValue='ModuleNotificationsHeading'">Module Notifications</xsl:when>  
                <xsl:when test="$TextValue='Module'">Module</xsl:when>  
                <xsl:when test="$TextValue='Notification'">Notification</xsl:when>  
                <xsl:when test="$TextValue='Duration'">Duration</xsl:when>  
                <!-- Filters -->
                <xsl:when test="$TextValue='Filters'">Filters</xsl:when>  
                <xsl:when test="$TextValue='Filter Name'">Filter Name</xsl:when>  
                <!-- Performance -->
                <xsl:when test="$TextValue='PerformanceViewHeading'">Performance View</xsl:when>  
                <!-- FastCGI Module -->
                <xsl:when test="$TextValue='fastcgiHeading'">FastCGI Module</xsl:when>  
                <xsl:when test="$TextValue='No Data Exists'">No Data Exists For The Requested Report</xsl:when>  
                <!-- Complete Request Trace -->
                <xsl:when test="$TextValue='CompleteRequestTraceHeading'">Complete Request Trace</xsl:when>  
            </xsl:choose>
        </xsl:when>
        
    </xsl:choose>
    
</xsl:template>

<xsl:template name="ProcessEvent">  
 <xsl:param name="Event"/>  
 <xsl:param name="Position"/>  
 <tr>
  <xsl:choose> 
   <xsl:when test="position() mod 2 = 1">  
    <xsl:attribute name="class">alt</xsl:attribute>   
   </xsl:when>
   <xsl:otherwise/>
  </xsl:choose>
  
  <td>
    <xsl:number value="position()" format="1."/>  
  </td>

  <td>
     <xsl:choose>
     <xsl:when test="./ev:System/ev:Level = 3">  
        <xsl:value-of select="$Event/ev:RenderingInfo/ev:Opcode"/>   
        <br/>
          <span class="severity-warning">  
            <xsl:call-template name="Text">  
              <xsl:with-param name="TextValue" select="'Warning'"/>  
            </xsl:call-template>
          </span>
        </xsl:when>
        <xsl:when test="./ev:System/ev:Level = 2">  
          <xsl:value-of select="$Event/ev:RenderingInfo/ev:Opcode"/>  
          <br/>
          <span class="severity-error">  
            <xsl:call-template name="Text">  
              <xsl:with-param name="TextValue" select="'Error'"/>  
            </xsl:call-template>
          </span>
        </xsl:when>
        <xsl:when test="./ev:System/ev:Level = 1">  
          <xsl:value-of select="$Event/ev:RenderingInfo/ev:Opcode"/>  
          <br/>
          <span class="severity-critical">  
            <xsl:call-template name="Text">  
              <xsl:with-param name="TextValue" select="'CriticalError'"/>  
            </xsl:call-template>
          </span>
        </xsl:when>
        <xsl:otherwise>
          <xsl:value-of select="$Event/ev:RenderingInfo/ev:Opcode"/>  
        </xsl:otherwise>
      </xsl:choose>

  </td>
   <td><xsl:apply-templates select="$Event/ev:EventData/ev:Data"/></td>  
  <td><xsl:value-of select="substring($Event/ev:System/ev:TimeCreated/@SystemTime,12,12)"/></td>  

 </tr>
</xsl:template>

<xsl:template match="ev:Data">  
 <xsl:param name="name">  
     <xsl:value-of select="@Name"/>  
 </xsl:param>
 <xsl:param name="friendly">  
    <xsl:value-of select="parent::*/parent::*/ev:RenderingInfo/freb:Description[@Data=$name]"/>  
 </xsl:param>
 <xsl:if test="not($name='ContextId') and not($name='ConnID') and not($name='Context ID')">  
     <xsl:value-of select="@Name"/>="<xsl:if test="string-length($friendly)=0"><xsl:value-of select="."/></xsl:if>  
     <xsl:if test="not(string-length($friendly)=0)">  
        <xsl:value-of select="$friendly"/>  
     </xsl:if>"<xsl:if test="not(position()=last())">, </xsl:if>  
 </xsl:if>
</xsl:template>

</xsl:stylesheet>



und in einer fr000001.xml


<?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/connect"  
               siteId="1"  
               appPoolId="Client_App"  
               processId="9100"  
               verb="GET"  
               remoteUserName=""  
               userName=""  
               tokenUserName="NT-AUTORITÄT\IUSR"  
               authenticationType="anonymous"  
               activityId="{8000000E-0000-F900-B63F-84710C7967BB}"  
               failureReason="STATUS_CODE"  
               statusCode="500.19"  
               triggerStatusCode="500.19"  
               timeTaken="203"  
               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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="SiteId">1</Data>  
  <Data Name="AppPoolId">Client_App</Data>  
  <Data Name="ConnId">1610612749</Data>  
  <Data Name="RawConnId">0</Data>  
  <Data Name="RequestURL">http://localhost:80/connect</Data>  
  <Data Name="RequestVerb">GET</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">FailedRequestsTracingModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">FailedRequestsTracingModule</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>4</Level>
  <Opcode>13</Opcode>
  <Keywords>0x8</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>0</Level>
  <Opcode>1</Opcode>
  <Keywords>0x8</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="FilterName">C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_filter.dll</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>5</Level>
  <Opcode>53</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="HeaderName">AspFilterSessionId</Data>  
  <Data Name="HeaderValue"></Data>  
  <Data Name="Replace">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="HeaderName">AspFilterSessionId:</Data>  
  <Data Name="HeaderValue"></Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>0</Level>
  <Opcode>2</Opcode>
  <Keywords>0x8</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="NotificationStatus">134217730</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>FILTER_END</Opcode>
  <Keywords>
   <Keyword>Filter</Keyword>
  </Keywords>
  <freb:Description Data="NotificationStatus">SF_STATUS_REQ_NEXT_NOTIFICATION</freb:Description>  
 </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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>5</Level>
  <Opcode>5</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">RequestMonitorModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">RequestMonitorModule</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>55</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="RemoteAddress">::1</Data>  
  <Data Name="RemotePort">65175</Data>  
  <Data Name="LocalAddress">::1</Data>  
  <Data Name="LocalPort">80</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>GENERAL_ENDPOINT_INFORMATION</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>50</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Headers">Cache-Control: max-age=0  
Connection: keep-alive
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip, deflate
Accept-Language: de,en-US;q=0.7,en;q=0.3
Host: localhost
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0
</Data>
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="RequestURL">/connect</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="PhysicalPath"></Data>  
  <Data Name="URLInfoFromCache">false</Data>  
  <Data Name="URLInfoAddedToCache">true</Data>  
  <Data Name="ErrorCode">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>URL_CACHE_ACCESS_END</Opcode>
  <Keywords>
   <Keyword>Cache</Keyword>
  </Keywords>
  <freb:Description Data="ErrorCode">Der Vorgang wurde erfolgreich beendet.  
 (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>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">xamlx-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">xamlx-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">rules-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">rules-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">xoml-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">xoml-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">svc-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">svc-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">AXD-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">PageHandlerFactory-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">SimpleHandlerFactory-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">WebServiceHandlerFactory-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">HttpRemotingHandlerFactory-rem-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">HttpRemotingHandlerFactory-soap-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">aspq-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">cshtm-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">cshtml-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">vbhtm-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">vbhtml-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">AXD-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">PageHandlerFactory-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">SimpleHandlerFactory-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">WebServiceHandlerFactory-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">HttpRemotingHandlerFactory-rem-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">HttpRemotingHandlerFactory-soap-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">aspq-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">cshtm-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">cshtml-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">vbhtm-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">vbhtml-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">ExtensionlessUrlHandler-ISAPI-4.0_32bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness32</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>46</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">ExtensionlessUrlHandler-ISAPI-4.0_64bit</Data>  
  <Data Name="Precondition">classicMode,runtimeVersionv4.0,bitness64</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_PRECONDITION_NOT_MATCH</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>30</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="PhysicalPath"></Data>  
  <Data Name="AccessPerms">513</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>GENERAL_GET_URL_METADATA</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>43</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.528Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="OldHandlerName"></Data>  
  <Data Name="NewHandlerName">ExtensionlessUrlHandler-Integrated-4.0</Data>  
  <Data Name="NewHandlerModules">ManagedPipelineHandler</Data>  
  <Data Name="NewHandlerScriptProcessor"></Data>  
  <Data Name="NewHandlerType">System.Web.Handlers.TransferRequestHandler</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HANDLER_CHANGED</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>41</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">FormsAuthentication</Data>  
  <Data Name="Type">System.Web.Security.FormsAuthenticationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>VIRTUAL_MODULE_UNRESOLVED</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>41</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">RoleManager</Data>  
  <Data Name="Type">System.Web.Security.RoleManagerModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>VIRTUAL_MODULE_UNRESOLVED</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>41</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">AnonymousIdentification</Data>  
  <Data Name="Type">System.Web.Security.AnonymousIdentificationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>VIRTUAL_MODULE_UNRESOLVED</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>41</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Name">UrlMappingsModule</Data>  
  <Data Name="Type">System.Web.UrlMappingsModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>VIRTUAL_MODULE_UNRESOLVED</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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpCacheModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpCacheModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">RequestFilteringModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">RequestFilteringModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">FailedRequestsTracingModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">FailedRequestsTracingModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ConfigurationValidationModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ConfigurationValidationModule</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">global.asax</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>  
  <EventID>0</EventID>
  <Version>0</Version>
  <Level>0</Level>
  <Opcode>1</Opcode>
  <Keywords>0xf</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">GET</Data>  
  <Data Name="Data2">/connect</Data>  
  <Data Name="Data3"></Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">/LM/W3SVC/1/ROOT/Connect-2-131196458455262262</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">2147483648</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>NOTIFY_MODULE_START</Opcode>
  <Keywords>
   <Keyword>RequestNotifications</Keyword>
  </Keywords>
  <freb:Description Data="Notification">MAP_PATH</freb:Description>  
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>5</Level>
  <Opcode>2</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">2147483648</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>NOTIFY_MODULE_END</Opcode>
  <Keywords>
   <Keyword>RequestNotifications</Keyword>
  </Keywords>
  <freb:Description Data="Notification">MAP_PATH</freb:Description>  
  <freb:Description Data="NotificationStatus">NOTIFICATION_CONTINUE</freb:Description>  
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/>  
  <EventID>0</EventID>
  <Version>0</Version>
  <Level>5</Level>
  <Opcode>8</Opcode>
  <Keywords>0x1</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">ASP.global_asax</Data>  
  <Data Name="Data2">Start</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.700Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">Microsoft.WindowsServerSolutions.Client.Website.Global</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">Microsoft.WindowsServerSolutions.Client.Website.Global</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">global.asax</Data>  
  <Data Name="Notification">1</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">BasicAuthenticationModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="AuthTypeSupported">2</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">BasicAuthenticationModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">WindowsAuthenticationModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="AuthTypeSupported">4</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">WindowsAuthenticationModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">WindowsAuthentication</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.WindowsAuthenticationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.WindowsAuthenticationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">WindowsAuthentication</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ScriptModule-4.0</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Handlers.ScriptModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Handlers.ScriptModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ScriptModule-4.0</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">AnonymousAuthenticationModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="AuthTypeSupported">1</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="RequestAuthType">1</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="AuthType">4</Data>  
  <Data Name="NTLMUsed">false</Data>  
  <Data Name="RemoteUserName"></Data>  
  <Data Name="AuthUserName"></Data>  
  <Data Name="TokenImpersonationLevel">2</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>AUTH_SUCCEEDED</Opcode>
  <Keywords>
   <Keyword>Authentication</Keyword>
  </Keywords>
  <freb:Description Data="AuthType">NT</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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="AuthType"></Data>  
  <Data Name="UserName"></Data>  
  <Data Name="SupportsIsInRole">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">AnonymousAuthenticationModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>19</Opcode>
  <Keywords>0x8</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>FILTER_AUTH_COMPLETE_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>20</Opcode>
  <Keywords>0x8</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>FILTER_AUTH_COMPLETE_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>2</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">true</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">DefaultAuthentication</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.DefaultAuthenticationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.DefaultAuthenticationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">DefaultAuthentication</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">true</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ServiceModel-4.0</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotification">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.ServiceModel.Activation.ServiceHttpModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.ServiceModel.Activation.ServiceHttpModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ServiceModel-4.0</Data>  
  <Data Name="Notification">2</Data>  
  <Data Name="fIsPostNotificationEvent">true</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">UrlAuthorization</Data>  
  <Data Name="Notification">4</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.UrlAuthorizationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.UrlAuthorizationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">UrlAuthorization</Data>  
  <Data Name="Notification">4</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">FileAuthorization</Data>  
  <Data Name="Notification">4</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.FileAuthorizationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Security.FileAuthorizationModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">FileAuthorization</Data>  
  <Data Name="Notification">4</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpCacheModule</Data>  
  <Data Name="Notification">8</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Result">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpCacheModule</Data>  
  <Data Name="Notification">8</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">OutputCache</Data>  
  <Data Name="Notification">8</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Caching.OutputCacheModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">OutputCache</Data>  
  <Data Name="Notification">8</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">UrlRoutingModule-4.0</Data>  
  <Data Name="Notification">8</Data>  
  <Data Name="fIsPostNotification">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Routing.UrlRoutingModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Routing.UrlRoutingModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">UrlRoutingModule-4.0</Data>  
  <Data Name="Notification">8</Data>  
  <Data Name="fIsPostNotificationEvent">true</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">StaticCompressionModule</Data>  
  <Data Name="Notification">16</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>3</Level>
  <Opcode>16</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">StaticCompressionModule</Data>  
  <Data Name="Notification">16</Data>  
  <Data Name="HttpStatus">500</Data>  
  <Data Name="HttpReason">Internal Server Error</Data>  
  <Data Name="HttpSubStatus">19</Data>  
  <Data Name="ErrorCode">2147942526</Data>  
  <Data Name="ConfigExceptionInfo"></Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>MODULE_SET_RESPONSE_ERROR_STATUS</Opcode>
  <Keywords>
   <Keyword>RequestNotifications</Keyword>
  </Keywords>
  <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>  
  <freb:Description Data="ErrorCode">Das angegebene Modul wurde nicht gefunden.  
 (0x8007007e)</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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">StaticCompressionModule</Data>  
  <Data Name="Notification">16</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">2</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>NOTIFY_MODULE_END</Opcode>
  <Keywords>
   <Keyword>RequestNotifications</Keyword>
  </Keywords>
  <freb:Description Data="Notification">MAP_REQUEST_HANDLER</freb:Description>  
  <freb:Description Data="NotificationStatus">NOTIFICATION_FINISH_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>1</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">AspNetFilterModule</Data>  
  <Data Name="Notification">1024</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">AspNetFilterModule</Data>  
  <Data Name="Notification">1024</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">Session</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.SessionState.SessionStateModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">Session</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">Profile</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Profile.ProfileModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Profile.ProfileModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">Profile</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ScriptModule-4.0</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Handlers.ScriptModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Data1">System.Web.Handlers.ScriptModule</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ScriptModule-4.0</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ManagedPipelineHandler</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotification">true</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>9</Opcode>
  <Keywords>0x1</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ConnID">0</Data>  
  <Data Name="Context ID">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ManagedPipelineHandler</Data>  
  <Data Name="Notification">2048</Data>  
  <Data Name="fIsPostNotificationEvent">true</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpLoggingModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpLoggingModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">WindowsAuthenticationModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">WindowsAuthenticationModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">BasicAuthenticationModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">BasicAuthenticationModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ProtocolSupportModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>56</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="HeaderName">X-Powered-By</Data>  
  <Data Name="HeaderValue">ASP.NET</Data>  
  <Data Name="Replace">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>GENERAL_SET_RESPONSE_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>5</Level>
  <Opcode>2</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">ProtocolSupportModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">IsapiFilterModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">DynamicCompressionModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>3</Level>
  <Opcode>16</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">DynamicCompressionModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="HttpStatus">500</Data>  
  <Data Name="HttpReason">Internal Server Error</Data>  
  <Data Name="HttpSubStatus">19</Data>  
  <Data Name="ErrorCode">2147942526</Data>  
  <Data Name="ConfigExceptionInfo"></Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>MODULE_SET_RESPONSE_ERROR_STATUS</Opcode>
  <Keywords>
   <Keyword>RequestNotifications</Keyword>
  </Keywords>
  <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>  
  <freb:Description Data="ErrorCode">Das angegebene Modul wurde nicht gefunden.  
 (0x8007007e)</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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">DynamicCompressionModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpCacheModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">HttpCacheModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">CustomErrorModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotification">false</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>NOTIFY_MODULE_START</Opcode>
  <Keywords>
   <Keyword>RequestNotifications</Keyword>
  </Keywords>
  <freb:Description Data="Notification">SEND_RESPONSE</freb:Description>  
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>0</Level>
  <Opcode>33</Opcode>
  <Keywords>0x0</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="HttpStatus">500</Data>  
  <Data Name="HttpSubStatus">19</Data>  
  <Data Name="FileNameOrURL">500.htm</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>GENERAL_SEND_CUSTOM_ERROR</Opcode>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">  
  <EventGuid>{D42CF7EF-DE92-473E-8B6C-621EA663113A}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">  
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>  
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>5</Level>
  <Opcode>2</Opcode>
  <Keywords>0x100</Keywords>
  <TimeCreated SystemTime="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="ModuleName">CustomErrorModule</Data>  
  <Data Name="Notification">536870912</Data>  
  <Data Name="fIsPostNotificationEvent">false</Data>  
  <Data Name="NotificationStatus">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="HttpsysCacheable">false</Data>  
  <Data Name="Reason">21</Data>  
  <Data Name="CachePolicy">0</Data>  
  <Data Name="TimeToLive">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>HTTPSYS_CACHEABLE</Opcode>
  <Keywords>
   <Keyword>Cache</Keyword>
  </Keywords>
  <freb:Description Data="Reason">NO_PIPELINE_ENABLE</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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Headers">Cache-Control: private  
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/8.5
</Data>
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="Buffer">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;   
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; 
&lt;head&gt; 
&lt;title&gt;IIS 8.5 Detaillierter Fehler - 500.19 - Internal Server Error&lt;/title&gt; 
&lt;style type=&quot;text/css&quot;&gt; 
&lt;!-- 
body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;} 
code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;} 
.config_source code{font-size:.8em;color:#000000;} 
pre{margin:0;font-size:1.4em;word-wrap:break-word;} 
ul,ol{margin:10px 0 10px 5px;} 
ul.first,ol.first{margin-top:5px;} 
fieldset{padding:0 15px 10px 15px;word-break:break-all;} 
.summary-container fieldset{padding-bottom:5px;margin-top:4px;} 
legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;} 
legend{color:#333333;;margin:4px 0 8px -12px;_margin-top:0px; 
font-weight:bold;font-size:1em;} 
a:link,a:visited{color:#007EFF;font-weight:bold;} 
a:hover{text-decoration:none;} 
h1{font-size:2.4em;margin:0;color:#FFF;} 
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.4em;margin:10px 0 0 0;color:#CC0000;} 
h4{font-size:1.2em;margin:10px 0 5px 0; 
}#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:&quot;trebuchet MS&quot;,Verdana,sans-serif; 
 color:#FFF;background-color:#5C87B2; 
}#content{margin:0 0 0 2%;position:relative;} 
.summary-container,.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;} 
.content-container p{margin:0 0 10px 0; 
}#details-left{width:35%;float:left;margin-right:2%; 
}#details-right{width:63%;float:left;overflow:hidden; 
}#server_version{width:96%;_height:1px;min-height:1px;margin:0 0 5px 0;padding:11px 2% 8px 2%;color:#FFFFFF; 
 background-color:#5A7FA5;border-bottom:1px solid #C1CFDD;border-top:1px solid #4A6C8E;font-weight:normal; 
 font-size:1em;color:#FFF;text-align:right; 
}#server_version p{margin:5px 0;} 
table{margin:4px 0 4px 0;width:100%;border:none;} 
td,th{vertical-align:top;padding:3px 0;text-align:left;font-weight:normal;border:none;} 
th{width:30%;text-align:right;padding-right:2%;font-weight:bold;} 
thead th{background-color:#ebebeb;width:25%; 
}#details-right th{width:20%;} 
table tr.alt td,table tr.alt th{} 
.highlight-code{color:#CC0000;font-weight:bold;font-style:italic;} 
.clear{clear:both;} 
.preferred{padding:0 5px 2px 5px;font-weight:normal;background:#006633;color:#FFF;font-size:.8em;} 
--&gt; 
&lt;/style&gt; 
 
&lt;/head&gt; 
&lt;body&gt; 
&lt;div id=&quot;content&quot;&gt; 
&lt;div class=&quot;content-container&quot;&gt; 
  &lt;h3&gt;HTTP-Fehler 500.19 - Internal Server Error&lt;/h3&gt; 
  &lt;h4&gt;Auf die angeforderte Seite kann nicht zugegriffen werden, da die zugeh%C3%B6rigen Konfigurationsdaten f%C3%BCr die Seite ung%C3%BCltig sind.&lt;/h4&gt; 
&lt;/div&gt; 
&lt;div class=&quot;content-container&quot;&gt; 
 &lt;fieldset&gt;&lt;h4&gt;Wahrscheinlichste Ursachen:&lt;/h4&gt; 
  &lt;ul&gt; %09&lt;li&gt;Der Arbeitsprozess kann die Datei &quot;applicationhost.config&quot; oder &quot;web.config&quot; nicht lesen.&lt;/li&gt; %09&lt;li&gt;Die Datei &quot;applicationhost.config&quot; oder &quot;web.config&quot; enth%C3%A4lt falsch formatierten XML-Code.&lt;/li&gt; %09&lt;li&gt;Der Server kann aufgrund falscher NTFS-Berechtigungen nicht auf die Datei &quot;applicationhost.config&quot; oder &quot;web.config&quot; zugreifen.&lt;/li&gt; &lt;/ul&gt; 
 &lt;/fieldset&gt; 
&lt;/div&gt; 
&lt;div class=&quot;content-container&quot;&gt; 
 &lt;fieldset&gt;&lt;h4&gt;M%C3%B6gliche Vorgehensweise:&lt;/h4&gt; 
  &lt;ul&gt; %09&lt;li&gt;In den Ereignisprotokollen finden Sie weitere Informationen dar%C3%BCber, warum die Konfigurationsdateien nicht gelesen werden k%C3%B6nnen.&lt;/li&gt; %09&lt;li&gt;Stellen Sie sicher, dass die f%C3%BCr den Anwendungspool angegebene Benutzeridentit%C3%A4t oder der authentifizierte Benutzer %C3%BCber die erforderlichen Berechtigungen f%C3%BCr den Zugriff auf die Datei &quot;web.config&quot; verf%C3%BCgt.&lt;/li&gt; &lt;/ul&gt; 
 &lt;/fieldset&gt; 
&lt;/div&gt; 
 
&lt;div class=&quot;content-container&quot;&gt; 
 &lt;fieldset&gt;&lt;h4&gt;Detaillierte Fehlerinformationen:&lt;/h4&gt; 
  &lt;div id=&quot;details-left&quot;&gt; 
   &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt; 
    &lt;tr class=&quot;alt&quot;&gt;&lt;th&gt;Modul&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;DynamicCompressionModule&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Benachrichtigung&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;SendResponse&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr class=&quot;alt&quot;&gt;&lt;th&gt;Handler&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;ExtensionlessUrlHandler-Integrated-4.0&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Fehlercode&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;0x8007007e&lt;/td&gt;&lt;/tr&gt; 
     
   &lt;/table&gt; 
  &lt;/div&gt; 
  &lt;div id=&quot;details-right&quot;&gt; 
   &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt; 
    &lt;tr class=&quot;alt&quot;&gt;&lt;th&gt;Angeforderte URL&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;http://localhost:80/connect&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Physischer Pfad&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;C:\Program Files\Windows Server\Bin\WebApps\Client&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr class=&quot;alt&quot;&gt;&lt;th&gt;Anmeldemethode&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Anonym&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr&gt;&lt;th&gt;Benutzeranmeldung&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Anonym&lt;/td&gt;&lt;/tr&gt; 
    &lt;tr class=&quot;alt&quot;&gt;&lt;th&gt;Verzeichnis f%C3%BCr Ablaufverfolgung&lt;/th&gt;&lt;td&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;C:\inetpub\logs\FailedReqLogFiles&lt;/td&gt;&lt;/tr&gt; 
   &lt;/table&gt; 
   &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt; 
  &lt;/div&gt; 
 &lt;/fieldset&gt; 
&lt;/div&gt; 
 
&lt;div class=&quot;content-container&quot;&gt; 
 &lt;fieldset&gt;&lt;h4&gt;Weitere Informationen:&lt;/h4&gt; 
  Dieser Fehler tritt auf, wenn beim Lesen der Konfigurationsdatei f%C3%BCr den Webserver oder die Webanwendung ein Problem vorliegt. In bestimmten F%C3%A4llen finden Sie weitere Informationen %C3%BCber die Ursache dieses Fehlers in den Ereignisprotokollen. 
  &lt;p&gt;&lt;a href=&quot;http://go.microsoft.com/fwlink/?LinkID=62293&amp;amp;IIS70Error=500,19,0x8007007e,9600&quot;&gt;Weitere Informationen anzeigen &amp;raquo;&lt;/a&gt;&lt;/p&gt; 
   
 &lt;/fieldset&gt; 
&lt;/div&gt; 
&lt;/div&gt; 
&lt;/body&gt; 
&lt;/html&gt; 
</Data>
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="BytesSent">5561</Data>  
  <Data Name="ErrorCode">0</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <Opcode>GENERAL_FLUSH_RESPONSE_END</Opcode>
  <freb:Description Data="ErrorCode">Der Vorgang wurde erfolgreich beendet.  
 (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="2016-09-29T18:04:05.731Z"/>  
  <Correlation ActivityID="{8000000E-0000-F900-B63F-84710C7967BB}"/>  
  <Execution ProcessID="9100" ThreadID="9152"/>  
  <Computer>SERVER</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{8000000E-0000-F900-B63F-84710C7967BB}</Data>  
  <Data Name="BytesSent">5561</Data>  
  <Data Name="BytesReceived">325</Data>  
  <Data Name="HttpStatus">500</Data>  
  <Data Name="HttpSubStatus">19</Data>  
 </EventData>
 <RenderingInfo Culture="de-DE">  
  <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>

Content-Key: 316553

Url: https://administrator.de/contentid/316553

Ausgedruckt am: 29.03.2024 um 05:03 Uhr

Mitglied: Pjordorf
Pjordorf 30.09.2016 um 10:56:03 Uhr
Goto Top
Hallo,

Zitat von @beamenwaerschoen:
An unserem Server 2012 Ess wollte ich heute noch einen weiteren Client anbinden.
OS ist was? Alle vorraussetzungen sind erfüllt?

Leider erscheint beim Aufrufen des Connectors per Browser
Du meinst sicherlich das http://<servername>/Connect, oder?

die Fehlermledung 500.
Dein Server hat alle updates und Patches drauf?
https://msdn.microsoft.com/de-de/library/jj713510(v=ws.11).aspx
https://technet.microsoft.com/de-de/library/jj635102(v=ws.11).aspx
https://technet.microsoft.com/en-us/library/dn408636(v=ws.11).aspx
http://homeservershow.com/forums/index.php?/topic/10952-serverconnect-g ...
https://social.technet.microsoft.com/Forums/en-US/f1c9c9be-1cdd-4885-9b6 ...
https://windowsserveressentials.com/2014/02/14/windows-server-essentials ...

Ich habe dann die localhost-abfrage vom Server gemacht,
Was bitte ist eine localhost-abfrage am Server?

aber dort erscheint auch nur der Fehler 500.19, bzw. 0x8007007e.
Wann ging es das letzte mal und was wurde danach geändert?

Aber aus dem Log werde ich nicht schlau.
Du hast hier
https://blogs.technet.microsoft.com/sbs/2014/09/30/windows-server-essent ...
https://blogs.technet.microsoft.com/sbs/2012/05/02/key-small-business-se ...
https://technet.microsoft.com/de-de/library/jj206706(v=ws.11).aspx

In der freb.xsl steht:
Über 7.000 Tausend Zeilen. Wer soll di für dich lesen? .....

Gruß,
Peter
Mitglied: beamenwaerschoen
beamenwaerschoen 30.09.2016 um 23:50:06 Uhr
Goto Top
Hi.

face-smile Ich weiß, 7000 Zeilen ist ein wenig viel. Ich hatte ja die Hoffnung, dass es halt "einfach" nur ein Stichwort gibt, wonach man sucht und den Fehler weiter eingrenzen könnte face-wink

OS des Clients ist übrigens Win 10 Pro. Und genau, ich meinte " http://<servername>/Connect", bzw. "http://localhost /Connect" vom Server aus. Mir ist zumindest keine bewusste Änderung aufgefallen. Nur Updates eingespielt, aber keine Programme oder so hinzugefügt/verändert/gelöscht. Ok, deren Upates halt face-wink Da der letzte Client irgendwann letzen Sommer war, fiel das halt lange nicht auf face-sad

Die Links schaue ich durch, sieht aber nach eher strenger Lektüre aus - mal sehen ob ichs verstehe.

THX

bws
Mitglied: Pjordorf
Pjordorf 01.10.2016 um 00:53:52 Uhr
Goto Top
Hallo,

Zitat von @beamenwaerschoen:
face-smile Ich weiß, 7000 Zeilen ist ein wenig viel. Ich hatte ja die Hoffnung, dass es halt "einfach" nur ein Stichwort gibt
Dann sollte deine tante Google diesen begriff doch finden, oder? face-smile

OS des Clients ist übrigens Win 10 Pro.
Das geht bestimmt noch genau. da gibt es verschiedene Windows 10 Versionen und ausgaben welche unterschiedlichst für Fehlermeldungen sorgen können.

Die Links schaue ich durch, sieht aber nach eher strenger Lektüre aus - mal sehen ob ichs verstehe.
Hat ja keiner gesagt das Windows einfach ist. face-smile

Da der letzte Client irgendwann letzen Sommer war, fiel das halt lange nicht auf face-sad
http://homeservershow.com/forums/index.php?/topic/11492-windows-10-anni ...
https://support.microsoft.com/en-us/kb/3172614
https://www.microsoft.com/en-us/download/details.aspx?id=40285
https://blogs.technet.microsoft.com/sbs/2016/01/22/windows-10-feature-up ...
Windows 10 und Server 2012 R2 Essentials
http://www.wegotserved.com/2015/07/29/microsoft-releases-windows-10-con ...
Ob es hilft? k.a.

Gruß,
Peter
Mitglied: beamenwaerschoen
beamenwaerschoen 01.10.2016 um 09:57:00 Uhr
Goto Top
Nur mal so zwischendurch: Hab nen Win 8.1 Pro (mit allen updates, bisher ausser den optionalen) mal angetestet. Geht genauso wenig. Das Problem liegt also vermutlich eher rein am Server (ebenfalls mit allen updates, bisher ausser den optionalen).

Tante Google ist übrigens nicht so fähig, wie sie sich immer gerne sieht face-wink Problem ist evtl auch, dass ich kaum noch weiß wonach ich sie fragen soll.
Mitglied: beamenwaerschoen
beamenwaerschoen 03.10.2016 aktualisiert um 19:34:38 Uhr
Goto Top
LEider haben mich die letzten beiden Tage nicht wirklich weiter gebracht. Obige Links waren fast alles schon bekannte Seiten, welche zwar hilfreich waren, aber die Lösung stand nicht drin ;-(

Evtl. komme ichja so weiter:

Kann mal jemand nen Vegleich mit seiner web.config ( C:\Program Files\Windows Server\Bin\WebApps\Client ) machen:

Meine sieht so aus:

<?xml version="1.0"?> 
<!--
  <copyright file="web.config" company="Microsoft"> 
    Copyright (C) Microsoft. All rights reserved.
  </copyright>
-->
<configuration>
  <configSections>
    <section name="wssg.external" type="Microsoft.WindowsServerSolutions.Configuration.ExternalConfigurationSection, WssgCommon, Version=6.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
  </configSections>  
	<system.webServer>
		<security>
			<requestFiltering>
				<hiddenSegments applyToWebDAV="true"> 
					<add segment="package"/> 
					<remove segment="bin"/> 
					<add segment="bin"/> 
				</hiddenSegments>
			</requestFiltering>
		</security>
		<urlCompression doDynamicCompression="false"/> 
    <httpRedirect enabled="false"/> 
	</system.webServer>
	<system.web>
		<compilation debug="false"/> 
    <customErrors mode="RemoteOnly"/> 
    <globalization enableClientBasedCulture ="true" uiCulture ="auto:en-us" culture ="auto:en-us"/> 
  </system.web>
  <wssg.external fileName="..\..\..\..\..\windows\system32\Essentials\logging.config"/> 
  <!-- The settings in globalAppSettings.config will be merged with the local appSettings (if it exists). -->
  <appSettings file="..\..\..\..\..\windows\system32\Essentials\globalAppSettings.config"> 
  </appSettings>
</configuration>


Habt ihr da evtl. was anderes drin?

Habt ihr da evtl. soagr noch eine "applicationhost.config" drin liegend? Die taucht in der Fehlermeldung auf, kan ich aber in keinem Ordner finden. Es steht aber auch dabei, dass der Fehler in der Web.config ODER der applicationhost.config auftritt. Da ich ja erstere habe, kann die andere Datei ja wohl auch ganz fehlen!?!?

DANKE vorab.

bws
Mitglied: Pjordorf
Pjordorf 03.10.2016 um 19:43:38 Uhr
Goto Top
Hallo,

Zitat von @beamenwaerschoen:
Obige Links waren fast alles schon bekannte Seiten
kann hier keiner wissen.

Evtl. komme ichja so weiter:
Einen Sch....vergleich?

Meine sieht so aus:
Eine Fehlermeldung aus ein Protokoll oder aus ein Log wäre besser

https://social.technet.microsoft.com/Forums/en-US/6f4db180-5b64-4693-a97 ...

Gruß,
Peter
Mitglied: beamenwaerschoen
beamenwaerschoen 03.10.2016 um 20:12:39 Uhr
Goto Top
Hi,

es war sehr nett die Links zu suchen und mir zu nennen, aber ich konnte ja auch vorher nicht sehen, dassich über diese Seiten schon drüber bin. Also nicht sauer sein!

Was meinst Du mit dem sch... Vergleich!?!?

Hier die Fehlermeldung im Original, soabld man eine Webseite auf dem Server aufruft, welche er eigentlich selber hat.


HTTP-Fehler 500.19 - Internal Server Error
Auf die angeforderte Seite kann nicht zugegriffen werden, da die zugehörigen Konfigurationsdaten für die Seite ungültig sind.
Wahrscheinlichste Ursachen:

Der Arbeitsprozess kann die Datei "applicationhost.config" oder "web.config" nicht lesen.
Die Datei "applicationhost.config" oder "web.config" enthält falsch formatierten XML-Code.
Der Server kann aufgrund falscher NTFS-Berechtigungen nicht auf die Datei "applicationhost.config" oder "web.config" zugreifen.


Detaillierte Fehlerinformationen:
Modul DynamicCompressionModule
Benachrichtigung SendResponse
Handler ExtensionlessUrlHandler-Integrated-4.0
Fehlercode 0x8007007e
Angeforderte URL http://server:80/connect
Physischer Pfad C:\Program Files\Windows Server\Bin\WebApps\Client
Anmeldemethode Anonym
Benutzeranmeldung Anonym


Gruß

bws
Mitglied: beamenwaerschoen
beamenwaerschoen 03.10.2016 um 20:24:53 Uhr
Goto Top
AHHHHHHHHHHHHHHHHHHHHHH, DU IT-GOTT!!!!!!

Hier war meine Lösung:

https://social.technet.microsoft.com/Forums/en-US/6f4db180-5b64-4693-a97 ...


Vielen vielen Dank @peter
Mitglied: beamenwaerschoen
beamenwaerschoen 03.10.2016 um 20:29:46 Uhr
Goto Top
Noch eine Frage: Wie bist du auf diesen Link gekommen??? Ich habe jetzt fast 3 Tage gesucht, und dann wars in 30 Sekunden erledigt face-sad
Mitglied: Pjordorf
Pjordorf 03.10.2016 um 20:56:55 Uhr
Goto Top
Hallo,

Zitat von @beamenwaerschoen:
Noch eine Frage: Wie bist du auf diesen Link gekommen??? Ich habe jetzt fast 3 Tage gesucht, und dann wars in 30 Sekunden erledigt face-sad
Nachdem du zwar gesagt hast das du das Internet leergesucht hast, dachte ich such einfach mal nach 0x8007007e in Kombination mit "server 2012 essentials connect computer 0x8007007e" obwohl du dies ja schon ausgiebig gemacht haben willst. Es ist dort der erste Treffer. Und vielleicht hast du mit deinen normalerweise vorhanden WSUS ebenfalls dich ebenfalls mal unbekannterweise angelegt....

Schön wenn dein Essentials wieder tut....

Gruß,
Peter
Mitglied: beamenwaerschoen
beamenwaerschoen 06.10.2016 um 08:27:07 Uhr
Goto Top
face-sad das waren natürlich auch Stichworte die ich verwendet habe - wonach sollte ich sonst suchen??? Anscheind war aber mein Tausch von "computer" mit "client" der fehler. Seltsam!

Der WSUS lief glaube mal für 1-2 Monate. Da aber mal der, mal der PC Probleme hatten wurde die Rolle entfernt. Was ja anscheint auch ganz toll geklappt hat face-sad

DANKE jedenfalls nochmals für deine Mühe.

bws