Office Web Apps Exception: “An item with the same key has already been added”

 

 

Scenario and Symptom:

 

An Office Web Apps 2013 server is talking to a SharePoint 2013 server and the following shows up in the ULS log (C:\ProgramData\Microsoft\OfficeWebApps\Data\Logs\ULS) of the OWA/WAC server:

 

03/14/2014 10:19:20.90         w3wp.exe (0x1CDC)    0x2854 Office Web Apps         Office Web Apps common            agq6x  Exception        WAC Server FrontEnd unhandled exception [0] System.ArgumentException: An item with the same key has already been added.     at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)     at Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter.TryGetValue[T](String settingName, T& value)     at Microsoft.Office.Web.Apps.Common.WopiDocument.ValidateHostAndSetFileSource()     at Microsoft.Office.Web.Apps.Common.WopiDocument..ctor(String fileRep, String accessToken, Int64 accessTokenTtl, String version, String sessionContext, WopiType wopiType)     at Microsoft.Office.Web.Apps.Common.WopiDocument.IsValidWopiQueryString(String querySignature, BaseDocumentType docType, Boolean createDoc, BaseDocument& doc)     at Microsoft.Office.Web.Apps.Common.WopiDocument.CreateFromQuerySignature(String querySignature)     at Microsoft.Office.Web.Apps.Environment.WacServer.WSMainStorage.GetBaseDocumentFromContext(HttpContext context, String rawHostDocumentId)     at Microsoft.Office.Web.Host.WacServer.WebWordViewer.WordViewerFrame.OnPreRender(EventArgs e)     at System.Web.UI.Control.PreRenderRecursiveInternal()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) StackTrace:  at uls.native.dll: (sig=35ebf2aa-983a-4c4a-a61b-a0d5e84ac5d0|2|uls.native.pdb, offset=26E6A) at uls.native.dll: (offset=1F8A9)    29e37d01-8664-4b81-a916-bd4f92c34805

 

There aren't many good clues as to what key they're talking about and what item is already there.

 

 

Solution:

 

 

This problem may be caused by having duplicate entries in the allowlist for domains.

Check this ini file on the OWA/WAC server for duplicate entries: C:\ProgramData\Microsoft\OfficeWebApps\Data\FarmState\allowList.ini file

If there is a domain that is listed twice in there, that is probably the cause of this problem. But do not attempt to remove any duplicates from the .ini file.

As an alternative to opening the .ini file, you can run this PowerShell cmdlet: Get-OfficeWebAppsHost

More info:

https://technet.microsoft.com/en-us/library/jj219446(v=office.15).aspx

The Get-OfficeWebAppsHost cmdlet returns the list of host domains to which Office Web Apps Server allows file operations requests, such as file retrieval, metadata retrieval, and file changes. This list, known as the Allow List, is a security feature that prevents unwanted hosts from connecting to an Office Web Apps Server farm and using it for file operations without your knowledge.

The wildcard * is assumed for any domain that appears on the Allow List so that requests to all subdomains are also allowed. For example, if the domain contoso.com is on the Allow List, then Office Web Apps Server also allows requests to the domains corp.contoso.com and dev.contoso.com. Requests to other domains (such as fabrikam.com) are not allowed.

 

You can consider removing the duplicate using this cmdlet: Remove-OfficeWebAppsHost -Domain <String>

More info:

https://technet.microsoft.com/en-us/library/jj219453(v=office.15).aspx

The Remove-OfficeWebAppsHost cmdlet removes the specified host domain from the Allow List. The Allow List contains the host domains to which Office Web Apps Server allows file operations requests.

 

 

 

 

Root Cause:

 

In our case, we tripped an exception dump of the w3wp.exe process on the OWA server that served the Web Word Viewer while reproducing the problem.

Since psscor4.dll extension technically doesn't work for .net 4.5, and since this is technically .net 4.5 (even though it looks like 4.0), I loaded SOS.dll from C:\Windows\Microsoft.NET\Framework64\v4.0.30319 into windbg.exe while examining the memory dump.

 

!dae (dump all exceptions) showed these:

 

Exception Type        : System.ArgumentException

Message: An item with the same key has already been added.

Exception Method Table: 000007FEF7EA1F08

Exception Object      : 00000003FF8BE328

HResult: 80070057

InnerException: <none>

StackTrace:

   000000001070DCD0 000007FEF8A5C70C System.Collections.Generic.Dictionary`2[[System.__Canon, mscorlib],[System.__Canon, mscorlib]].Insert(System.__Canon, System.__Canon, Boolean)

   000000001070DD60 000007FE9982CAAC Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter.TryGetValue[[System.__Canon, mscorlib]](System.String, System.__Canon ByRef)

   000000001070DE10 000007FE99C61838 Microsoft.Office.Web.Apps.Common.WopiDocument.ValidateHostAndSetFileSource()

   000000001070DEE0 000007FE99C613B0 Microsoft.Office.Web.Apps.Common.WopiDocument..ctor(System.String, System.String, Int64, System.String, System.String, Microsoft.Office.Web.Apps.Common.WopiType)

   000000001070DF30 000007FE99C52A03 Microsoft.Office.Web.Apps.Common.WopiDocument.IsValidWopiQueryString(System.String, Microsoft.Office.Web.Common.EnvironmentAdapters.BaseDocumentType, Boolean, Microsoft.Office.Web.Common.EnvironmentAdapters.BaseDocument ByRef)

   000000001070DFD0 000007FE99C61291 Microsoft.Office.Web.Apps.Common.WopiDocument.CreateFromQuerySignature(System.String)

   000000001070E020 000007FE99C611EF Microsoft.Office.Web.Apps.Environment.WacServer.WSMainStorage.GetBaseDocumentFromContext(System.Web.HttpContext, System.String)

   000000001070E060 000007FE99BF9F2A Microsoft.Office.Web.Host.WacServer.WebWordViewer.WordViewerFrame.OnPreRender(System.EventArgs)

   000000001070E0E0 000007FEE2D4BCD1 System.Web.UI.Control.PreRenderRecursiveInternal()

   000000001070E130 000007FEE2D6EDD9 System.Web.UI.Page.ProcessRequestMain(Boolean, Boolean)

 

 

 

Exception Type        : System.Web.HttpUnhandledException

Message:

Exception Method Table: 000007FEE2EEF828

Exception Object      : 00000003FF8BE738

HResult: 80004005

InnerException:

 

   Exception Type        : System.ArgumentException

  Message: An item with the same key has already been added.

   Exception Method Table: 000007FEF7EA1F08

   Exception Object      : 00000003FF8BE328

   HResult: 80070057

   InnerException: <none>

   StackTrace:

      000000001070DCD0 000007FEF8A5C70C System.Collections.Generic.Dictionary`2[[System.__Canon, mscorlib],[System.__Canon, mscorlib]].Insert(System.__Canon, System.__Canon, Boolean)

      000000001070DD60 000007FE9982CAAC Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter.TryGetValue[[System.__Canon, mscorlib]](System.String, System.__Canon ByRef)

      000000001070DE10 000007FE99C61838 Microsoft.Office.Web.Apps.Common.WopiDocument.ValidateHostAndSetFileSource()

      000000001070DEE0 000007FE99C613B0 Microsoft.Office.Web.Apps.Common.WopiDocument..ctor(System.String, System.String, Int64, System.String, System.String, Microsoft.Office.Web.Apps.Common.WopiType)

      000000001070DF30 000007FE99C52A03 Microsoft.Office.Web.Apps.Common.WopiDocument.IsValidWopiQueryString(System.String, Microsoft.Office.Web.Common.EnvironmentAdapters.BaseDocumentType, Boolean, Microsoft.Office.Web.Common.EnvironmentAdapters.BaseDocument ByRef)

      000000001070DFD0 000007FE99C61291 Microsoft.Office.Web.Apps.Common.WopiDocument.CreateFromQuerySignature(System.String)

      000000001070E020 000007FE99C611EF Microsoft.Office.Web.Apps.Environment.WacServer.WSMainStorage.GetBaseDocumentFromContext(System.Web.HttpContext, System.String)

      000000001070E060 000007FE99BF9F2A Microsoft.Office.Web.Host.WacServer.WebWordViewer.WordViewerFrame.OnPreRender(System.EventArgs)

      000000001070E0E0 000007FEE2D4BCD1 System.Web.UI.Control.PreRenderRecursiveInternal()

      000000001070E130 000007FEE2D6EDD9 System.Web.UI.Page.ProcessRequestMain(Boolean, Boolean)

 

StackTrace:

   000000001070BC50 000007FEE396CDA7 System.Web.UI.Page.HandleError(System.Exception)

   000000001070BD40 000007FEE396DB53 System.Web.UI.Page.ProcessRequestMain(Boolean, Boolean)

   000000001070E1F0 000007FEE396D795 System.Web.UI.Page.ProcessRequest(Boolean, Boolean)

   000000001070E260 000007FEE34AD934 System.Web.HttpContext.InvokeCancellableCallback(System.Threading.WaitCallback, System.Object)

   000000001070E2C0 000007FEE39ADD84 System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(System.Web.HttpContext, System.AsyncCallback, System.Object)

   000000001070E330 000007FEE2D76262 System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()

 

 

 

0:036> !dso

The version of SOS does not match the version of CLR you are debugging.  Please

load the matching version of SOS for the version of CLR you are debugging.

CLR Version: 4.0.30319.19132

SOS Version: 4.0.30319.18063

OS Thread Id: 0x2854 (36)

RSP/REG          Object           Name

r13              00000003ff8be738 System.Web.HttpUnhandledException

0000000010705C40 00000003ff8be738 System.Web.HttpUnhandledException

0000000010705CA8 00000003ff8be738 System.Web.HttpUnhandledException

0000000010705D10 00000003ff8be738 System.Web.HttpUnhandledException

0000000010705DF0 00000003ff8be738 System.Web.HttpUnhandledException

0000000010705EA8 00000003ff8be738 System.Web.HttpUnhandledException

0000000010706340 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

0000000010706358 00000000ff706918 ASP.global_asax

0000000010706360 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

0000000010706388 00000003ff891b60 ASP.wordviewerframe_aspx

0000000010706390 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010706398 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010706660 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010706678 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

00000000107066B8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010706890 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

00000000107068A8 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

00000000107068E8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010706BA0 00000003ff8be738 System.Web.HttpUnhandledException

0000000010706F70 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010706F88 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

0000000010706FC8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010707448 00000000ff7078e8 System.Web.PipelineModuleStepContainer

00000000107074A8 00000003ff8be738 System.Web.HttpUnhandledException

00000000107075C0 00000003ff8be738 System.Web.HttpUnhandledException

00000000107078C0 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

00000000107078D8 00000000ff706918 ASP.global_asax

00000000107078E0 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

0000000010707908 00000003ff891b60 ASP.wordviewerframe_aspx

0000000010707910 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010707918 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010707A80 00000003ff8be738 System.Web.HttpUnhandledException

0000000010707B80 00000003ff8be738 System.Web.HttpUnhandledException

0000000010707BD0 00000003ff8be738 System.Web.HttpUnhandledException

0000000010707BE8 00000003ff8be738 System.Web.HttpUnhandledException

0000000010707C50 00000003ff8be738 System.Web.HttpUnhandledException

0000000010707D30 00000003ff8be738 System.Web.HttpUnhandledException

0000000010708270 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

0000000010708288 00000000ff706918 ASP.global_asax

0000000010708290 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

00000000107082B8 00000003ff891b60 ASP.wordviewerframe_aspx

00000000107082C0 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

00000000107082C8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010708590 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

00000000107085A8 00000000ff706918 ASP.global_asax

00000000107085B0 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

00000000107085D8 00000003ff891b60 ASP.wordviewerframe_aspx

00000000107085E0 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

00000000107085E8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

00000000107087C0 00000003ff892990 System.Threading.WaitCallback

00000000107087D8 00000000ff70a330 System.AsyncCallback

00000000107087E0 00000000ff9a80d8 System.Web.HttpContext

0000000010708810 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010708818 00000000ff7078e8 System.Web.PipelineModuleStepContainer

0000000010708AD0 00000003ff8be738 System.Web.HttpUnhandledException

0000000010708EA0 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

0000000010708EB8 00000000ff706918 ASP.global_asax

0000000010708EC0 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

0000000010708EE8 00000003ff891b60 ASP.wordviewerframe_aspx

0000000010708EF0 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010708EF8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

00000000107093D8 00000003ff8be738 System.Web.HttpUnhandledException

00000000107094F0 00000003ff8be738 System.Web.HttpUnhandledException

00000000107097E0 00000003ff892990 System.Threading.WaitCallback

00000000107097F8 00000000ff70a330 System.AsyncCallback

0000000010709830 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

0000000010709838 00000000ff7078e8 System.Web.PipelineModuleStepContainer

00000000107099B0 00000003ff8be738 System.Web.HttpUnhandledException

0000000010709AB0 00000003ff8be738 System.Web.HttpUnhandledException

0000000010709B00 00000003ff892990 System.Threading.WaitCallback

0000000010709B18 00000003ff8be738 System.Web.HttpUnhandledException

0000000010709B80 00000003ff8be738 System.Web.HttpUnhandledException

0000000010709C60 00000003ff8be738 System.Web.HttpUnhandledException

000000001070A1A8 00000000ff70a330 System.AsyncCallback

000000001070A1E0 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070A1E8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070A4B0 00000003ff892990 System.Threading.WaitCallback

000000001070A4C8 00000000ff70a330 System.AsyncCallback

000000001070A500 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070A508 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070A6E0 00000003ff892990 System.Threading.WaitCallback

000000001070A6F8 00000000ff70a330 System.AsyncCallback

000000001070A730 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070A738 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070A9F0 00000003ff8be738 System.Web.HttpUnhandledException

000000001070ADC0 00000003ff892990 System.Threading.WaitCallback

000000001070ADD8 00000000ff70a330 System.AsyncCallback

000000001070AE10 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070AE18 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070B2F8 00000003ff8be328 System.ArgumentException

000000001070B410 00000003ff8be328 System.ArgumentException

000000001070B8B8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070B8D0 00000003ff8be328 System.ArgumentException

000000001070B9D0 00000003ff8be738 System.Web.HttpUnhandledException

000000001070BA38 00000003ff8be738 System.Web.HttpUnhandledException

000000001070BA98 00000003ff8be328 System.ArgumentException

000000001070BAD0 00000003ff8be738 System.Web.HttpUnhandledException

000000001070BBB0 00000003ff8be328 System.ArgumentException

000000001070BBB8 00000003ff8be738 System.Web.HttpUnhandledException

000000001070BBD0 00000003ff8be328 System.ArgumentException

000000001070BC40 00000003ff8be738 System.Web.HttpUnhandledException

000000001070BC50 00000003ff8be328 System.ArgumentException

000000001070BCA8 00000003ff8be328 System.ArgumentException

000000001070BCD0 00000000ff9a80d8 System.Web.HttpContext

000000001070BD08 00000003ff8be328 System.ArgumentException

000000001070BD40 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070BD48 00000003ff8be328 System.ArgumentException

000000001070BD78 00000003ff8be328 System.ArgumentException

000000001070C180 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070C188 00000003ff81bc38 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Resources.ResourceLocator, mscorlib]]

000000001070C190 00000003ff81bbd8 System.Resources.RuntimeResourceSet

000000001070C228 00000000ff70a330 System.AsyncCallback

000000001070C260 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070C268 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070C348 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070C360 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070C370 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070C378 00000003ff81bbd8 System.Resources.RuntimeResourceSet

000000001070C440 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070C448 00000003ff8be270 System.Environment+ResourceHelper+GetResourceStringUserData

000000001070C450 00000003ff81a058 System.Environment+ResourceHelper

000000001070C470 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070C480 00000003ff81b8f8 System.Resources.ResourceManager

000000001070C548 00000000ff70a330 System.AsyncCallback

000000001070C580 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070C588 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070C650 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070C760 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070C778 00000001ff6e1420 System.String   

000000001070C780 00000000ff9a80d8 System.Web.HttpContext

000000001070C7B8 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070C880 00000003ff81b8f8 System.Resources.ResourceManager

000000001070CE58 00000000ff70a330 System.AsyncCallback

000000001070CE90 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070CE98 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070CF60 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070CF68 00000003ff81bc38 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Resources.ResourceLocator, mscorlib]]

000000001070CF70 00000003ff81bbd8 System.Resources.RuntimeResourceSet

000000001070D0E8 00000003ff81bc88 System.Resources.ResourceReader

000000001070D128 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070D140 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070D150 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070D158 00000003ff81bbd8 System.Resources.RuntimeResourceSet

000000001070D160 00000003ff81b8f8 System.Resources.ResourceManager

000000001070D168 00000002ff6e1250 System.String    mscorlib

000000001070D170 00000001ff6e3aa0 System.Globalization.CultureInfo

000000001070D178 00000001ff6e69e8 System.Reflection.RuntimeAssembly

000000001070D190 00000003ff81bbd8 System.Resources.RuntimeResourceSet

000000001070D198 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070D1A8 00000001ff6e69e8 System.Reflection.RuntimeAssembly

000000001070D1C0 00000003ff81b8f8 System.Resources.ResourceManager

000000001070D1C8 00000001ff6e2338 System.Globalization.CultureInfo

000000001070D220 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070D228 00000003ff8be270 System.Environment+ResourceHelper+GetResourceStringUserData

000000001070D230 00000003ff81a058 System.Environment+ResourceHelper

000000001070D250 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070D260 00000003ff81b8f8 System.Resources.ResourceManager

000000001070D378 00000002ff6eba60 System.Collections.Generic.GenericEqualityComparer`1[[System.String, mscorlib]]

000000001070D490 00000002ff6eba60 System.Collections.Generic.GenericEqualityComparer`1[[System.String, mscorlib]]

000000001070D6B0 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070D700 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070D740 00000002ff6f9dd0 System.String    Microsoft.SharePoint.Diagnostics.CorrelationContext

000000001070D7A0 00000003ff819080 System.String    somedomain.net

000000001070D7E0 00000002ff6f9dd0 System.String    Microsoft.SharePoint.Diagnostics.CorrelationContext

000000001070D838 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070D950 00000002ff6eba60 System.Collections.Generic.GenericEqualityComparer`1[[System.String, mscorlib]]

000000001070D9E8 00000002ff6fa090 Microsoft.Internal.Diagnostics.ULSCat

000000001070DA50 00000003ff8be328 System.ArgumentException

000000001070DAB8 00000003ff8be328 System.ArgumentException

000000001070DB08 00000003ff819080 System.String    somedomain.net

000000001070DB10 00000003ff8be328 System.ArgumentException

000000001070DB50 00000003ff8be328 System.ArgumentException

000000001070DB78 00000003ff819108 System.String    Argument_AddingDuplicate

000000001070DC28 00000003ff8be328 System.ArgumentException

000000001070DC38 00000003ff8be328 System.ArgumentException

000000001070DC48 00000003ff819080 System.String    somedomain.net

000000001070DC50 00000002ff6eba60 System.Collections.Generic.GenericEqualityComparer`1[[System.String, mscorlib]]

000000001070DCC0 00000003ff81c0f8 System.String    An item with the same key has already been added.

000000001070DCD0 00000003ff8be198 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.String, mscorlib]]

000000001070DCE0 00000003ff8be198 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.String, mscorlib]]

000000001070DCE8 00000003ff8be140 System.Collections.Generic.List`1[[System.String, mscorlib]]

000000001070DCF0 00000003ff8be198 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.String, mscorlib]]

000000001070DD00 00000002ff7022a0 System.String    WACSERVER

000000001070DD08 00000003ff819010 System.String    somedomain.net

000000001070DD30 00000002ff6fadb0 Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter

000000001070DD40 00000003ff8be140 System.Collections.Generic.List`1[[System.String, mscorlib]]

000000001070DD50 00000003ff8be198 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.String, mscorlib]]

000000001070DD70 00000002ff6fadb0 Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter

000000001070DD88 00000003ff8be140 System.Collections.Generic.List`1[[System.String, mscorlib]]

000000001070DDB0 00000003ff8be140 System.Collections.Generic.List`1[[System.String, mscorlib]]

000000001070DDB8 00000003ff819080 System.String    somedomain.net

000000001070DDC8 00000003ff8be198 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.String, mscorlib]]

000000001070DDE8 00000003ff8b99a0 System.String    http%3A%2F%2Fthegreen%2Esomedomain%2Enet%2F%5Fvti%5Fbin%2Fwopi%2Eashx%2Ffiles%2F530ba45428634191a8b8c1d2234d3bbc

000000001070DDF0 00000003ff8bcf60 Microsoft.Office.Web.Apps.Common.WopiDocument

000000001070DDF8 00000003ff6e4f10 System.Text.UTF8Encoding

000000001070DE30 00000003ff8bd170 System.Char[]

000000001070DE38 00000003ff8bd138 System.Web.Util.HttpEncoder+UrlDecoder

000000001070DEB8 00000003ff8b99a0 System.String    http%3A%2F%2Fthegreen%2Esomedomain%2Enet%2F%5Fvti%5Fbin%2Fwopi%2Eashx%2Ffiles%2F530ba45428634191a8b8c1d2234d3bbc

000000001070DEC0 00000003ff8bcf60 Microsoft.Office.Web.Apps.Common.WopiDocument

000000001070DEC8 00000003ff6e4f10 System.Text.UTF8Encoding

000000001070DED0 00000003ff8bc410 System.String    eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtibHVXNmlFamlxTEVRdldEdXliME1DRkhkTSJ9.eyJhdWQiOiJ3b3BpL3RoZWdyZWVuLmludGVjbS5nb3ZAYjdhYjdlNDgtOGM1ZC00NDU2LTlmNzYtNzBiOGYzMjVjZWY3IiwiaXNzIjoiMDAwMDAwMDMtMDAwMC0wZmYxLWNlMDAtMDAwMDAwMDAwMDAwQGI3YWI3ZTQ4LThjNWQtNDQ1Ni05Zjc2LTcwYjhmMzI1Y2VmNyIsIm5iZiI6IjEzOTQ4MDY3NDciLCJleHAiOiIxMzk0ODQyNzQ3IiwibmFtZWlkIjoiMCMud3x0cmVhc3VyeVxccGhpZmVybiIsIm5paSI6Im1pY3Jvc29mdC5zaGFyZXBvaW50IiwiaXN1c2VyIjoidHJ1ZSIsImNhY2hla2V5IjoiMCkud3xzLTEtNS0yMS0zMzc2MDg1OTYtMjk3Nzk4MzM5LTEwNTA4ODc5NzQtODQ0NzEiLCJpc2xvb3BiYWNrIjoiVHJ1ZSIsImFwcGN0eCI6IjUzMGJhNDU0Mjg2MzQxOTFhOGI4YzFkMjIzNGQzYmJjO3RxdlZ4bEVkZ0FUOVMxZWdadFpKOUlGWHNNaz07Q3VzdG9tOzs3RkZGRkZGRkZGRkZGRkZGO1RydWUifQ.HL23QBOF6UtZWzBwY4VTJtlNvrvUX_PSQOCws3oYbBZ4iHDySTurDE9ETbUeeeLYAMXVQ0-e4pQjxQnFa_ERwfuaCE8A-Ocp242Tebv1F2h8xqAsTRDYXGIE8jj_nb8gnKG5_JGFJ8V1nZxWEPDAnibEpSGBH26gKKI8TXClsQeGy_n04ahHzUTB-nuT4KNsVkr8gx4aE8vp4VCQOKDJXBlW32LxPIVX1C6VWiv2iprGE4VZqK2CAgy0waHJzOJrtcM4gP4la_vdQ6_5VVn10BDWtJo6LmF0skC_KvJElmiRriREJCmUcbJ8Vr0u1b5kQZdcb5bAu9-VkjVD4lL5Hg

000000001070DEE0 00000003ff8bcf60 Microsoft.Office.Web.Apps.Common.WopiDocument

000000001070DEE8 00000003ff8bcec0 System.Uri

000000001070DEF0 00000003ff8bcdf8 System.String    https://somesite.somedomain.net/_vti_bin/wopi.ashx/files/530ba45428634191a8b8c1d2234d3bbc

000000001070DF08 00000003ff8b99a0 System.String    http%3A%2F%2Fsomesite%2Esomedomain%2Enet%2F%5Fvti%5Fbin%2Fwopi%2Eashx%2Ffiles%2F530ba45428634191a8b8c1d2234d3bbc

000000001070DF10 00000003ff8bc410 System.String    eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtibHVXNmlFamlxTEVRdldEdXliME1DRkhkTSJ9.eyJhdWQiOiJ3b3BpL3RoZWdyZWVuLmludGVjbS5nb3ZAYjdhYjdlNDgtOGM1ZC00NDU2LTlmNzYtNzBiOGYzMjVjZWY3IiwiaXNzIjoiMDAwMDAwMDMtMDAwMC0wZmYxLWNlMDAtMDAwMDAwMDAwMDAwQGI3YWI3ZTQ4LThjNWQtNDQ1Ni05Zjc2LTcwYjhmMzI1Y2VmNyIsIm5iZiI6IjEzOTQ4MDY3NDciLCJleHAiOiIxMzk0ODQyNzQ3IiwibmFtZWlkIjoiMCMud3x0cmVhc3VyeVxccGhpZmVybiIsIm5paSI6Im1pY3Jvc29mdC5zaGFyZXBvaW50IiwiaXN1c2VyIjoidHJ1ZSIsImNhY2hla2V5IjoiMCkud3xzLTEtNS0yMS0zMzc2MDg1OTYtMjk3Nzk4MzM5LTEwNTA4ODc5NzQtODQ0NzEiLCJpc2xvb3BiYWNrIjoiVHJ1ZSIsImFwcGN0eCI6IjUzMGJhNDU0Mjg2MzQxOTFhOGI4YzFkMjIzNGQzYmJjO3RxdlZ4bEVkZ0FUOVMxZWdadFpKOUlGWHNNaz07Q3VzdG9tOzs3RkZGRkZGRkZGRkZGRkZGO1RydWUifQ.HL23QBOF6UtZWzBwY4VTJtlNvrvUX_PSQOCws3oYbBZ4iHDySTurDE9ETbUeeeLYAMXVQ0-e4pQjxQnFa_ERwfuaCE8A-Ocp242Tebv1F2h8xqAsTRDYXGIE8jj_nb8gnKG5_JGFJ8V1nZxWEPDAnibEpSGBH26gKKI8TXClsQeGy_n04ahHzUTB-nuT4KNsVkr8gx4aE8vp4VCQOKDJXBlW32LxPIVX1C6VWiv2iprGE4VZqK2CAgy0waHJzOJrtcM4gP4la_vdQ6_5VVn10BDWtJo6LmF0skC_KvJElmiRriREJCmUcbJ8Vr0u1b5kQZdcb5bAu9-VkjVD4lL5Hg

000000001070DF20 00000003ff8bcf60 Microsoft.Office.Web.Apps.Common.WopiDocument

000000001070DF30 00000002ff6eb0c8 System.Globalization.CultureInfo

000000001070DF90 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070DFA8 00000000ff9a80d8 System.Web.HttpContext

000000001070DFB0 00000001ff6e1420 System.String   

000000001070DFC0 00000003ff8b6b08 System.String    ui=en%2DUS&rs=en%2DUS&WOPISrc=http%3A%2F%2Fsomesite%2Esomedomain%2Enet%2F%5Fvti%5Fbin%2Fwopi%2Eashx%2Ffiles%2F530ba45428634191a8b8c1d2234d3bbc&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImtibHVXNmlFamlxTEVRdldEdXliME1DRkhkTSJ9%2EeyJhdWQiOiJ3b3BpL3RoZWdyZWVuLmludGVjbS5nb3ZAYjdhYjdlNDgtOGM1ZC00NDU2LTlmNzYtNzBiOGYzMjVjZWY3IiwiaXNzIjoiMDAwMDAwMDMtMDAwMC0wZmYxLWNlMDAtMDAwMDAwMDAwMDAwQGI3YWI3ZTQ4LThjNWQtNDQ1Ni05Zjc2LTcwYjhmMzI1Y2VmNyIsIm5iZiI6IjEzOTQ4MDY3NDciLCJleHAiOiIxMzk0ODQyNzQ3IiwibmFtZWlkIjoiMCMud3x0cmVhc3VyeVxccGhpZmVybiIsIm5paSI6Im1pY3Jvc29mdC5zaGFyZXBvaW50IiwiaXN1c2VyIjoidHJ1ZSIsImNhY2hla2V5IjoiMCkud3xzLTEtNS0yMS0zMzc2MDg1OTYtMjk3Nzk4MzM5LTEwNTA4ODc5NzQtODQ0NzEiLCJpc2xvb3BiYWNrIjoiVHJ1ZSIsImFwcGN0eCI6IjUzMGJhNDU0Mjg2MzQxOTFhOGI4YzFkMjIzNGQzYmJjO3RxdlZ4bEVkZ0FUOVMxZWdadFpKOUlGWHNNaz07Q3VzdG9tOzs3RkZGRkZGRkZGRkZGRkZGO1RydWUifQ%2EHL23QBOF6UtZWzBwY4VTJtlNvrvUX%5FPSQOCws3oYbBZ4iHDySTurDE9ETbUeeeLYAMXVQ0%2De4pQjxQnFa%5FERwfuaCE8A%2DOcp242Tebv1F2h8xqAsTRDYXGIE8jj%5Fnb8gnKG5%5FJGFJ8V1nZxWEPDAnibEpSGBH26gKKI8TXClsQeGy%5Fn04ahHzUTB%2DnuT4KNsVkr8gx4aE8vp4VCQOKDJXBlW32LxPIVX1C6VWiv2iprGE4VZqK2CAgy0waHJzOJrtcM4gP4la%5FvdQ6%5F5VVn10BDWtJo6LmF0skC%5FKvJElmiRriREJCmUcbJ8Vr0u1b5kQZdcb5bAu9%2DVkjVD4lL5Hg&access_token_ttl=1394842747481

000000001070DFE0 00000000ff7078e8 System.Web.PipelineModuleStepContainer

000000001070DFF8 00000000ff9a80d8 System.Web.HttpContext

000000001070E000 00000001ff6e1420 System.String   

000000001070E008 00000000ff9a80d8 System.Web.HttpContext

000000001070E010 00000002ff74fbf8 Microsoft.Office.Web.Apps.Environment.WacServer.WSMainStorage

000000001070E020 00000003ff893638 System.Web.UI.HtmlControls.HtmlGenericControl

000000001070E030 00000000ff70fbb8 System.Lazy`1[[Microsoft.Office.Web.Common.EnvironmentAdapters.IMainStorage, Microsoft.Office.Web.Common]]

000000001070E038 00000003ff892ec8 Microsoft.Office.Web.WordViewer.Controls.WordViewerStaticResourcesLoader

000000001070E040 00000003ff892ec8 Microsoft.Office.Web.WordViewer.Controls.WordViewerStaticResourcesLoader

000000001070E048 00000003ff892ec8 Microsoft.Office.Web.WordViewer.Controls.WordViewerStaticResourcesLoader

000000001070E050 00000002ff74fbf8 Microsoft.Office.Web.Apps.Environment.WacServer.WSMainStorage

000000001070E060 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E068 00000003ff8931b0 System.Web.UI.HtmlControls.HtmlForm

000000001070E070 00000003ff8931b0 System.Web.UI.HtmlControls.HtmlForm

000000001070E078 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E0B8 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E0C0 00000001ff6e1420 System.String   

000000001070E0C8 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E0E0 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E0F0 00000000ff9a8298 System.Web.HttpRequest

000000001070E108 00000000ff9a80d8 System.Web.HttpContext

000000001070E110 00000001ff6e1420 System.String   

000000001070E120 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E130 00000000ff9a8298 System.Web.HttpRequest

000000001070E140 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E178 00000003ff8be328 System.ArgumentException

000000001070E190 00000000ff9a80d8 System.Web.HttpContext

000000001070E1A0 00000003ff7f3510 System.Object[]    (System.String[])

000000001070E1B0 00000003ff7f3510 System.Object[]    (System.String[])

000000001070E1B8 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070E1D0 00000000ff70a330 System.AsyncCallback

000000001070E1F0 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E248 00000003ff892990 System.Threading.WaitCallback

000000001070E260 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E288 00000000ff9a80d8 System.Web.HttpContext

000000001070E2A0 00000000ff9a80d8 System.Web.HttpContext

000000001070E2A8 00000003ff892990 System.Threading.WaitCallback

000000001070E2C0 00000000ff9a80d8 System.Web.HttpContext

000000001070E2C8 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E2D0 00000003ff892840 System.Web.UI.Page+<>c__DisplayClass26

000000001070E2F8 00000003ff8be738 System.Web.HttpUnhandledException

000000001070E300 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E308 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

000000001070E310 00000000ff706918 ASP.global_asax

000000001070E318 00000003ff8927e0 System.Func`4[[System.Web.HttpContext, System.Web],[System.AsyncCallback, mscorlib],[System.Object, mscorlib],[System.IAsyncResult, mscorlib]]

000000001070E330 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E340 00000000ff706918 ASP.global_asax

000000001070E378 00000003ff8927a0 System.Web.HttpAsyncResult

000000001070E380 00000000ff70a1f0 System.Web.HttpApplication+AsyncEventExecutionStep

000000001070E3A8 00000000ff9a80d8 System.Web.HttpContext

000000001070E3C0 00000003ff891b60 ASP.wordviewerframe_aspx

000000001070E3C8 00000000ff9a80d8 System.Web.HttpContext

000000001070E3F0 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070E3F8 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070E410 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070E498 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070E4B0 00000000ff706918 ASP.global_asax

000000001070E4B8 00000000ff70a2f0 System.Web.HttpApplication+CallHandlerExecutionStep

000000001070E520 00000000ff9ad998 System.Web.ThreadContext

000000001070E528 00000000ff9ad930 System.Web.LegacyAspNetSynchronizationContext

000000001070E530 00000000ff9a80d8 System.Web.HttpContext

000000001070E568 00000000ff706918 ASP.global_asax

000000001070E570 00000000ff9a80d8 System.Web.HttpContext

000000001070E578 00000003ff892760 System.Web.HttpAsyncResult

000000001070E580 00000003ff6e6478 System.AsyncCallback

000000001070E590 00000000ff709f80 System.Web.HttpApplication+PipelineStepManager

000000001070E5C0 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070E5D0 00000003ff6e5e30 System.Web.HttpRuntime

000000001070E658 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070E668 00000000ff9a80d8 System.Web.HttpContext

000000001070E680 00000003ff6e5e30 System.Web.HttpRuntime

000000001070E688 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070E690 00000000ff9a80d8 System.Web.HttpContext

000000001070E788 00000000ff9a80d8 System.Web.HttpContext

000000001070E790 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070E7B8 00000000ff9a8768 System.Web.RootedObjects

000000001070EB28 00000003ff890488 System.Object[]    (System.String[])

000000001070EC80 00000001ff6fcf08 System.String    Set-Cookie

000000001070EC90 00000003ff890758 System.Collections.Specialized.NameObjectCollectionBase+NameObjectEntry

000000001070ECB8 00000000ff9ad5f0 System.Collections.Hashtable

000000001070ECC8 00000001ff6fcf08 System.String    Set-Cookie

000000001070ECE0 00000003ff890758 System.Collections.Specialized.NameObjectCollectionBase+NameObjectEntry

000000001070ECF0 00000001ff6fcf08 System.String    Set-Cookie

000000001070ED10 00000000ff9ad640 System.Collections.Hashtable+bucket[]

000000001070ED18 00000000ff9ad5f0 System.Collections.Hashtable

000000001070ED20 00000001ff6fcf08 System.String    Set-Cookie

000000001070ED48 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070ED50 00000001ff6fcf08 System.String    Set-Cookie

000000001070ED58 00000000ff9ad5f0 System.Collections.Hashtable

000000001070ED68 00000000ff9ad5f0 System.Collections.Hashtable

000000001070ED70 00000000ff9ad3c8 System.Web.HttpHeaderCollection

000000001070EDD0 00000000ff9ad3c8 System.Web.HttpHeaderCollection

000000001070EDE0 00000003ff890620 System.Web.HttpResponseHeader

000000001070EDE8 00000000ff9ad3c8 System.Web.HttpHeaderCollection

000000001070EDF8 00000001ff6fcf08 System.String    Set-Cookie

000000001070EE00 00000003ff890758 System.Collections.Specialized.NameObjectCollectionBase+NameObjectEntry

000000001070EE08 00000001ff6fcf08 System.String    Set-Cookie

000000001070EE10 00000000ff9ad3c8 System.Web.HttpHeaderCollection

000000001070EE30 00000003ff890558 System.Text.StringBuilder

000000001070EE38 00000000ff9ad3c8 System.Web.HttpHeaderCollection

000000001070EE48 00000000ff9ad3c8 System.Web.HttpHeaderCollection

000000001070EE50 00000001ff6fcf08 System.String    Set-Cookie

000000001070EE58 00000003ff8905c0 System.String    DcLcid=ui=1033&data=1033; path=/

000000001070EF00 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070EF08 00000000ff9a80d8 System.Web.HttpContext

000000001070EFA0 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070F0E8 00000000ff9a80d8 System.Web.HttpContext

000000001070F100 00000003ff6e5e30 System.Web.HttpRuntime

000000001070F108 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070F110 00000000ff9a80d8 System.Web.HttpContext

000000001070F180 00000000ff9a80d8 System.Web.HttpContext

000000001070F1C0 00000000ff9ad998 System.Web.ThreadContext

000000001070F208 00000000ff9a80d8 System.Web.HttpContext

000000001070F210 00000000ff9a7ac8 System.Web.Hosting.IIS7WorkerRequest

000000001070F238 00000000ff9a8768 System.Web.RootedObjects

 

 

 

 

0:036> kb500

RetAddr           : Args to Child                                                           : Call Site

000007fe`f8feee57 : 00000000`10705cb8 00000000`10705bf8 00000003`ff8be738 000007fe`00000001 : KERNELBASE!RaiseException+0x39 [d:\win7sp1_gdr\minkernel\kernelbase\xcpt.c @ 815]

000007fe`f8fefbdb : 00000000`0000027f 00000000`00000000 00000000`00000000 0000ffff`00001fa0 : clr!RaiseTheExceptionInternalOnly+0x28b [f:\dd\ndp\clr\src\vm\excep.cpp @ 3083]

000007fe`e3970a0f : 00000000`10706348 00007123`a3fcd2f4 000007fe`e2ae2190 000007fe`f8fed47d : clr!IL_Rethrow+0x98 [f:\dd\ndp\clr\src\vm\jithelpers.cpp @ 5301]

000007fe`f8fee375 : 00000000`0ed4acd0 000007fe`e2ae2190 00000000`0233f098 00000000`0ed4acd0 : System_Web_ni!System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()+0xbfa98f

000007fe`f8feeb64 : 00000000`0233f098 000007fe`e39709d5 00000000`1070e330 00000000`0233f130 : clr!ExceptionTracker::CallHandler+0xc5 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 3358]

000007fe`f8feea0f : 00000000`1070e330 00000000`107061c0 00000000`107079d0 00000000`00000002 : clr!ExceptionTracker::CallCatchHandler+0x7c [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 536]

00000000`77519dad : 000007fe`e34c4400 00000000`1070e330 00000000`00000000 00000000`107061c0 : clr!ProcessCLRException+0x2e2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1073]

00000000`77508a4c : 00000000`10710000 00000000`107062b0 00000202`0006735c 00000000`1070e2c0 : ntdll!zzz_AsmCodeRange_End [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 249]

000007fe`f8feeae0 : 00000000`1070e330 00000000`0000bad0 00000000`107079d0 00000000`0ed4acd0 : ntdll!RtlUnwindEx+0x539 [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 896]

000007fe`f8feea92 : 00000000`00000000 00000000`10706e90 00000000`0ed4af30 00000000`00000000 : clr!ClrUnwindEx+0x40 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 4359]

00000000`77519d2d : 00000000`107079d0 00000000`1070e330 00000000`10710000 00000000`10706e90 : clr!ProcessCLRException+0x2b2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1038]

00000000`775091cf : 00000000`10710000 000007fe`e2e49ea8 00000000`0006735c 00000000`1070e2c0 : ntdll!RtlpExecuteHandlerForException+0xd [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 131]

00000000`77541248 : 00000000`107079d0 00000000`107074e0 00000000`00000001 00000000`00000000 : ntdll!RtlDispatchException+0x45a [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 436]

000007fe`fda8940d : 00000000`10707bf8 00000000`00000001 00000000`00000005 00000000`00000000 : ntdll!KiUserExceptionDispatch+0x2e [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\trampoln.asm @ 570]

000007fe`f8feee57 : 00000000`10707bf8 00000000`10707b38 00000003`ff8be738 00000000`10708ec0 : KERNELBASE!RaiseException+0x39 [d:\win7sp1_gdr\minkernel\kernelbase\xcpt.c @ 815]

000007fe`f8fefbdb : ffffffff`fffffffe 00000000`00000000 00000000`00000000 000007fe`f8fed6e0 : clr!RaiseTheExceptionInternalOnly+0x28b [f:\dd\ndp\clr\src\vm\excep.cpp @ 3083]

000007fe`e39add84 : 000007fe`e2aef328 000007fe`f8fed47d 000007fe`e2aef328 00000000`00000254 : clr!IL_Rethrow+0x98 [f:\dd\ndp\clr\src\vm\jithelpers.cpp @ 5301]

000007fe`f8fee375 : 00000000`0ed4acd0 000007fe`e2aef328 00000000`0233ef20 00000000`0ed4acd0 : System_Web_ni!System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(System.Web.HttpContext, System.AsyncCallback, System.Object)+0x4e9a24

000007fe`f8feeb64 : 00000000`0233ef20 000007fe`e39add40 00000000`1070e2c0 00000000`0233efb8 : clr!ExceptionTracker::CallHandler+0xc5 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 3358]

000007fe`f8feea0f : 00000000`1070e2c0 00000000`107080f0 00000000`10709900 00000000`00000002 : clr!ExceptionTracker::CallCatchHandler+0x7c [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 536]

00000000`77519dad : 000007fe`e2d6db00 00000000`1070e2c0 00000000`00000000 00000000`107080f0 : clr!ProcessCLRException+0x2e2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1073]

00000000`77508a4c : 00000000`10710000 00000000`10708730 00000202`0006735c 00000000`1070e1f0 : ntdll!zzz_AsmCodeRange_End [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 249]

000007fe`f8feeae0 : 00000000`1070e2c0 00000000`0000bad0 00000000`10709900 00000000`0ed4acd0 : ntdll!RtlUnwindEx+0x539 [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 896]

000007fe`f8feea92 : 00000000`00000000 00000000`10708dc0 00000000`0ed4af30 00000000`00000000 : clr!ClrUnwindEx+0x40 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 4359]

00000000`77519d2d : 00000000`10709900 00000000`1070e2c0 00000000`10710000 00000000`10708dc0 : clr!ProcessCLRException+0x2b2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1038]

00000000`775091cf : 00000000`10710000 000007fe`e2e47e38 000017a4`0006735c 00000000`1070e1f0 : ntdll!RtlpExecuteHandlerForException+0xd [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 131]

00000000`77541248 : 00000000`10709900 00000000`10709410 00000000`00000001 00000000`00000000 : ntdll!RtlDispatchException+0x45a [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 436]

000007fe`fda8940d : 00000000`10709b28 00000000`00000001 00000000`00000005 00000000`00000000 : ntdll!KiUserExceptionDispatch+0x2e [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\trampoln.asm @ 570]

000007fe`f8feee57 : 00000000`10709b28 00000000`10709a68 00000003`ff8be738 00000000`00000001 : KERNELBASE!RaiseException+0x39 [d:\win7sp1_gdr\minkernel\kernelbase\xcpt.c @ 815]

000007fe`f8fefbdb : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : clr!RaiseTheExceptionInternalOnly+0x28b [f:\dd\ndp\clr\src\vm\excep.cpp @ 3083]

000007fe`e396d795 : 000007fe`e2aef0e8 00000000`000002b7 00000000`0233f130 00000000`1070a1d0 : clr!IL_Rethrow+0x98 [f:\dd\ndp\clr\src\vm\jithelpers.cpp @ 5301]

000007fe`f8fee375 : 00000000`0ed4acd0 000007fe`e2aef0e8 00000000`0233f098 00000000`0ed4acd0 : System_Web_ni!System.Web.UI.Page.ProcessRequest(Boolean, Boolean)+0xbffc65

000007fe`f8feeb64 : 00000000`0233f098 000007fe`e396d77d 00000000`1070e1f0 00000000`0233f130 : clr!ExceptionTracker::CallHandler+0xc5 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 3358]

000007fe`f8feea0f : 00000000`1070e1f0 00000000`1070a010 00000000`1070b820 00000000`00000002 : clr!ExceptionTracker::CallCatchHandler+0x7c [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 536]

00000000`77519dad : 000007fe`e2d6ed00 00000000`1070e1f0 00000000`00000000 00000000`1070a010 : clr!ProcessCLRException+0x2e2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1073]

00000000`77508a4c : 00000000`10710000 00000000`1070a100 00000202`0006735c 00000000`1070e130 : ntdll!zzz_AsmCodeRange_End [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 249]

000007fe`f8feeae0 : 00000000`1070e1f0 00000000`0000bad0 00000000`1070b820 00000000`0ed4acd0 : ntdll!RtlUnwindEx+0x539 [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 896]

000007fe`f8feea92 : 00000000`00000000 00000000`1070ace0 00000000`0ed4af30 00000000`00000000 : clr!ClrUnwindEx+0x40 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 4359]

00000000`77519d2d : 00000000`1070b820 00000000`1070e1f0 00000000`10710000 00000000`1070ace0 : clr!ProcessCLRException+0x2b2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1038]

00000000`775091cf : 00000000`10710000 000007fe`e2e3e7a8 00000000`0006735c 00000000`1070e130 : ntdll!RtlpExecuteHandlerForException+0xd [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 131]

00000000`77541248 : 00000000`1070b820 00000000`1070b330 00000202`00000001 00000000`00000000 : ntdll!RtlDispatchException+0x45a [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 436]

000007fe`fda8940d : 00000000`1070ba48 00000000`00000001 00000000`00000005 00000000`00000000 : ntdll!KiUserExceptionDispatch+0x2e [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\trampoln.asm @ 570]

000007fe`f8feee57 : 00000000`1070ba48 00000000`1070b988 00000003`ff8be738 00000000`00000000 : KERNELBASE!RaiseException+0x39 [d:\win7sp1_gdr\minkernel\kernelbase\xcpt.c @ 815]

000007fe`f8fef16e : 00000000`002d0000 000007fe`00000002 00000000`000003c0 00000000`000003d0 : clr!RaiseTheExceptionInternalOnly+0x28b [f:\dd\ndp\clr\src\vm\excep.cpp @ 3083]

000007fe`e396cda7 : 00000003`ff8be328 00000000`e0434352 00000000`1070dbe8 000007fe`e2d20ff0 : clr!IL_Throw+0xe3 [f:\dd\ndp\clr\src\vm\jithelpers.cpp @ 5227]

000007fe`e396db53 : 00000003`ff891b60 00000003`ff8be328 000007fe`e2aef188 000007fe`f8fed47d : System_Web_ni!System.Web.UI.Page.HandleError(System.Exception)+0xc00647

000007fe`f8fee375 : 00000000`0ed4acd0 000007fe`e2aef188 00000000`0233ef20 00000000`0ed4acd0 : System_Web_ni!System.Web.UI.Page.ProcessRequestMain(Boolean, Boolean)+0xbffe43

000007fe`f8feeb64 : 00000000`0233ef20 000007fe`e396db12 00000000`1070e130 00000000`0233efb8 : clr!ExceptionTracker::CallHandler+0xc5 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 3358]

000007fe`f8feea0f : 00000000`1070e130 00000000`1070c090 00000000`1070d8a0 00000000`00000002 : clr!ExceptionTracker::CallCatchHandler+0x7c [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 536]

00000000`77519dad : 000007fe`99bf9f00 00000000`1070e130 00000000`00000000 00000000`1070c090 : clr!ProcessCLRException+0x2e2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1073]

00000000`77508a4c : 00000000`10710000 00000000`1070c6d0 00000204`0006735c 00000000`00000000 : ntdll!zzz_AsmCodeRange_End [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 249]

000007fe`f8feeae0 : 00000000`1070e130 00000000`0000bad0 00000000`1070d8a0 00000000`0ed4acd0 : ntdll!RtlUnwindEx+0x539 [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 896]

000007fe`f8feea92 : 00000000`00000000 00000000`1070cd60 00000000`00000001 00000000`00000000 : clr!ClrUnwindEx+0x40 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 4359]

00000000`77519d2d : 000007fe`99bf9f2a 00000000`1070e130 00000000`10710000 00000000`1070cd60 : clr!ProcessCLRException+0x2b2 [f:\dd\ndp\clr\src\vm\exceptionhandling.cpp @ 1038]

00000000`775091cf : 00000000`10710000 000007fe`e2e3c684 00000000`0006735c 00000000`02320290 : ntdll!RtlpExecuteHandlerForException+0xd [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\xcptmisc.asm @ 131]

00000000`77541248 : 00000000`1070d8a0 00000000`1070d3b0 00000000`00000001 000007fe`00000000 : ntdll!RtlDispatchException+0x45a [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\exdsptch.c @ 436]

000007fe`fda8940d : 00000000`1070dac8 00000000`00000001 00000000`00000005 00000003`ff81c000 : ntdll!KiUserExceptionDispatch+0x2e [d:\win7sp1_gdr\minkernel\ntos\rtl\amd64\trampoln.asm @ 570]

000007fe`f8feee57 : 00000000`1070dac8 00000000`1070da08 00000003`ff8be328 00000000`1070d980 : KERNELBASE!RaiseException+0x39 [d:\win7sp1_gdr\minkernel\kernelbase\xcpt.c @ 815]

000007fe`f8fef16e : 00000000`0018561f 00000000`00000000 00000000`00000000 00000000`00000000 : clr!RaiseTheExceptionInternalOnly+0x28b [f:\dd\ndp\clr\src\vm\excep.cpp @ 3083]

000007fe`f8a5c70c : 00000003`ff8be198 00000000`00000000 00000003`ff8be198 00000003`ff8be140 : clr!IL_Throw+0xe3 [f:\dd\ndp\clr\src\vm\jithelpers.cpp @ 5227]

000007fe`9982caac : 000007fe`f616dae0 000007fe`f7f03fc0 00000002`ff6fadb0 000007fe`f8f2e193 : mscorlib_ni!System.Collections.Generic.Dictionary`2[[System.__Canon, mscorlib],[System.__Canon, mscorlib]].Insert(System.__Canon, System.__Canon, Boolean)+0xdbc9ec

000007fe`99c61838 : 000007fe`99adf950 000007fe`99caa438 00000000`00000000 00000000`1070de88 : Microsoft_Office_Web_Apps_Environment_WacServer!Microsoft.Office.Web.Apps.Environment.WacServer.WSConfigAdapter.TryGetValue[[System.Boolean, mscorlib]](System.String, Boolean ByRef)+0xc2ac

000007fe`99c613b0 : 00000003`ff8bcf60 00000003`ff8bcec0 00000003`ff8bcdf8 00000000`00000000 : Microsoft_Office_Web_Apps_Common!Microsoft.Office.Web.Apps.Common.WopiDocument.ValidateHostAndSetFileSource()+0x68

000007fe`99c52a03 : 00000002`ff6eb0c8 00000144`c31b4259 00000000`00000000 00000000`00000000 : Microsoft_Office_Web_Apps_Common!Microsoft.Office.Web.Apps.Common.WopiDocument..ctor(System.String, System.String, Int64, System.String, System.String, Microsoft.Office.Web.Apps.Common.WopiType)+0xb0

000007fe`99c61291 : 00000144`c31b4259 00000000`00000000 00000000`ff7078e8 00000004`ff6f1600 : Microsoft_Office_Web_Apps_Common!Microsoft.Office.Web.Apps.Common.WopiDocument.IsValidWopiQueryString(System.String, Microsoft.Office.Web.Common.EnvironmentAdapters.BaseDocumentType, Boolean, Microsoft.Office.Web.Common.EnvironmentAdapters.BaseDocument ByRef)+0x293

000007fe`99c611ef : 00000003`ff893638 000007fe`e2d33c49 00000000`ff70fbb8 00000003`ff892ec8 : Microsoft_Office_Web_Apps_Common!Microsoft.Office.Web.Apps.Common.WopiDocument.CreateFromQuerySignature(System.String)+0x31

000007fe`99bf9f2a : 00000003`ff891b60 00000003`ff8931b0 00000003`ff8931b0 00000003`ff891b60 : Microsoft_Office_Web_Apps_Environment_WacServer!Microsoft.Office.Web.Apps.Environment.WacServer.WSMainStorage.GetBaseDocumentFromContext(System.Web.HttpContext, System.String)+0x2f

000007fe`e2d4bcd1 : 00000003`ff891b60 000007fe`e2d5ca8b 00000000`ff9a8298 000007fe`e353798a : Microsoft_Office_Web_Host_WacServer_WebWordViewer!Microsoft.Office.Web.Host.WacServer.WebWordViewer.WordViewerFrame.OnPreRender(System.EventArgs)+0x10a

000007fe`e2d6edd9 : 00000000`ff9a8298 000007fe`e2d55869 00000003`ff891b60 000007fe`e2d4ca4b : System_Web_ni!System.Web.UI.Control.PreRenderRecursiveInternal()+0x71

000007fe`e2d6dbe9 : 00000003`ff891b60 00000000`00000001 00000000`00000000 00000000`00000000 : System_Web_ni!System.Web.UI.Page.ProcessRequestMain(Boolean, Boolean)+0x10c9

000007fe`e34ad934 : 00000003`ff891b60 000007fe`e365ef32 00000000`ff9a8200 000007fe`f7ca94de : System_Web_ni!System.Web.UI.Page.ProcessRequest(Boolean, Boolean)+0xb9

000007fe`e34c4472 : 00000000`ff9a80d8 00000003`ff891b60 00000003`ff892840 000007fe`e34c85c3 : System_Web_ni!System.Web.HttpContext.InvokeCancellableCallback(System.Threading.WaitCallback, System.Object)+0x64

000007fe`e2d76262 : 00000003`ff891b60 00000000`1070e350 00000000`ff706918 00000000`1070e53a : System_Web_ni!System.Web.UI.Page.LegacyAsyncPageBeginProcessRequest(System.Web.HttpContext, System.AsyncCallback, System.Object)+0x112

000007fe`e2d3b900 : 00000000`ff70a2f0 00000000`1070e490 000007fe`e2ae1c80 000007fe`99855f58 : System_Web_ni!System.Web.HttpApplication+CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()+0x1e2

000007fe`e2d5aa01 : 00000000`ff706918 00000000`ff70a2f0 00000000`1070e53a 00000000`00000000 : System_Web_ni!System.Web.HttpApplication.ExecuteStep(IExecutionStep, Boolean ByRef)+0x120

000007fe`e2d3baa3 : 00000000`ff709f80 000007fe`e2d51c9d 00000000`00000000 00000000`00000000 : System_Web_ni!System.Web.HttpApplication+PipelineStepManager.ResumeSteps(System.Exception)+0x7d1

000007fe`e2d34dae : 000007fe`e2ad3c08 00000000`1070e5a0 00000000`00000000 00000000`1070e5c0 : System_Web_ni!System.Web.HttpApplication.BeginProcessRequestNotification(System.Web.HttpContext, System.AsyncCallback)+0x83

000007fe`e2d3e8d1 : 00000003`ff6e5e30 00000000`ff9a7ac8 00000000`ff9a80d8 00000000`00dccc90 : System_Web_ni!System.Web.HttpRuntime.ProcessRequestNotificationPrivate(System.Web.Hosting.IIS7WorkerRequest, System.Web.HttpContext)+0x28e

000007fe`e2d3e422 : 00000000`00000000 00000000`00dce470 00000000`00dce880 00000000`00dce914 : System_Web_ni!System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr, IntPtr, IntPtr, Int32)+0x491

000007fe`e349d2e1 : 00000000`00dcc078 000007fe`f9e7d195 00000000`00000001 000007fe`fa844a1b : System_Web_ni!System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr, IntPtr, IntPtr, Int32)+0x22

000007fe`f8f3280e : 00000000`00dce924 000007fe`e0282039 00000000`00000001 00000000`1070e9b0 : System_Web_ni!DomainNeutralILStubClass.IL_STUB_ReversePInvoke(Int64, Int64, Int64, Int32)+0x51

000007fe`e0281db2 : 00000000`00dce470 00000000`1070e9f0 00000000`00000001 00000000`00000001 : clr!UMThunkStub+0x6e [f:\dd\ndp\clr\src\vm\amd64\UMThunkStub.asm @ 229]

000007fe`e0281d37 : 00000000`00000000 00000000`00000000 00000000`0000043a 00000000`00000000 : webengine4!W3_MGD_HANDLER::ProcessNotification+0x78 [f:\dd\ndp\fx\src\xsp\webengine\mgdhandler.cxx @ 549]

000007fe`e0281c36 : 00000000`00dce470 00000000`00000080 00000000`00dccc90 00000000`00000000 : webengine4!W3_MGD_HANDLER::DoWork+0x43d [f:\dd\ndp\fx\src\xsp\webengine\mgdhandler.cxx @ 494]

000007fe`e0282909 : 00000000`00000001 00000000`00e4d5c8 00000000`01423a58 00000000`00dccc90 : webengine4!RequestDoWork+0x34e [f:\dd\ndp\fx\src\xsp\webengine\mgdeng.cxx @ 542]

000007fe`f9e52de7 : 00000000`1070eb80 00000000`01423b98 00000000`00000000 000007fe`f7e9b0f0 : webengine4!CMgdEngHttpModule::OnExecuteRequestHandler+0x21 [f:\dd\ndp\fx\src\xsp\webengine\mgdmodule.hxx @ 281]

000007fe`f9e546a4 : 00000000`00dccc98 00007123`9b459cee 000007fe`f951a8d0 00000000`1070ec48 : iiscore!NOTIFICATION_CONTEXT::RequestDoWork+0x233 [d:\w7rtm\inetsrv\iis\iisrearc\iis70\core\notificationcontext.cxx @ 1562]

000007fe`f9e5a775 : 00000003`ff8906d8 00000000`00dccc90 00000000`00dccc98 00000000`00000000 : iiscore!NOTIFICATION_CONTEXT::CallModulesInternal+0x174 [d:\w7rtm\inetsrv\iis\iisrearc\iis70\core\notificationcontext.cxx @ 474]

000007fe`f9e55a03 : 00000001`ff6fcf08 00000000`00000017 00000003`ff890758 00000000`00000000 : iiscore!NOTIFICATION_CONTEXT::CallModules+0x25 [d:\w7rtm\inetsrv\iis\iisrearc\iis70\core\notificationcontext.h @ 198]

000007fe`f9e5a81c : 00000000`ff9a7ac8 00000000`00dce470 00000000`1070f010 000007fe`e2d3e3c6 : iiscore!W3_CONTEXT::DoWork+0x34d [d:\w7rtm\inetsrv\iis\iisrearc\iis70\core\w3context.cxx @ 1449]

000007fe`e02828b5 : 00000000`1070f050 00000000`00000004 00000000`00dce470 00000000`00000000 : iiscore!W3_CONTEXT::IndicateCompletion+0x8c [d:\w7rtm\inetsrv\iis\iisrearc\iis70\core\w3context.cxx @ 2615]

(Inline Function) : --------`-------- --------`-------- --------`-------- --------`-------- : webengine4!W3_MGD_HANDLER::IndicateCompletion+0x35 [f:\dd\ndp\fx\src\xsp\webengine\mgdhandler.hxx @ 560]

000007fe`e2dea42b : 000007fe`e2ad3188 000007fe`e2a715a0 00007123`9b459cee 000007fe`f950c4a0 : webengine4!MgdIndicateCompletion+0x60 [f:\dd\ndp\fx\src\xsp\webengine\mgdexports.cxx @ 100]

000007fe`e2d3eaa7 : 00000003`ff6e5e30 00000000`ff9a7ac8 00000000`ff9a80d8 00000000`0ec89090 : System_Web_ni!DomainNeutralILStubClass.IL_STUB_PInvoke(IntPtr, System.Web.RequestNotificationStatus ByRef)+0x7b

000007fe`e2d3e422 : 00000000`00000020 00000000`00dce470 00000000`00000000 00000000`00000018 : System_Web_ni!System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr, IntPtr, IntPtr, Int32)+0x667

000007fe`e349d2e1 : 00000000`00001000 000007fe`f8e730f8 00000000`00000000 000007fe`f8f3c1b6 : System_Web_ni!System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr, IntPtr, IntPtr, Int32)+0x22

000007fe`f8f32a63 : ffffffff`ffffffff 000007fe`00000001 00000000`0ed4acd0 000007fe`f8f3c11f : System_Web_ni!DomainNeutralILStubClass.IL_STUB_ReversePInvoke(Int64, Int64, Int64, Int32)+0x51

000007fe`f8f42598 : 00000000`00000001 00000000`00000001 ffffffff`fffffffe 000007fe`f8f3c669 : clr!UM2MThunk_WrapperHelper+0x43 [f:\dd\ndp\clr\src\vm\amd64\UMThunkStub.asm @ 492]

000007fe`f8fe9c5a : 00000000`1070f528 00000000`023b9700 00000000`0ed4acd0 00000000`00000001 : clr!UM2MThunk_Wrapper+0x54 [f:\dd\ndp\clr\src\vm\dllimportcallback.cpp @ 135]

000007fe`f8f42521 : 00000000`1070f601 ffffffff`00000002 00000000`00000002 000007fe`e02822b0 : clr!Thread::DoADCallBack+0x12e [f:\dd\ndp\clr\src\vm\threads.cpp @ 17296]

000007fe`f8f32a0d : 00000000`023b9700 ffffffff`ffffffff 00000000`00dce470 00000000`1070f710 : clr!UM2MDoADCallBack+0x91 [f:\dd\ndp\clr\src\vm\dllimportcallback.cpp @ 169]

000007fe`e0281db2 : 00000000`00000000 00000000`00dce470 00000000`0000000b 00000000`00000004 : clr!UMThunkStub+0x26d [f:\dd\ndp\clr\src\vm\amd64\UMThunkStub.asm @ 421]

000007fe`e02822f2 : 00000000`00000004 00000000`00dce470 00000000`00000000 00000000`00000000 : webengine4!W3_MGD_HANDLER::ProcessNotification+0x78 [f:\dd\ndp\fx\src\xsp\webengine\mgdhandler.cxx @ 549]

000007fe`f8fe94a6 : 00000000`00dce470 000007fe`f972e348 00000000`00000000 000007fe`e02822b0 : webengine4!ProcessNotificationCallback+0x42 [f:\dd\ndp\fx\src\xsp\webengine\mgdeng.cxx @ 1096]

000007fe`f8fe88cf : 00000000`ffffffff 00000000`1070f801 00000000`1070f800 00000001`2d4103bb : clr!UnManagedPerAppDomainTPCount::DispatchWorkItem+0x11a [f:\dd\ndp\clr\src\vm\threadpoolrequest.cpp @ 542]

000007fe`f8fe87cf : 00000001`00050005 00000000`00000001 00000000`00000001 00000000`00000000 : clr!ThreadpoolMgr::ExecuteWorkRequest+0x4c [f:\dd\ndp\clr\src\vm\win32threadpool.cpp @ 1989]

000007fe`f8f8d702 : 00000000`00000000 00000000`00000001 00000000`00000001 00000000`00000409 : clr!ThreadpoolMgr::WorkerThreadStart+0xf3 [f:\dd\ndp\clr\src\vm\win32threadpool.cpp @ 2462]

00000000`76f2652d : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : clr!Thread::intermediateThreadProc+0x7d [f:\dd\ndp\clr\src\vm\threads.cpp @ 3465]

00000000`7751c541 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : kernel32!BaseThreadInitThunk+0xd [d:\win7sp1_gdr\base\win32\client\thread.c @ 65]

00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!RtlUserThreadStart+0x1d [d:\win7sp1_gdr\minkernel\ntos\rtl\rtlexec.c @ 3203]