简体   繁体   中英

Error while writing to event log, prevents windows service from starting?

I am using the following code to create a custom event log in my windows service application :

public ServiceConstructor()
{
  InitializeComponent();
  if (!EventLog.SourceExists("WinService"))
  {
    EventLog.CreateEventSource("WinService", "WinServiceLog");
    eventLog1.Source = "WinService";
    eventLog1.Log = "WinServiceLog";
  }
}
protected override void OnStart(string[] args)
{
 eventLog1.WriteEntry("Started");
}

After installing the service.msi, when i started the service it started and then stoped. Then i found the following error in EventViewer windows log section:

Service cannot be started. System.ArgumentException: Source property was not set before writing to the event log.

at System.Diagnostics.EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) at System.Diagnostics.EventLog.WriteEntry(String message) at WinService.Service.OnStart(String[] args) at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)

If the source already exists it looks like you don't initialize eventLog1.Source.

Suggest you move the initialization code to OnStart and out of the constructor.

And move these two lines out of the if statement:

eventLog1.Source = "WinService";
eventLog1.Log = "WinServiceLog";

Try the following:

EventLog.CreateEventSource("WinService", "Application");
and eventLog1.Log = "Application";

Also put the following in OnStart:

eventLog1.Log="Application"
eventLog1.Source = "WinService";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM