473,326 Members | 2,124 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

asp error

We've noticed some strange errors on our production servers running IIS

Event Type: Warning
Event Source: ASP.NET 2.0.50727.0
Event Category: Web Event
Event ID: 1309
Date: 17-04-2007
Time: 11:21:51
User: N/A
Computer: VM_CTX_AAC
Description:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 17-04-2007 11:21:51
Event time (UTC): 17-04-2007 15:21:51
Event ID: 7db85e546a42412a958851ddb83e31ca
Event sequence: 5
Event occurrence: 1
Event detail code: 0

Application information:
Application domain:
/LM/W3SVC/1/Root/CitrixSessionInit-6-128212968917432530
Trust level: Full
Application Virtual Path: /CitrixSessionInit
Application Path: c:\inetpub\wwwroot\CitrixSessionInit\
Machine name: VM_CTX_AAC

Process information:
Process ID: 2916
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE

Exception information:
Exception type: ArgumentNullException
Exception message: Value cannot be null.
Parameter name: sessionID

Request information:
Request URL: http://vm_ctx_aac/CitrixSessionInit/NUI.aspx
Request path: /CitrixSessionInit/NUI.aspx
User host address: 10.25.50.39
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE

Thread information:
Thread ID: 1
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at
System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage
reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData&
msgData, Int32 type)
at
Citrix.Msam.NavUI.BusinessObjects.NavUIManager.Smo othRoamingReconnectAllowed(String
masterSessionId)
at Citrix.NUI.HomeLayout.HandleLoadEvent(Object sender, EventArgs e)
at Citrix.NUI.NUIUserControl.Page_Load(Object sender, EventArgs e)
at System.Web.UI.Control.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
Custom event details:

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
Apr 17 '07 #1
1 4252
What exactly do you want to know? I can explain the gist of the message to
you, and then you'll have to have your developers figure out what to do
about it.

First, the page being requested is:
http://vm_ctx_aac/CitrixSessionInit/NUI.aspx
This means that the exception is occurring in some code that runs in this
page, whether it is in the page or used by the page.

Second, the IP address of the client is: 10.25.50.39
This means that the request is coming from inside your LAN, not outside. It
is a private IP address.

Third, the machine name hosting the page is: VM_CTX_AAC

Fourth, the exception is:

Exception type: ArgumentNullException
Exception message: Value cannot be null.

This means that something in the code is trying to use a class instance that
doesn't exist. The class has not been instantiated, and is therefore null.

So, all your developers have to do is go to this page, identify the flow of
the code, and find the portion(s) of it that assume(s) that there is an
instance of a class without checking first. Then they can handle the
situation accordingly.

--
HTH,

Kevin Spencer
Microsoft MVP

Printing Components, Email Components,
FTP Client Classes, Enhanced Data Controls, much more.
DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net

"Cgf39" <cg***@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
We've noticed some strange errors on our production servers running IIS

Event Type: Warning
Event Source: ASP.NET 2.0.50727.0
Event Category: Web Event
Event ID: 1309
Date: 17-04-2007
Time: 11:21:51
User: N/A
Computer: VM_CTX_AAC
Description:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 17-04-2007 11:21:51
Event time (UTC): 17-04-2007 15:21:51
Event ID: 7db85e546a42412a958851ddb83e31ca
Event sequence: 5
Event occurrence: 1
Event detail code: 0

Application information:
Application domain:
/LM/W3SVC/1/Root/CitrixSessionInit-6-128212968917432530
Trust level: Full
Application Virtual Path: /CitrixSessionInit
Application Path: c:\inetpub\wwwroot\CitrixSessionInit\
Machine name: VM_CTX_AAC

Process information:
Process ID: 2916
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE

Exception information:
Exception type: ArgumentNullException
Exception message: Value cannot be null.
Parameter name: sessionID

Request information:
Request URL: http://vm_ctx_aac/CitrixSessionInit/NUI.aspx
Request path: /CitrixSessionInit/NUI.aspx
User host address: 10.25.50.39
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE

Thread information:
Thread ID: 1
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at
System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage
reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData&
msgData, Int32 type)
at
Citrix.Msam.NavUI.BusinessObjects.NavUIManager.Smo othRoamingReconnectAllowed(String
masterSessionId)
at Citrix.NUI.HomeLayout.HandleLoadEvent(Object sender, EventArgs e)
at Citrix.NUI.NUIUserControl.Page_Load(Object sender, EventArgs e)
at System.Web.UI.Control.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
Custom event details:

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.


Apr 17 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: AIM | last post by:
Error in msvc in building inheritance.obj to build hello.pyd Hello, I am trying to build the boost 1.31.0 sample extension hello.cpp. I can not compile the file inheritance.cpp because the two...
2
by: Gregory | last post by:
Hi, One of the disadvantages of using error handling with error codes instead of exception handling is that error codes retuned from a function can be forgotten to check thus leading to...
13
by: deko | last post by:
I use this convention frequently: Exit_Here: Exit Sub HandleErr: Select Case Err.Number Case 3163 Resume Next Case 3376 Resume Next
7
by: p | last post by:
WE had a Crystal 8 WebApp using vs 2002 which we upgraded to VS2003. I also have Crystal 9 pro on my development machine. The web app runs fine on my dev machine but am having problems deploying....
3
by: Manuel | last post by:
I'm trying to compile glut 3.7.6 (dowbloaded from official site)using devc++. So I've imported the glut32.dsp into devc++, included manually some headers, and start to compile. It return a very...
0
by: bazzer | last post by:
hey, im trying to access a microsoft access database from an ASP.NET web application in visual basic 2003.NET. i get the following error when i try running it: Server Error in...
1
by: developer | last post by:
Hi All I have made a .NET project. the files included are borland c++ files that i am migrate to VC++ .NET I am using Microsoft Visual C++ .NET 2003. the compilation goes through properly,...
0
by: mchuc7719 | last post by:
Hello, I have a Vb.Net 2005 ClassLibrary, when I try to compile using MSBee, only get errors. Before I to run the command line, I open in notepad the .vbproj and I was add the next line: ...
2
hyperpau
by: hyperpau | last post by:
Before anything else, I am not a very technical expert when it comes to VBA coding. I learned most of what I know by the excellent Access/VBA forum from bytes.com (formerly thescripts.com). Ergo, I...
0
hyperpau
by: hyperpau | last post by:
Before anything else, I am not a very technical expert when it comes to VBA coding. I learned most of what I know by the excellent Access/VBA forum from bytes.com (formerly thescripts.com). Ergo, I...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.