Re: Different session handling between websphere and tomcat

2013-01-16 Thread Lukasz Lenart
Done, page updated! https://cwiki.apache.org/confluence/display/WW/WebSphere Thanks a lot! -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/1/11 Lukasz Lenart : > Thanks a lot, can I add your note to the page regarding WebSphere in > the docs [1] ? > > [1] http://struts.apache.org/2.x/

Re: Different session handling between websphere and tomcat

2013-01-15 Thread Lukasz Lenart
Ping! 2013/1/11 Lukasz Lenart : > Thanks a lot, can I add your note to the page regarding WebSphere in > the docs [1] ? > > [1] http://struts.apache.org/2.x/docs/websphere.html > > > Kind regards > -- > Łukasz > + 48 606 323 122 http://www.lenart.org.pl/ > > 2013/1/10 Vineet Kanwal : >> >> IBM Web

Re: Different session handling between websphere and tomcat

2013-01-11 Thread Lukasz Lenart
Thanks a lot, can I add your note to the page regarding WebSphere in the docs [1] ? [1] http://struts.apache.org/2.x/docs/websphere.html Kind regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/1/10 Vineet Kanwal : > > IBM WebSphere Application Server uses the JSESSIONID informat

Re: Different session handling between websphere and tomcat

2013-01-10 Thread Vineet Kanwal
IBM WebSphere Application Server uses the JSESSIONID information to keep track of the client session. If you have an application where the application client must navigate across multiple WebSphere Application Server nodes residing in same domain, then the JSESSIONID information may be over-writte

RE: session handling

2008-12-03 Thread dusty
nly tied to a > Map, but I understand where you're coming from. > > Dave > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >

RE: session handling

2008-12-03 Thread Dave Newton
--- On Wed, 12/3/08, Fogleson, Allen wrote: > IMHO - I don't like tying myself down to Sessions. Hmm, I guess my opinion is that in S2's case you're really only tied to a Map, but I understand where you're coming from. Dave -

RE: session handling

2008-12-03 Thread Fogleson, Allen
, December 03, 2008 8:26 AM To: Struts Users Mailing List Subject: RE: session handling --- On Wed, 12/3/08, Fogleson, Allen wrote: > I should be more explicit. When I say I recommend avoiding > using sessions with struts2 of course I meant I recommend > avoiding implementing SessionAware. When P

RE: session handling

2008-12-03 Thread Fogleson, Allen
AIL PROTECTED] Sent: Wednesday, December 03, 2008 8:19 AM To: Struts Users Mailing List Subject: RE: session handling --- On Wed, 12/3/08, Fogleson, Allen wrote: > In the case of using Sessions with Struts2 - by the way I > would recommend avoidin

RE: session handling

2008-12-03 Thread Dave Newton
--- On Wed, 12/3/08, Fogleson, Allen wrote: > I should be more explicit. When I say I recommend avoiding > using sessions with struts2 of course I meant I recommend > avoiding implementing SessionAware. When Possible I try to > do it the way I outlined using session scoped spring > injections. (mak

RE: session handling

2008-12-03 Thread Dave Newton
--- On Wed, 12/3/08, Fogleson, Allen wrote: > In the case of using Sessions with Struts2 - by the way I > would recommend avoiding this - [...] Why? Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

RE: session handling

2008-12-03 Thread Fogleson, Allen
I should be more explicit. When I say I recommend avoiding using sessions with struts2 of course I meant I recommend avoiding implementing SessionAware. When Possible I try to do it the way I outlined using session scoped spring injections. (makes testing a whole lot easier too) Al -

RE: session handling

2008-12-03 Thread Fogleson, Allen
sername(u.getUsername()); . . . And so on... HTH, Al -Original Message- From: mthalis [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 5:02 AM To: user@struts.apache.org Subject: session handling I'm developping a web based application using struts. There, i need to

Re: session handling

2008-12-03 Thread Dave Newton
--- On Wed, 12/3/08, mthalis wrote: > I'm developping a web based application using struts. There, i need to > handle sessions and other relevant stuff. can somebody plz let me > know all about this with essential examples. I was googling and still > unable to find relavant solution. since im not

session handling

2008-12-03 Thread mthalis
rd to implement it. -- View this message in context: http://www.nabble.com/session-handling-tp20809961p20809961.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Session handling in Struts

2005-02-08 Thread Mark Lowe
Are you links being encoded? or Mark On Tue, 08 Feb 2005 15:23:52 +0530, Rajesh <[EMAIL PROTECTED]> wrote: > Hi: > > I haired that struts by default supports session handling. > > when i tried to disable in cookies in my browser and try to access my > site whic

Re: Antwort: Session handling in Struts

2005-02-08 Thread Rajesh
Bernd: THANK YOU VERY MUCH Bernd. I got you now :) Rajesh [EMAIL PROTECTED] wrote: Hi Rajesh, automatic session handling by URL-rewriting (which will happen if the client is not accepting cookies) can only be guaranteed by Struts if you use the corresponding struts tag libraries or JSTL Tags in

Antwort: Session handling in Struts

2005-02-08 Thread Bernd . Knobloch
Hi Rajesh, automatic session handling by URL-rewriting (which will happen if the client is not accepting cookies) can only be guaranteed by Struts if you use the corresponding struts tag libraries or JSTL Tags in your JSP-Pages for hyperlinks and forms. If you write link to some page no

Session handling in Struts

2005-02-08 Thread Rajesh
Hi: I haired that struts by default supports session handling. when i tried to disable in cookies in my browser and try to access my site which is a shopping site the site is not handling sessions. when ever i try to add items to cart, in next page am not getting the session !!! is there any

RE: struts 1.1 and session handling

2004-04-15 Thread MARU, SOHIL (SBCSI)
You can use the dynaValidatorForm and instead extend RequestProcessor to create a custom processor and do you session handling stuff in the preProcess method. -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 1:55 PM To: Struts Users Mailing

Re: struts 1.1 and session handling

2004-04-15 Thread Dean A. Hoover
I like that idea. But how does it address the validator problem? I'm thinking I'm going to have to pitch the DynaValidatorForm usage and do something else. Dean Hoover Franz-Josef Herpers wrote: Dean A. Hoover wrote: I am using struts 1.1 and tomcat 5 for an application. I am also using DynaVali

Re: struts 1.1 and session handling

2004-04-15 Thread Dean A. Hoover
I'll research that, thanks. Doug wrote: How about servlet filters instead? We've started using them for things we want to handle for all URLs, outside of the normal application logic, including session timeout. Dean A. Hoover wrote: I am using struts 1.1 and tomcat 5 for an application. I am

Re: struts 1.1 and session handling

2004-04-15 Thread Franz-Josef Herpers
Dean A. Hoover wrote: I am using struts 1.1 and tomcat 5 for an application. I am also using DynaValidatorForm for validation of form data. Here is my problem: I want to test for (tomcat) session timeout and output a message on the users brower stating that their session timed out. I want to catch

Re: struts 1.1 and session handling

2004-04-15 Thread Doug
How about servlet filters instead? We've started using them for things we want to handle for all URLs, outside of the normal application logic, including session timeout. Dean A. Hoover wrote: I am using struts 1.1 and tomcat 5 for an application. I am also using DynaValidatorForm for validati

struts 1.1 and session handling

2004-04-15 Thread Dean A. Hoover
I am using struts 1.1 and tomcat 5 for an application. I am also using DynaValidatorForm for validation of form data. Here is my problem: I want to test for (tomcat) session timeout and output a message on the users brower stating that their session timed out. I want to catch and process this situa