Hi,
I have an application running on .Net Framework 2.0. After running for a day or so, the application stop and an error is generated by Windows Error Reporting. The message is as follows:
Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 1000
Date: 18/01/2006
Time: 09:46:29 AM
User: N/A
Computer: myComputer
Description:
Faulting application myApplication.exe, version 1.0.2208.39414, stamp 43ccf78e, faulting module mscorwks.dll, version 2.0.50727.42, stamp 4333e7ec, debug 0, fault address 0x000a163b.
I have tied to capture the error using general try-catch handler, but nothing came out. In this case, how can i debug this problem
Thanks,
Jon Yong

Debugging .NET Runtime 2.0 Error Reporting Event: 1000
jalpizar
We're running the released version 2.0.50727.42. Also, just re-installed the framework, errors are still being logged.
ashish.
It looks like you're running a debug version. Have you tried running the release version for a day
I would also try re-installing the framework, maybe.
You also have the AppDomain.UnhandledException event to which you can add a handler.
Aadi1
Redshift
You can manually configure the just-in-time debugging experience via the registry keys outlined in the following doc: http://msdn2.microsoft.com/en-us/library/2ac5yxx6(VS.80).aspx. This will launch and attach the debugger for you so you don't have to run the application under the debugger and wait for a repro.
Jon Langdon
Christian Q
I just installed the SDK on a machine exhibiting this behavior and got a debug dialog instead of the app just disappering with a cryptic message in the Event Log.
Hope this helps!
Here's the link for the SDK if you need it...
http://www.microsoft.com/downloads/details.aspx familyid=fe6f2099-b7b4-4f47-a244-c96d69c35dec&displaylang=en
mfenske
Jon,
Are you presented with a dialog box, asking you if you'd like to debug or close
-Jon Langdon
Eddie1507
Were you able to resolve this error I am getting the error showing w3wp.exe as the faulting application. Any guidance would be appreciated. Thank you.
VinnyH
I'm very interested in that problem.
Have you resolved it If yes what was the reason
I also have the same errors in the EventLog:
Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 1000
Date: 12/11/2006
Time: 11:18:32 AM
User: N/A
Computer: SOFT020
Description:
Faulting application iitcashservice10.exe, version 1.4.4.2, stamp 457d06dd, faulting module mfc42u.dll, version 6.2.4131.0, stamp 411096a6, debug 0, fault address 0x0000ecce.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 41 00 70 00 70 00 6c 00 A.p.p.l.
0008: 69 00 63 00 61 00 74 00 i.c.a.t.
0010: 69 00 6f 00 6e 00 20 00 i.o.n. .
0018: 46 00 61 00 69 00 6c 00 F.a.i.l.
0020: 75 00 72 00 65 00 20 00 u.r.e. .
0028: 20 00 69 00 69 00 74 00 .i.i.t.
0030: 63 00 61 00 73 00 68 00 c.a.s.h.
0038: 73 00 65 00 72 00 76 00 s.e.r.v.
0040: 69 00 63 00 65 00 31 00 i.c.e.1.
0048: 30 00 2e 00 65 00 78 00 0...e.x.
0050: 65 00 20 00 31 00 2e 00 e. .1...
0058: 34 00 2e 00 34 00 2e 00 4...4...
0060: 32 00 20 00 34 00 35 00 2. .4.5.
0068: 37 00 64 00 30 00 36 00 7.d.0.6.
0070: 64 00 64 00 20 00 69 00 d.d. .i.
0078: 6e 00 20 00 6d 00 66 00 n. .m.f.
0080: 63 00 34 00 32 00 75 00 c.4.2.u.
0088: 2e 00 64 00 6c 00 6c 00 ..d.l.l.
0090: 20 00 36 00 2e 00 32 00 .6...2.
0098: 2e 00 34 00 31 00 33 00 ..4.1.3.
00a0: 31 00 2e 00 30 00 20 00 1...0. .
00a8: 34 00 31 00 31 00 30 00 4.1.1.0.
00b0: 39 00 36 00 61 00 36 00 9.6.a.6.
00b8: 20 00 66 00 44 00 65 00 .f.D.e.
00c0: 62 00 75 00 67 00 20 00 b.u.g. .
00c8: 30 00 20 00 61 00 74 00 0. .a.t.
00d0: 20 00 6f 00 66 00 66 00 .o.f.f.
00d8: 73 00 65 00 74 00 20 00 s.e.t. .
00e0: 30 00 30 00 30 00 30 00 0.0.0.0.
00e8: 65 00 63 00 63 00 65 00 e.c.c.e.
00f0: 0d 00 0a 00 ...
Aihm Ezzo
I was running into something similar today. In my case I had configuration file problems, but it was something where I would have expected to see a JIT debugging dialog. I'm assuming now that you don't get those unless the SDK is installed. Is it a possibility to install the SDK on the machine to try see if you get the JIT debug dialog
judowalker