https session-timeout problem

2002-04-11 Thread @Basebeans.com
Subject: https session-timeout problem From: Emil Birgersson [EMAIL PROTECTED] === Hello! I have a strange problem. I use a couple of session variables (shopping cart, username) and I changed the session-timeout propertie to let's say 60 minutes. This worked fine until I made my site secure

SV: https session-timeout problem

2002-04-11 Thread Magnus Rydin
Ämne: https session-timeout problem Subject: https session-timeout problem From: Emil Birgersson [EMAIL PROTECTED] === Hello! I have a strange problem. I use a couple of session variables (shopping cart, username) and I changed the session-timeout propertie to let's say 60 minutes. This worked

Re: https session-timeout problem

2002-04-11 Thread Jose Mena
I had the same problem and I fixed it putting shared=true in the web-app line of the secure-web-site.xml config file. - Original Message - From: Orion Newsgroup @[EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 1:25 PM Subject: https session-timeout

Session timeout ?

2001-07-19 Thread Kai Kramhoeft
Hi, I am uploading File using a Form-File. It works fine with files which are smaller than 2 mb. If I upload 5 mb files, my application does not work anymore. I guess the problem is that the session times out. Where can I set the session outtime ? Kind Regards, Kai.

RE: Session timeout ?

2001-07-19 Thread Kevin Duffey
session timeout is set in the /WEB-INF/web.xml file of each web application. session-timeout30/session-timeout is the default. 30 minutes. Set it to 60 for one hour, try the file and see if that works. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

Re: Session timeout ?

2001-07-19 Thread kc
..so far no problems... KC - Original Message - From: Kai Kramhoeft To: Orion-Interest Sent: Thursday, July 19, 2001 4:10 PM Subject: Session timeout ? Hi, I am uploading File using a Form-File. It works fine with files which are smaller than 2 mb. If I

Session Timeout

2001-06-20 Thread struts orion
Hi all, some basic questions 1. In orion server to set session time where do we make the necessary changes. 2. what is the save method for shutting the orionserver. Thanks Praveen __ Do You Yahoo!? Get personalized email addresses

Re: FRUSTRATION: Session keeps timing out despite setting session-timeout. WHY?

2001-06-08 Thread Nick Newman
Just grabbing at straws here, but perhaps there's a typo in the docs and the units are actually seconds, not minutes. Worth a try? Nick At 02:11 PM 6/7/01 -0700, you wrote: Hello, I have a http and https orion jsp application for which I want the session timeout to be a lot longer

Re: FRUSTRATION: Session keeps timing out despite setting session-timeout. WHY?

2001-06-08 Thread Alejandro Revilla
session-config session-timeout 1000 /session-timeout /session-config I'm wild guessing here but try removing those blanks, may be Orion is getting a NumberFormatException. (try to Long.parseLong ( 1000 ) and you'll get it) --Alejandro Revilla http://www.jpos.org

FRUSTRATION: Session keeps timing out despite setting session-timeout. WHY?

2001-06-07 Thread Keith Kwiatek
Hello, I have a http and https orion jsp application for which I want the session timeout to be a lot longer than the default 5 or 10 minutes BUT the session keeps timing out. I also have shared=true in the secure-web-site.xml and default-web-app.xml files. I set my web.xml

Re: web.xml session-timeout parameter doesn't extend session, WHY?

2001-06-01 Thread Keith Kwiatek
-timeout parameter doesn't extend session, WHY? I'm not sure if this is still the case with orion, but I needed to set web-app to shared=true in the secure-web-site.xml site: web-app application=company name=company-web root=/ shared=true / This resolved session-timeout issues I was having

web.xml session-timeout parameter doesn't extend session, WHY?

2001-05-31 Thread Keith Kwiatek
I am running http and https. My web.xml session-timeout parameter doesn't seem to extend session, It keeps timing out in just 5 or ten minutes. WHY? ANY ideas? THis is what is in my web.xml file. session-config session-timeout60/session-timeout /session-config

RE: web.xml session-timeout parameter doesn't extend session, WHY?

2001-05-31 Thread Todd McGrath
I'm not sure if this is still the case with orion, but I needed to set web-app to shared=true in the secure-web-site.xml site: web-app application=company name=company-web root=/ shared=true / This resolved session-timeout issues I was having. Todd -Original Message- From: [EMAIL

Re: Session timeout

2001-01-25 Thread Seung Ryong Bang
Thanks, Matt! First of all, I meant the session to be alive unless he or she purposedly closed the session. The reason is that with a certain session timeout, if a user remains idle, all the objects defined in the session will not be available any more, which will result in a NullPointerException

Re: Session timeout

2001-01-25 Thread Tim Endres
invalidate the HTTPSession. tim. Nobody's answering my question. Please~~ Any idea is welcome. Thanks very much. - Original Message - From: "Seung Ryong Bang" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Monday, January 22, 2001 10:03 AM Subjec

RE: Session timeout

2001-01-25 Thread Matt Krevs
first. Also, what happens if the user just closes the browser window when they are finished? You end up having a session sitting around forever if you dont use the session timeout mechanism. The only viable solution i can think of is to set a session timeout value relevant to you application (eg 30

Re: Session timeout

2001-01-24 Thread Seung Ryong Bang
Nobody's answering my question. Please~~ Any idea is welcome. Thanks very much. - Original Message - From: "Seung Ryong Bang" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Monday, January 22, 2001 10:03 AM Subject: Session timeout Hello a

RE: Session timeout

2001-01-24 Thread Matt Krevs
Yes session-config session-timeoutX/session-timeout /session-config is where you specify the number of minutes of inactivity before web sessions are timed out I dont know for sure what setting this value to 0 does. If it means that sessions never timeout then you probably shouldnt ever

Session timeout

2001-01-22 Thread Seung Ryong Bang
Hello all, I have just put the following line in my web.xml. session-config session-timeout0/session-timeout /session-config It will not invalidate any session unless the session is forced to be invalidated on purpose. I do not really know if it's going to be fine that way. A session is going

Re: Session Timeout Default

2000-12-08 Thread Santosh Kumar
Session in my application timed out just after 5 minutes.. default must be session-timeout5/session-timeout santosh. - Original Message - From: Knudsen, Joe [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Thursday, December 07, 2000 11:14 PM Subject: Session Timeout

Session Timeout Default

2000-12-07 Thread Knudsen, Joe
Does anybody know what the default session timeout. In the docs it shows how to set it in web.xml but not what the default is. Thanks, Joe Knudsen Optical Solutions Network Management Developer Email: [EMAIL PROTECTED] Phone: (763)268-3622

Re: Stateful Session timeout, JSPs

2000-11-05 Thread Joshua Goodall
This is an old thread, but I was browsing archives and had a contribution to make. Thomas Munro wrote: I have a (1) JSP session which stores a reference to (2) a stateful session EJB. If either times out, I want the user to be bounced to a page where they have to log in (again). The

RE: Stateful Session timeout, JSPs

2000-11-05 Thread Jeff Schnitzer
st approach. Comments? Jeff Schnitzer [EMAIL PROTECTED] Unit Test your EJBs: http://www.infohazard.org/junitee From: Joshua Goodall [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 05, 2000 8:26 AM To: Orion-Interest Subject: Re: Stateful Session timeout, JSPs This is an old thread, but I

SSL and session timeout

2000-10-09 Thread David Ekholm
Ifindthatmysslsessionstimeoutatabout90seconds.Myhttpsessionstimeoutatthespecifiedtimeof30minutes.Anyclues? I have set the shared="true" attribute in your secure-site.xml /David "The Las Vegas of Online Gaming" David EkholmSystem ArchitectHammarby Kajväg 14, 120 30

Re: SSL and session timeout

2000-10-09 Thread Karl Avedal
Hello again, Sorry, that would be #56, not 55. http://www.orionserver.com/bugzilla/show_bug.cgi?id=56 Regards, Karl Avedal Karl Avedal wrote: Hello, This was reported as bug #55 in bugzilla and has been fixed but is not yet released. Will be released in a few days. Regards, Karl

Re: SSL and session timeout

2000-10-09 Thread Karl Avedal
Hello, This was reported as bug #55 in bugzilla and has been fixed but is not yet released. Will be released in a few days. Regards, Karl Avedal David Ekholm wrote: I find that my ssl sessions time out at about 90 seconds. My http sessions time out at the specified time of 30 minutes. Any

Re: SSL and session timeout

2000-10-09 Thread Manish Shah
Unsubscribe On Mon, 9 Oct 2000, David Ekholm wrote: [NON-Text Body part not included]

Re: What is definition of session-timeout ?

2000-07-06 Thread Ciaran McNulty
the web.xml session-timeout numOfMinutes /session-timeout configuration parameter. Does anyone know the definition of this parameter? Is it: 1.. Time-out from the last time the object was used? 2.. Time-out from the moment the object was initially created? Thanks in Advance STeve

RE: What is definition of session-timeout ?

2000-07-05 Thread Matt Krevs
As far as I know its the number of minutes since the session was 'used' (number 1) -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steven PunteSent: Thursday, 6 July 2000 7:47To: Orion-InterestSubject: What is definition of "session-ti

Stateful Session timeout, JSPs

2000-05-04 Thread Thomas Munro
Hello I have a design question. I have a (1) JSP session which stores a reference to (2) a stateful session EJB. If either times out, I want the user to be bounced to a page where they have to log in (again). The problem is that the JSP session and the session EJB time out under different

RE: Stateful Session timeout, JSPs

2000-05-04 Thread Conrad Chan
if this error is thrown unhandled. Hence you don't need to remember to put handling code everywhere in your pages. Conrad -Original Message- From: Thomas Munro [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 04, 2000 9:37 AM To: Orion-Interest Subject: Stateful Session timeout, JSPs Hello I have

RE: Stateful Session timeout, JSPs

2000-05-04 Thread Kevin Duffey
;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Thomas Munro Sent: Thursday, May 04, 2000 9:37 AM To: Orion-Interest Subject: Stateful Session timeout, JSPs Hello I have a design question. I have a (1) JSP session which stores a referen

session timeout on stateless session beans, why?

1999-12-27 Thread Robert Krueger
Hi, I'm getting session timeouts on stateless session beans. I thought that timeouts only made sense on stateful session beans? Could someone please clarify that? The state diagram of stateful session beans contains a timeout but the one for stateless session beans doesn't. Am I misinterpreting