Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# writing to the event viewer

Tags:

c#

event-log

I'm trying to write to the event viewer in my c# code, but I'm getting the wonderful "Object reference not set to an instance of an object" message. I'd appreciate some help with this code, either what's wrong with it or even a better way to do it. Here's what I have for writing to the event log:

private void WriteToEventLog(string message) {     string cs = "QualityDocHandler";     EventLog elog = new EventLog();     if (!EventLog.SourceExists(cs))     {         EventLog.CreateEventSource(cs, cs);     }     elog.Source = cs;     elog.EnableRaisingEvents = true;     elog.WriteEntry(message); } 

And here's where I'm trying to call it:

private readonly Random _rng = new Random(); private const string _chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; private string RandomString(int size) {     try     {         char[] buffer = new char[size];         for (int i = 0; i < size; i++)         {             buffer[i] = _chars[_rng.Next(_chars.Length)];         }         return new string(buffer);     }     catch (Exception e)     {         WriteToEventLog(e.ToString());         return null;     } } 
like image 829
PushCode Avatar asked Jul 15 '09 19:07

PushCode


1 Answers

The problem is probably that you are trying to create an event source in a log that doesn't exist. You need to specify the "Application" log.

Try changing it to:

if (!EventLog.SourceExists(cs))    EventLog.CreateEventSource(cs, "Application");      EventLog.WriteEntry(cs, message, EventLogEntryType.Error); 

Also: Inside of sharepoint, if the app is running as logged in user(via windows auth or delegation), the user won't have access to create the event source. If this is the case, one trick is to create the event using a ThreadPool thread, which when created, will have the security context of the user the App Pool is running as.

like image 75
Brian Rudolph Avatar answered Sep 23 '22 17:09

Brian Rudolph