Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
MSIL
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 11/25/2010 7:00:54 PM
Event time (UTC): 11/25/2010 11:00:54 AM
Event ID: ada35a0edabc41748ab587332ddef2f1
Event sequence: 33
Event occurrence: 2
Event detail code: 0

Application information:
    Application domain: /LM/W3SVC/2110024196/ROOT-13-129351557784574467
    Trust level: Full
    Application Virtual Path: /
    Application Path: C:\inetpub\wwwroot\wss\VirtualDirectories\10010\
    Machine name: SATSSP2K8P01

Process information:
    Process ID: 4328
    Process name: w3wp.exe
    Account name: SQW2KDOM\wss_admin

Exception information:
    Exception type: NullReferenceException
    Exception message: Object reference not set to an instance of an object.

Request information:
    Request URL: http://satssp2k8p01:10010/default.aspx
    Request path: /default.aspx
    User host address: 10.18.128.106
    User: SQW2KDOM\Cassandra_Ong
    Is authenticated: True
    Authentication Type: NTLM
    Thread account name: SQW2KDOM\wss_admin

Thread information:
    Thread ID: 11
    Thread account name: SQW2KDOM\wss_admin
    Is impersonating: False
    Stack trace:    at SIACodeModules.SIAcustom.OnInit(EventArgs e)
   at System.Web.UI.Control.InitRecursive(Control namingContainer)
   at System.Web.UI.Control.InitRecursive(Control namingContainer)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Custom event details:
Posted

1 solution

In your application, look at the code. You have missed checking some value that can be null. Like a session value that can be null after session gets timedout and yet you directly use it without checking if it holds valid value.

Use DEBUGGER and see which object holds null value and yet you try to use it's properties. Start from this method: SIACodeModules.SIAcustom.OnInit
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900