error that was recorded to event log

T

TS

I have an error that I can't figure out how it happens. I have a windows app
that has been running on a box in production. Starting 3 days ago, and
everyday since, this error is recorded to the app event log. Can anyone tell
me what might of happened - Server config change?

The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be
found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer. The following
information is part of the event: .NET Runtime version 1.1.4322.573-
HR-JobPost.exe - Common Language Runtime Debugging Services: Application has
generated an exception that could not be handled.

Process id=0xb2c (2860), Thread id=0xd08 (3336).

Click OK to terminate the application.

Click CANCEL to debug the application..
 
N

Nick Malik

You have an untrapped error. If you trap your own errors, and post the
message to the event log, you won't get errors like this.
Honestly, you are triggering with a zero event id, which probably means that
the developer raised a custom application exception.

This looks like a service application. Normally, when things like this
happen to me, it's because the app was using a particular credential or
userid/password combination, and the password changed or the account was
locked out.

I hope this helps,

--- Nick
 
K

Kevin Yu [MSFT]

Hi TS,

First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you are receiving some error messages
in the Event Log. If there is any misunderstanding, please feel free to let
me know.

Based on my experience, this exception might be an custom exception that
cannot be displayed on the local computer. Please also try Nick's advice to
check user account and password to see if we can log on to the remote
service properly.

HTH.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
T

TS

thanks, this helped track down the error. The log's source wasn't yet
registered on the machine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top