lol
-Original Message-
From: Johnson, Thomas [mailto:thomas.john...@lpsvcs.com]
Sent: Monday, May 13, 2013 1:49 PM
To: Log4NET Dev
Subject: RE: [jira] [Created] (LOG4NET-376) Race condition in
AbsoluteTimeDateFormatter
unsubscribe
-Original Message-
From: Stuart Lange (JIRA
unsubscribe
-Original Message-
From: Stuart Lange (JIRA) [mailto:j...@apache.org]
Sent: Monday, May 13, 2013 10:19 AM
To: log4net-dev@logging.apache.org
Subject: [jira] [Created] (LOG4NET-376) Race condition in
AbsoluteTimeDateFormatter
Stuart Lange created LOG4NET-376:
Anything in the event log? Did you build log4net as 64 bit assembly or x86?
-Original Message-
From: Chirag Chandani (JIRA) [mailto:j...@apache.org]
Sent: Wednesday, January 16, 2013 6:34 AM
To: log4net-dev@logging.apache.org
Subject: [jira] [Created] (LOG4NET-366) log4NET DCOM registrat
They just got the ball rolling in the last year - resubmit!
-Original Message-
From: Joshua Masek (Commented) (JIRA) [mailto:j...@apache.org]
Sent: Thursday, April 05, 2012 9:54 AM
To: log4net-dev@logging.apache.org
Subject: [jira] [Commented] (LOG4NET-27) Rolling files on date/time bound
mpse.com>> ha scritto:
The subtlety is that in Application_Startup(), httpContext is indeed not null
and httpContext.Request is really httpContext.get_Request().
And it is the act of calling get_Request() that throws the HttpException.
On Fri, Mar 30, 2012 at 1:51 PM, Johnson, Thomas
mailto:thoma
httpContext when you encounter this in both scenarios and see how
they differ?
From: Johnson, Thomas [mailto:thomas.john...@lpsvcs.com]
Sent: Friday, March 30, 2012 2:52 PM
To: Log4NET Dev
Subject: RE: Proposed bug fix for AspNetRequestPatternConverter.Convert()
Sorry: if (httpContext != null
Sorry: if (httpContext != null && httpContext.Request != null)
Since you're in c# the second statement won't be evaluated if the first is
false and you will avoid NRE
From: Johnson, Thomas
Sent: Friday, March 30, 2012 2:50 PM
To: log4net-dev@logging.apache.org
Subject: RE: Pr
Typically you want to avoid code like this // maybe just do: if (httpContext
!= null) { //the entirety of your method } else
writer.Write(SystemInfo.NotAvailableText);
try
{
request = httpContext.Request;
if (request == null)
Fyi we haven't seen this on any of our IIS7 apps
-Original Message-
From: Jim Moore (Issue Comment Edited) (JIRA) [mailto:j...@apache.org]
Sent: Wednesday, February 08, 2012 3:25 PM
To: log4net-dev@logging.apache.org
Subject: [jira] [Issue Comment Edited] (LOG4NET-178) Log4Net stops loggi