How Can I Send AgilePoint Server Exceptions to the Windows Event Viewer?

Summary

Is there a way to send AgilePoint Server exceptions to the Windows Event Viewer?

More Information

There is not a configuration option to accomplish this behavior in AgilePoint NX. Again an AgileConnector can be built to meet this requirement. One reason for this is file size. For your custom components, you may code this logic as follows:

Here's a way to write to the Event Log: (refer to this link http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlog)

// Create the source, if it does not already exist.
if (!EventLog.SourceExists("MySource"))
 {

//An event log source should not be created and immediately used.
//There is a latency time to enable the source, it should be created
//prior to executing the application that uses the source.
//Execute this sample a second time to use the new source.
 EventLog.CreateEventSource("MySource", "MyNewLog");
 Console.WriteLine("CreatedEventSource");
 Console.WriteLine("Exiting, execute the application a second time to 
 use the source.");

// The source is created. Exit the application to allow it to be registered.
return;
 }

// Create an EventLog instance and assign its source.
 EventLog myLog = new EventLog();
 myLog.Source ="MySource";

// Write an informational entry to the event log.
 myLog.WriteEntry("Writing to event log.");
 }
}

For more information, refer to contact AgilePoint Professional Services.