Re: Appender customization

2004-12-21 Thread Tim Weaver
Your type is probably declared incorrectly See for more details on a fully qualified type name http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconspecifyingfullyqualifiedtypenames.asp Tim On Tue, 21 Dec 2004 14:51:12 -0600, Eric Means <[EMAIL PROTECTED]> wrote: >

Re: add custom appender separate from log4net dll

2004-12-10 Thread Tim Weaver
Simon, I created a custom appender outside of the log4net project. Create the custom appender in its own project. Reference the log4net assembly and setup the namespaces accordingly. namespace Global.Diagnostics.log4net.Custom.Appender { /// /// Summary description for EventLogA

Re: webservice

2004-12-09 Thread Tim Weaver
You can do it in the web service's Global.asa application_start event protected void Application_Start(Object sender, EventArgs e) { DOMConfigurator.Configure(); } On Thu, 9 Dec 2004 10:26:55 -0600,