EventLogWebEventProvider

M

Max2006

Hi,

Can I have EventLogWebEventProvider published event log entries as error
with red icon? (it publishes them as warning with yellow icons by default)

I also like EventLogWebEventProvider to publish entries to a separated
category node within event viewer's left hand side group tree. (It uses
application group by default) Is that possible?

Thank you,
Max
 
S

Steven Cheng[MSFT]

Hi Max,

Regarding on the EventLogWebEventProvider, I have performed some
investigation on it and it seems the underlying EventLog writing code is
encapsulated in a unamanged API (called in EventLogWebEventProvider through
PInvoke). e.g.

=====the code from reflector=========
.......................
}
}
int num = UnsafeNativeMethods.RaiseEventlogEvent((int) type, (string[])
dataFields.ToArray(typeof(string)), dataFields.Count);
if (num != 0)
{
throw new HttpException(SR.GetString("Event_log_provider_error",
new object[] { "0x" + num.ToString("X8", CultureInfo.InstalledUICulture)
}));
}
}
====================

So far I'm afraid the built-in properties can not customize this behavior.
If you do need to change the output eventlog entry's level, I think one
possible approach is writing a custom EventLogProvider and call your own
unmanaged API to write EventLog.

#How to write to an event log by using Visual C#
http://support.microsoft.com/kb/307024

http://msdn2.microsoft.com/en-us/library/k00ce235.aspx

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no rights.
 
S

Steven Cheng[MSFT]

Hi Max,

Do you have any further questions on this thread? If so, please feel free
to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.
 

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

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top