Hello all,
My application uses the Trace object to log information. The information is captured in a file with the TextWriterTraceListener and it works perfectly. However, I would like to add another TraceListerner which will record the information to a Web Service. In other words, I need an HttpTraceListener. Moreover, I need something intelligent, I wouldn’t like to see a HTTP request for every log entry.
How would you build such thing? I know I have to inherit TraceListener (the documentation is somewhat cryptic...) but does anybody have an idea if a HttpTraceListener already exist? I don't want to reinvent the wheel...
Thanks!