Hi I am new to c# windows service development. My problem is as described below:
I have a windows service that internally calls a web service to send emails after a specific gap of time. This windows service works and functions absolutely fine on local machine (Win 7) and is built with .Net framework 4.0. However, it fails when deployed in a Win Server 2003 OS (Production) which also shows .NET framework 2.0,3.5, SP, 4.0, etc in its list of installed programs. I tried building and deploying with various versions of the .NET framework. It works well always only on the local machine. The error from eventlog that gets logged just as the service is started on the production box is -
"The description for Event ID ( 5000 ) in Source ( .NET Runtime 4.0 Error Reporting ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: clr20r3, xxxxxxxxxxxx, 1.0.0.0, 50058136, emailingservice, 1.0.0.0, 50058136, d, 174, system.nullreferenceexception, NIL."
What could be going wrong?
Any help will be greatly appreciated.