RE: ASP.NET Blocking Problem

2005-06-14 Thread Darren Blackett
arren -Original Message- From: Darren Blackett [mailto:[EMAIL PROTECTED] Sent: 05 June 2005 13:42 To: 'Log4NET User' Subject: RE: ASP.NET Blocking Problem Thanks very much. I'm going to give this a go. I really appreciate everyone's help. Darren -Original Message- F

RE: ASP.NET Blocking Problem

2005-06-12 Thread Ron Grabowski
eciate > everyone's help. > > Darren > > -Original Message- > From: Nicko Cadell [mailto:[EMAIL PROTECTED] > Sent: 02 June 2005 22:14 > To: Log4NET User > Subject: RE: ASP.NET Blocking Problem > > The issue is that the AppenderSkeleton takes a conserv

RE: ASP.NET Blocking Problem

2005-06-05 Thread Darren Blackett
Thanks very much. I'm going to give this a go. I really appreciate everyone's help. Darren -Original Message- From: Nicko Cadell [mailto:[EMAIL PROTECTED] Sent: 02 June 2005 22:14 To: Log4NET User Subject: RE: ASP.NET Blocking Problem The issue is that the AppenderSkelet

RE: ASP.NET Blocking Problem

2005-06-02 Thread Nicko Cadell
ified typename for the appender wherever you decide to put it. Cheers, Nicko > -Original Message- > From: Darren Blackett [mailto:[EMAIL PROTECTED] > Sent: 02 June 2005 19:15 > To: 'Log4NET User' > Subject: RE: ASP.NET Blocking Problem > > App Block - not yet. I

RE: ASP.NET Blocking Problem

2005-06-02 Thread Darren Blackett
ssage- From: Ron Grabowski [mailto:[EMAIL PROTECTED] Sent: 02 June 2005 17:11 To: Log4NET User Subject: Re: ASP.NET Blocking Problem Nicko checked in a MSMQ appender into source control a few days ago. I'm not familiar with MSMQ in terms of what it guarantees to capture (is it just a sink?). Yo

Re: ASP.NET Blocking Problem

2005-06-02 Thread Ron Grabowski
Nicko checked in a MSMQ appender into source control a few days ago. I'm not familiar with MSMQ in terms of what it guarantees to capture (is it just a sink?). You could try writing things to there then write another program to extract the data out and insert it into the database. I glanced at NLo

RE: ASP.NET Blocking Problem

2005-06-02 Thread DarrenBlackett
A nice idea, unfortunately though I'd still be blocked when I talked to the appender :( -Original Message- From: Kevin Williams [mailto:[EMAIL PROTECTED] Sent: 02 June 2005 15:27 To: Log4NET User Subject: Re: ASP.NET Blocking Problem [EMAIL PROTECTED] wrote: > My conc

Re: ASP.NET Blocking Problem

2005-06-02 Thread Kevin Williams
[EMAIL PROTECTED] wrote: My concern with implementing buffering is that if my appdomain dies I will lose the contents of the buffer. I've seen the app domain die in testing and can't afford to lose the information in my live application. I also have to guarantee that this data has reached the da

Re: ASP.Net Blocking Problem

2005-06-01 Thread Ron Grabowski
Could you post your node for us. What database are you logging to? According the documentation for 1.2.9 beta, there is a property called bufferSize which writes statements to the database in batches: A similiar property exists in 1.2.0 beta 8. Its very common to declare your loggers like t

ASP.Net Blocking Problem

2005-06-01 Thread DarrenBlackett
Title: ASP.Net Blocking Problem Hi, I'm using log4net in an asp.net application to log page hits to a database.  It's working really well, however, whilst recently doing some performance testing of 200+ clients I discovered that I was blocking which was seriously hitting my p