473,378 Members | 1,531 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,378 software developers and data experts.

Perceived Loss of All Session Objects

Environment: Windows 2000 Server, IIS 5.0, ASP .Net
Framework 1.1, VB .Net source code

We are experiencing a condition that manifests itself as a
loss of all session objects. Intermittently (read as: no
discernable pattern at this point), HTTP requests from
users result in a 'Server Application / Error.' The user
requests a page and the non-custom, Microsoft standard
error page is shown with the above message. We have
verified that the login page is available even after users
get this error. However, as soon as they attempt to
establish a session (via login), the same error is
displayed.

Anyone have any ideas? I've done the standard performance
monitor investigation and haven't turned up a single
clue. The condition exists regardless of app server
loading (i.e. # of users, length of queries, etc.)

Thanks...John
Nov 17 '05 #1
4 2053
How is your web application's session configured? "InProc",
"StateServer" ...?

Does it only happen to one web application, or does it happen to all
web application on the web server?

Tommy,

"John Wilcher" <jw******@gmcf.org> wrote in message news:<Oe**************@tk2msftngp13.phx.gbl>...
Environment: Windows 2000 Server, IIS 5.0, ASP .Net
Framework 1.1, VB .Net source code

We are experiencing a condition that manifests itself as a
loss of all session objects. Intermittently (read as: no
discernable pattern at this point), HTTP requests from
users result in a 'Server Application / Error.' The user
requests a page and the non-custom, Microsoft standard
error page is shown with the above message. We have
verified that the login page is available even after users
get this error. However, as soon as they attempt to
establish a session (via login), the same error is
displayed.

Anyone have any ideas? I've done the standard performance
monitor investigation and haven't turned up a single
clue. The condition exists regardless of app server
loading (i.e. # of users, length of queries, etc.)

Thanks...John

Nov 17 '05 #2
Have you checked the event log to see if maybe the ASP.NET application
was restarted? This is similar to my problem, but mine involves a clear
memory leak somewhere. If indeed you find that your ASP.NET application
was restarted, you may try to store your session state in SQL server
instead as I believe that session state is kept even after ASP.NET recycles.

Regards,

Jeff Cheung

John Wilcher wrote:
Environment: Windows 2000 Server, IIS 5.0, ASP .Net
Framework 1.1, VB .Net source code

We are experiencing a condition that manifests itself as a
loss of all session objects. Intermittently (read as: no
discernable pattern at this point), HTTP requests from
users result in a 'Server Application / Error.' The user
requests a page and the non-custom, Microsoft standard
error page is shown with the above message. We have
verified that the login page is available even after users
get this error. However, as soon as they attempt to
establish a session (via login), the same error is
displayed.

Anyone have any ideas? I've done the standard performance
monitor investigation and haven't turned up a single
clue. The condition exists regardless of app server
loading (i.e. # of users, length of queries, etc.)

Thanks...John


Nov 17 '05 #3
Tommy, thanks for the reply.

It's an out of process application and is the only application running on
the server. It's a significant app and requires the whole box. Great
question and thanks for any help you can provide.

John

"Tommy" <To***@WebSoftwares.net> wrote in message
news:aa**************************@posting.google.c om...
How is your web application's session configured? "InProc",
"StateServer" ...?

Does it only happen to one web application, or does it happen to all
web application on the web server?

Tommy,

"John Wilcher" <jw******@gmcf.org> wrote in message

news:<Oe**************@tk2msftngp13.phx.gbl>...
Environment: Windows 2000 Server, IIS 5.0, ASP .Net
Framework 1.1, VB .Net source code

We are experiencing a condition that manifests itself as a
loss of all session objects. Intermittently (read as: no
discernable pattern at this point), HTTP requests from
users result in a 'Server Application / Error.' The user
requests a page and the non-custom, Microsoft standard
error page is shown with the above message. We have
verified that the login page is available even after users
get this error. However, as soon as they attempt to
establish a session (via login), the same error is
displayed.

Anyone have any ideas? I've done the standard performance
monitor investigation and haven't turned up a single
clue. The condition exists regardless of app server
loading (i.e. # of users, length of queries, etc.)

Thanks...John

Nov 17 '05 #4
Thanks for the reply, Jeff.

There are no bread crumbs in the system, application or security logs.
That's what has me stumped about this problem.

I've monitored the server around the clock and watched it closely while I'm
at the office. There are not indications that the problem is linked to a
specific parameter.

Thanks for any help you can provide...John
"Cheung, Jeffrey Jing-Yen" <ji*****@emailREMOVEMEuser.net> wrote in message
news:eo**************@TK2MSFTNGP12.phx.gbl...
Have you checked the event log to see if maybe the ASP.NET application
was restarted? This is similar to my problem, but mine involves a clear
memory leak somewhere. If indeed you find that your ASP.NET application
was restarted, you may try to store your session state in SQL server
instead as I believe that session state is kept even after ASP.NET recycles.
Regards,

Jeff Cheung

John Wilcher wrote:
Environment: Windows 2000 Server, IIS 5.0, ASP .Net
Framework 1.1, VB .Net source code

We are experiencing a condition that manifests itself as a
loss of all session objects. Intermittently (read as: no
discernable pattern at this point), HTTP requests from
users result in a 'Server Application / Error.' The user
requests a page and the non-custom, Microsoft standard
error page is shown with the above message. We have
verified that the login page is available even after users
get this error. However, as soon as they attempt to
establish a session (via login), the same error is
displayed.

Anyone have any ideas? I've done the standard performance
monitor investigation and haven't turned up a single
clue. The condition exists regardless of app server
loading (i.e. # of users, length of queries, etc.)

Thanks...John

Nov 17 '05 #5

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

Similar topics

1
by: db_guy | last post by:
Hi, we have a php-based application that is hosted by Yahoo! Webhosting. Ever since the application was created, it has been plagued by periodic session data loss. Here's a typical example: We...
2
by: Steve Remer | last post by:
OK, I think I understand session state pretty well. I've done additional research on Google over the last few days to fill in any holes. To begin with, I'm using StateServer and not InProc for...
14
by: Michael Carr | last post by:
I have an intermittent problem that occurs on a very small number of browsers that access my website. The strange thing is this: my site works perfectly for 99.9% of browsers. The behavior...
4
by: Chris | last post by:
When a request comes into a page on my ASP.net site and a session is not found, I want to detect whether the request is an initial request or if the user did have a session going that has now been...
8
by: Tim W. | last post by:
Chaps. We are working with SQL-Server based Sessions in the following environemtn: Win-Server 2K3 incl. IIS, Dot Net Framework 1.1, SQL2K SP3a, German. We are defining a Session-Variable...
5
by: John | last post by:
I've started to get session loss on many of my web apps, after only a few minutes (the session lifespan is supposed to be 60 minutes). It occurs in several apps (all on same server), and started...
4
by: leena13 | last post by:
Hi, I am facing a problem of loss of session variables once the ASP.Net 2.0 application is deployed. Let me add that this is actually a 1.1 to 2.0 migration. I found that the first time the...
5
by: Logu Krishnan | last post by:
Hi I'm trying to profile my application and do sizing of the app. is there a way to size the session ?? -- Logu Krishnan
3
by: Martin Kulov [MVP] | last post by:
Hi, I am wondering if this problem is still valid for ASP.NET 2.0. "To maintain session state across different Web servers in the Web farm, the application path of the Web site (for example,...
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.