Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

why would a static constructor throw exception when it references to a const string in another class.

 class MyClass
 {  
      static MyClass() 
      { 
           ExamineLog();   
      }

      static ExamineLog()  
      {
          FilePath = HttpContext.Current.Server.MapPath(Helper.LogConfiguration);                
      }
}

class Helper
{  
      public const string LogConfiguration= "\rootpath\counters.txt";
}

The exception thrown is object reference not set to an instance of an object. The stack trace points to the line where attempt is made to read the constant value. Any thoughts?

share|improve this question
1  
Aaargh! Formatting. Fix it. – Konrad Rudolph Mar 19 '12 at 19:10
1  
static ExamineLog()? – BoltClock Mar 19 '12 at 19:11

3 Answers

up vote 6 down vote accepted

Thoughts:

  • HttpContext might be null
  • HttpContext.Current might be null
  • HttpContext.Current.Server might be null

Further thoughts:

Current is a static property of the HttpContext class, so HttpContext is not an object reference, and it cannot be null. If you want to simplify your debugging, you can change the code like this (I'm assuming that ExamineLog should have been declared as a void method):

static void ExamineLog()   
{
    var context = HttpContext.Current;
    var server = context.Server;
    FilePath = server.MapPath(Helper.LogConfiguration);                 
} 
share|improve this answer
Well, not to be picky, but HttpContext is a class, so it can't be null. – SuperOli Mar 19 '12 at 19:24
1  
@SuperOli I just finished editing the answer to reflect that. – phoog Mar 19 '12 at 19:25

my first bet is a bad string...

"\rootpath\counters.txt" // => "\r" is carriage return

So MapPath fails.

share|improve this answer
This doesn't lead to a NRE. – Daniel Hilgarth Mar 19 '12 at 19:14
According to MSDN MapPath can't throw such exception – sll Mar 19 '12 at 19:15

My guess is that the HttpContext.Current is null in the context of a static constructor. It's been a while since I was knee-deep in ASP.NET, but IIRC, the HttpContext.Current won't be setup unless you're in the request-response life cycle of a page. I don't know when static constructors are necessarily executed in an ASP.NET application (technically, should be when first accessed by code) and in your case, it could easily be in a context outside of this page life cycle.

I doubt the null reference is coming from your const reference: const reference is inserted as a literal value/string at compile-time so there should be no run-time null reference exception thrown.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.