Hi,
we have same issue for one client, getting http status 500.
You need to enable detailed info in IIS or better enable Failed Request Tracking. Then you can investigate xml logs.
In our case we get:
" + collapseAllText;
else
expandButton.innerHTML = "
+" + 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[0].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 0) {
var firstRow = table.rows[0];
}
if (!firstRow) return;
// We have a first row: assume it's the header, and make its contents clickable links
for (var i=0;i' +
txt+'
';*/
// BDG: Added default sort direction: desc class for descending.
if ( (' '+cell.className+' ').indexOf("desc") != -1 )
{
cell.innerHTML = '';
}
else
{
cell.innerHTML = '';
}
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" ) {
sortfn = ts_sort_numeric;
}
SORT_COLUMN_INDEX = column;
var firstRow = new Array();
var newRows = new Array();
for (i=0;i\(\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;
}
}
ModuleName | FastCgiModule |
---|
Notification | EXECUTE_REQUEST_HANDLER |
---|
HttpStatus | 500 |
---|
HttpReason | Internal Server Error |
---|
HttpSubStatus | 0 |
---|
ErrorCode | The I/O operation has been aborted because of either a thread exit or an application request.
(0x800703e3) |
---|
|
Try someting similar and maybe you can get closer to the solution:)