English 中文(简体)
为何一大批AppSetting公司呼吁完全不出现关键原因应用程序崩溃?
原标题:Why does a large amount of AppSettings calls to a none existent key cause application crashes?

我正在研究的Windows Service有一个非常奇怪的问题,我想知道为什么会发生。

服务循环每5分钟一次,然后在该循环内通过含有网络服务 URL 的密钥循环,这些密钥编号如下:

<add key="URL.1" value="http://dummy1.com/Service.asmx"/>
<add key="URL.2" value="http://dummy2.com/Service.asmx"/>
<add key="URL.3" value="http://dummy3.com/Service.asmx"/>

进行此检查的代码是:

If String.IsNullOrEmpty(AppSettings("OM." & intCount & ".Name").ToString) Then

当它击中一个不存在的密钥时,就会抛出一个例外,服务停止并等待5分钟,直到下一个循环。

这通常很管用,但是每星期或两周, Windows 服务都会在这条线上崩溃, 没有任何例外。 应用程序日志在这条线之前有一条线, 但之后没有一条线,

Windows 的事件日志如下:

Faulting application name: MyService.exe, version: 1.1.2.0, time stamp: 0x4fa22a24
Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e211319
Exception code: 0xe053534f
Fault offset: 0x0000b9bc
Faulting process id: 0x%9
Faulting application start time: 0x%10
Faulting application path: %11
Faulting module path: %12
Report Id: %13

奇怪的是,这行代码每天执行300次罚款,至少一周,大约为2000次, 在此之前,它曾造成申请完全崩溃。

为何会发生这种事?我改变了代码线,不再依赖例外,而且它已经运作了一个星期,没有坠机,因此可能与太多例外有关,也许会造成堆叠溢?

问题回答

例外代码: 0xe053534f

您的程序正在崩溃与此站点名称 。 例外代码的最后三对十六进制是“ SSO” 的 ascii 代码 。 这意味着“ 软堆叠溢出 ” 。 这与硬堆叠溢出例外相同, 但早期检测到的除外 。 在设置呼叫和 CLR 注意实际拨号会导致堆叠溢出 。

否则您的程序将会崩溃, 就像在硬堆叠流流上一样, 它会立即中止, 没有抓取区块或 AppDomain 。 无法操作的例外将会被执行 。

确切地说,你的程序是如何遭受这种命运的, 这个问题是无法判断的。 否则它就是一个典型的编程错误 。





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签