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

Session Lost

Hi,

We've a problem with our application. Often when the user is in the asp.net
application this loses the asp session. We have search information about
this problem but we've the same problem, even We've check the antivirus
tool, but this tool doesn't uses any application file.

We don't know what is the problem becasue we don't find a shared behavior
between each case.

Like additional information, the application runs under windows 2003 Server,
IIS 6.0, SQL Server 2000 and our application uses activex component in order
to print in the client printer, I don't know if this component is the
problem.

Regards,

Javier

Nov 19 '05 #1
5 1729
If you have done research on this, I am very surprised that you didn't find
information that says that ASP and ASP.NET cannot and do not share the same
session state. This is because they run under 2 different processes.

"Javier Camacho" <j.*******@eurodivisas.com> wrote in message
news:OT**************@TK2MSFTNGP10.phx.gbl...
Hi,

We've a problem with our application. Often when the user is in the
asp.net application this loses the asp session. We have search information
about this problem but we've the same problem, even We've check the
antivirus tool, but this tool doesn't uses any application file.

We don't know what is the problem becasue we don't find a shared behavior
between each case.

Like additional information, the application runs under windows 2003
Server, IIS 6.0, SQL Server 2000 and our application uses activex
component in order to print in the client printer, I don't know if this
component is the problem.

Regards,

Javier

Nov 19 '05 #2
sorry, I don't undurstand me, I want to say "Often when the user is in the
asp.net application this loses the asp.net session" I wrote "asp session"
instead "asp.net session" ...

Regards

"Marina" <so*****@nospam.com> escribió en el mensaje
news:O%******************@TK2MSFTNGP09.phx.gbl... If you have done research on this, I am very surprised that you didn't
find information that says that ASP and ASP.NET cannot and do not share
the same session state. This is because they run under 2 different
processes.

"Javier Camacho" <j.*******@eurodivisas.com> wrote in message
news:OT**************@TK2MSFTNGP10.phx.gbl...
Hi,

We've a problem with our application. Often when the user is in the
asp.net application this loses the asp session. We have search
information about this problem but we've the same problem, even We've
check the antivirus tool, but this tool doesn't uses any application
file.

We don't know what is the problem becasue we don't find a shared behavior
between each case.

Like additional information, the application runs under windows 2003
Server, IIS 6.0, SQL Server 2000 and our application uses activex
component in order to print in the client printer, I don't know if this
component is the problem.

Regards,

Javier



Nov 19 '05 #3
Check the event viewer for asp.net restarts.

It is possible that the activex is causing some problem causing asp.net to
recycle.

"Javier Camacho" <j.*******@eurodivisas.com> wrote in message
news:uB**************@TK2MSFTNGP10.phx.gbl...
sorry, I don't undurstand me, I want to say "Often when the user is in the
asp.net application this loses the asp.net session" I wrote "asp
session" instead "asp.net session" ...


Regards

"Marina" <so*****@nospam.com> escribió en el mensaje
news:O%******************@TK2MSFTNGP09.phx.gbl...
If you have done research on this, I am very surprised that you didn't
find information that says that ASP and ASP.NET cannot and do not share
the same session state. This is because they run under 2 different
processes.

"Javier Camacho" <j.*******@eurodivisas.com> wrote in message
news:OT**************@TK2MSFTNGP10.phx.gbl...
Hi,

We've a problem with our application. Often when the user is in the
asp.net application this loses the asp session. We have search
information about this problem but we've the same problem, even We've
check the antivirus tool, but this tool doesn't uses any application
file.

We don't know what is the problem becasue we don't find a shared
behavior between each case.

Like additional information, the application runs under windows 2003
Server, IIS 6.0, SQL Server 2000 and our application uses activex
component in order to print in the client printer, I don't know if this
component is the problem.

Regards,

Javier



Nov 19 '05 #4
"Javier Camacho" <j.*******@eurodivisas.com> wrote in message
news:OT**************@TK2MSFTNGP10.phx.gbl...
Hi,

We've a problem with our application. Often when the user is in the
asp.net application this loses the asp session. We have search information
about this problem but we've the same problem, even We've check the
antivirus tool, but this tool doesn't uses any application file.

We don't know what is the problem becasue we don't find a shared behavior
between each case.

Like additional information, the application runs under windows 2003
Server, IIS 6.0, SQL Server 2000 and our application uses activex
component in order to print in the client printer, I don't know if this
component is the problem.

Regards,

Javier


Is your session information being stored In-Proc? If so, why not try
StateServer instead?

Brian

www.cryer.co.uk/brian

Nov 19 '05 #5
How long does he stay in the ASP.NET application ? If the user hits only
ASP.NET pages for more than the timeout, the ASP session will timeout as
usual...

Patrice

--

"Javier Camacho" <j.*******@eurodivisas.com> a écrit dans le message de
news:OT**************@TK2MSFTNGP10.phx.gbl...
Hi,

We've a problem with our application. Often when the user is in the asp.net application this loses the asp session. We have search information about
this problem but we've the same problem, even We've check the antivirus
tool, but this tool doesn't uses any application file.

We don't know what is the problem becasue we don't find a shared behavior
between each case.

Like additional information, the application runs under windows 2003 Server, IIS 6.0, SQL Server 2000 and our application uses activex component in order to print in the client printer, I don't know if this component is the
problem.

Regards,

Javier

Nov 19 '05 #6

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

Similar topics

3
by: Microsoft | last post by:
I am using Session variables in my ASP application. I have tested the application on a Win2k professional and it works fine. When the same web app is installed on a win2k advanced server from the...
7
by: Billy Jacobs | last post by:
I am having a problem with my session variable being set to Null for no apparent reason. I am declaring it like the following when the user logs in. dim objUserInfo as new clsUserInfo 'Set...
0
by: CJ | last post by:
Hi We have Session Data lost randomly and Session State expired early. Our Intranet Application uses Window Server 2003 and .Net Framework 1.1. We set Session Time out to 60 minutes. but user...
6
by: Tony G. | last post by:
Hi there, I have an APS 3 application, running on a Windows 2003 Web edition server - it is a very busy website, and when users are click on certain links (membership info), a new window i...
9
by: Patrick | last post by:
Hello I'm running two Webservers Using ASP.NET. both are running the same ASP.NET Application, with <sessionState mode="SQLServer" stateConnectionString="tcpip=127.0.0.1:42424"...
3
by: William | last post by:
Hi I have an ASP.NET application that connects to an Access database. Everything works fine except for the Session object. Data in the session object is lost after I've made a call to the...
7
by: Erik | last post by:
I have an application that uses sessions variables a lot but one I publish the application on the prod server these variables are lost. The application is written i c# 2.0 and I've set the...
2
by: maxkumar | last post by:
Hi, I am running a ASP.NET 1.1 site on Win Server 2003 with IIS 6.0. The website has been running for about 1.5 years now. In the past, we used to have random cases of session variables getting...
43
by: davidkoree | last post by:
I mean not about cookie. Does it have something to do with operating system or browser plugin? I appreciate any help.
22
by: K. A. | last post by:
I have two servers at work, 'A' for testing and development, and server 'B' for production. On server A, I wrote a PHP test code to login users then direct them to a personalized page. This is...
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: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
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: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
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

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.