Re: Session-Problem

2005-05-24 Thread Viktar Duzh
. [false] It should help. Regards, -- Viktar - Original Message - From: Jorge Chacón Souto [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Tuesday, May 24, 2005 9:56 AM Subject: Re: Session-Problem Hello, I have the same problem some days ago. I found two

Session-Problem

2005-05-23 Thread Mohan
Hi All, I have problem in my application.In My application I have login and log out functionality.When user clicks log-out I am removing the session and I am redirectiong to Login page.So far it is working fine.But problem starts here.If user clicks the back button of browser window.He is

Re: session-problem

2005-05-17 Thread Hubert Rabago
When you switch from session to request, do you remember to change the scope where you set the form in your action class? What I mean is, in your action class, you should also change session.setAttribute(exForm, exForm); to request.setAttribute(exForm, exForm); Hubert On 5/16/05, Mohan

session-problem

2005-05-16 Thread Mohan
Hi, I created a jsp page as follows, html:text property='pr' / in the struts-config filie My action-mapping is as follows action path=/ex.do type=com.ex.ex1.ex1.actions.ExAction name=exForm

Re: session-problem

2005-05-16 Thread Rick Reumann
Mohan wrote the following on 5/16/2005 3:37 AM: I am retriving the values from Database and I am setting it using the set method. But if I keep the form bean scope in session,It is showing the value in the text box.If I keep the form bean scope in the request it is not showing the value. Could

session problem

2004-06-11 Thread Shailender Jain
I am using session object in my application to validate whether the user is valid or not. I am doing this in the processPreprocess() method of RequestProcessor. But in I.E. 6.0 update version: SP1, the session object becomes null. So once user click at any link in the application he gets logged

Re: session problem

2004-06-11 Thread nikhil walvekar
Hi, same thing i have experienced with IE 6.0, it will work with mozilla Problem is that with each request session id is not passed. You need to explicitly pass it as url parameter. http://dbomis.com/anyLink;jsessionid=A0698B81A1F1AA2B1ECDA19B0ACFD6E2 Nikhil Shailender Jain [EMAIL PROTECTED]

RE: session problem

2004-06-11 Thread Andrew Hill
will support users when they have cookies disabled). -Original Message- From: nikhil walvekar [mailto:[EMAIL PROTECTED] Sent: Friday, 11 June 2004 17:34 To: Struts Users Mailing List Subject: Re: session problem Hi, same thing i have experienced with IE 6.0, it will work with mozilla

Re: session problem

2004-06-11 Thread Shailender Jain
:[EMAIL PROTECTED] Sent: Friday, 11 June 2004 17:34 To: Struts Users Mailing List Subject: Re: session problem Hi, same thing i have experienced with IE 6.0, it will work with mozilla Problem is that with each request session id is not passed. You need to explicitly pass it as url parameter

RE: session problem

2004-06-11 Thread Andrew Hill
://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpServle tResponse.html] -Original Message- From: Shailender Jain [mailto:[EMAIL PROTECTED] Sent: Friday, 11 June 2004 17:51 To: Struts Users Mailing List Subject: Re: session problem Thanks Andrew for the response. Should i

Re: session problem

2004-06-11 Thread Shailender Jain
they have cookies disabled). -Original Message- From: nikhil walvekar [mailto:[EMAIL PROTECTED] Sent: Friday, 11 June 2004 17:34 To: Struts Users Mailing List Subject: Re: session problem Hi, same thing i have experienced with IE 6.0, it will work with mozilla Problem is that with each

<    1   2