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

We have created an http module that loads data on initialize into a list, and uses that list on every endrequest event of application. However we got a null reference exception on the module at endRequest event complaining that the content is null. Yet we are sure that at module initialization we have put non-null objects correctly.

How is this possible? Any ideas?

Thanks in advance.

The place where i fill the data into the list what named as "Pages" :

using (SqlDataReader reader = cmd.ExecuteReader())
{
    while (reader.Read())
    {
        LandingPageDetails details = new LandingPageDetails();
        details.DomainId = Convert.ToInt32(reader["DomainId"]);
        details.PageId = Convert.ToInt32(reader["TrackingPageId"]);
        details.PageAddress = Convert.ToString(reader["PageAddress"]);
        if (!string.IsNullOrEmpty(details.PageAddress))
        {
            Pages.Add(details);
        }
    }
}

// Find the related record on EndRequesst event
LandingPageDetails result = Pages.Find
(
    delegate(LandingPageDetails current)
    {
        return current.PageAddress.Equals(url, StringComparison.InvariantCultureIgnoreCase);
    }
);

The line what we get the error

return current.PageAddress.Equals(url, StringComparison.InvariantCultureIgnoreCase);

"current" is the null object

P.S : It works properly, but one day later contents become null. Possibly, there is something wrong on IIS. Our server is Windows 2003, IIS 6.0

share|improve this question
1  
Source code would be helpful. – Keltex Apr 9 '10 at 13:23
did you open the connection that the command is using before you executed the reader??? and more src code would be nice. And maybe you aren't disposing the reader or closing the connection after you read. but definitely more src code would be nice – Laurence Burke Apr 9 '10 at 14:05
of course.. It works properly, but one day later contents become null. Because of web site havent been stopped, module would not be initialized again – test Apr 9 '10 at 14:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.