s:if iterator session problem

2013-11-18 Thread john lee
  from the following output,    we can tell sell_price=36.97, display_price=1   why    none of test statement works ?     please advise, thanks in advance   john       Class Part { float sell_price;     int display_price;     ./*..get set here

Re: Struts2 session problem (after migrating behind reverse proxy)

2010-08-03 Thread nuwan chandrasoma
Hi Tim, what is your apache webserver version? i have you tried with a ProxyPassReverse declaration? Thanks, Nuwan C. On Mon, Aug 2, 2010 at 9:05 PM, Tim Dellas del...@ascora.de wrote: Hi there! I store session parameters in a Struts2 session map that I get in my actions using the

AW: Struts2 session problem (after migrating behind reverse proxy)

2010-08-03 Thread Tim Dellas
session problem (after migrating behind reverse proxy) Hi Tim, what is your apache webserver version? i have you tried with a ProxyPassReverse declaration? Thanks, Nuwan C. On Mon, Aug 2, 2010 at 9:05 PM, Tim Dellas del...@ascora.de wrote: Hi there! I store session parameters

Struts2 session problem (after migrating behind reverse proxy)

2010-08-02 Thread Tim Dellas
Hi there! I store session parameters in a Struts2 session map that I get in my actions using the SessionAware interface. My Application is in the /MyApp path. After setting up the struts2 application on an Apache server with an inverse proxy redirect that makes the URL

Re: Struts 2 session problem

2009-01-21 Thread musomesa
To: user@struts.apache.org Sent: Mon, 19 Jan 2009 3:39 pm Subject: Re: Struts 2 session problem Yes, SEAM does: http://www.seamframework.org/Documentation/DoesSeamSupportMultipleBrowserWindowsOrTabs I haven't dug into exactly how they do it but I would not be surprised if they pass

Re: Struts 2 session problem

2009-01-20 Thread RajibJana
-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21558598.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-20 Thread dusty
-- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21566744.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr

Re: Struts 2 session problem

2009-01-20 Thread Dave Newton
dusty wrote: Good luck with SEAM. And good luck to us incorporating some of its features--SEAM has a lot going for it. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail:

Re: Struts 2 session problem

2009-01-19 Thread RajibJana
- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem

Re: Struts 2 session problem

2009-01-19 Thread stanlick
-session-problem-tp21513305p21537201.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h

Re: Struts 2 session problem

2009-01-19 Thread Dave Newton
dusty wrote: Creating a separate subsystem on the server to partition a single HTTP session for multiple users and maintain the conversation is classic overengineering. Seems like Seam has gone to a lot of trouble to provide just another way to persist state. It's not over-engineering to

Re: Struts 2 session problem

2009-01-19 Thread Greg Lindholm
-- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21549675.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr

RE: Struts 2 session problem

2009-01-19 Thread Radu Solomon
Lindholm [mailto:glindh...@yahoo.com] Sent: January 19, 2009 2:19 PM To: user@struts.apache.org Subject: Re: Struts 2 session problem +1 I find I need this all the time when developing; I want to login as 2 different users and test multi-user interactions. Currently I'm forced to use 2 different

RE: Struts 2 session problem

2009-01-19 Thread Greg Lindholm
- From: Greg Lindholm [mailto:glindh...@yahoo.com] Sent: January 19, 2009 2:19 PM To: user@struts.apache.org Subject: Re: Struts 2 session problem +1 I find I need this all the time when developing; I want to login as 2 different users and test multi-user interactions. Currently I'm forced

Re: Struts 2 session problem

2009-01-19 Thread Jim Kiley
...@yahoo.com] Sent: January 19, 2009 2:19 PM To: user@struts.apache.org Subject: Re: Struts 2 session problem +1 I find I need this all the time when developing; I want to login as 2 different users and test multi-user interactions. Currently I'm forced to use 2 different browsers

Re: Struts 2 session problem

2009-01-19 Thread Greg Lindholm
To: user@struts.apache.org Subject: Re: Struts 2 session problem +1 I find I need this all the time when developing; I want to login as 2 different users and test multi-user interactions. Currently I'm forced to use 2 different browsers, login once with Firefox and once with IE

RE: Struts 2 session problem

2009-01-19 Thread Andy
based on keys. At the end of the day a servlet container creates a single session for a single workstation. Date: Mon, 19 Jan 2009 12:39:30 -0800 From: glindh...@yahoo.com To: user@struts.apache.org Subject: Re: Struts 2 session problem Yes, SEAM does: http://www.seamframework.org

RE: Struts 2 session problem

2009-01-19 Thread Martin Gainty
@struts.apache.org Subject: RE: Struts 2 session problem Date: Mon, 19 Jan 2009 17:07:13 -0600 I agree with ya. I have been doing something very similar with hidden fields in my app for some time. The server knows if a new browser instance is requested by checking the hidden field. If its

Re: Struts 2 session problem

2009-01-19 Thread dusty
-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21556117.html Sent from the Struts - User mailing list archive at Nabble.com

RE: Struts 2 session problem

2009-01-19 Thread RajibJana
: glindh...@yahoo.com To: user@struts.apache.org Subject: Re: Struts 2 session problem Yes, SEAM does: http://www.seamframework.org/Documentation/DoesSeamSupportMultipleBrowserWindowsOrTabs I haven't dug into exactly how they do it but I would not be surprised if they pass around

Re: Struts 2 session problem

2009-01-19 Thread Wes Wannemacher
On Tuesday 20 January 2009 00:01:22 RajibJana wrote: Can I expect this feature in future version of S2? It will help the S2 developers immensely, I bet. Thanks Patches are always welcome! -Wes -- Wes Wannemacher Author - Struts 2 In Practice Includes coverage of Struts 2.1, Spring, JPA,

Re: Struts 2 session problem

2009-01-19 Thread Dale Newfield
andrh...@hotmail.com wrote I agree with ya. I have been doing something very similar with hidden fields in my app for some time. If every request in your app is a POST, or if every link in your app is javascript that causes a POST, that's fine. I like using actual links, though, which

Re: Struts 2 session problem

2009-01-19 Thread RajibJana
://www.nabble.com/Struts-2-session-problem-tp21513305p21558029.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h

Re: Struts 2 session problem

2009-01-19 Thread RajibJana
://www.nabble.com/Struts-2-session-problem-tp21513305p21558037.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h

Re: Struts 2 session problem

2009-01-18 Thread Nils-Helge Garli Hegvik
- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524962.html Sent from the Struts

Re: Struts 2 session problem

2009-01-18 Thread Wes Wannemacher
On Sunday 18 January 2009 02:54:35 RajibJana wrote: By conversation, I want to mean http session independent conversation. So two simultaneous users sharing the same http session can work independently, storing/retriving their own properties throughout the application without having conflict

Re: Struts 2 session problem

2009-01-18 Thread RajibJana
...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524962.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: Struts 2 session problem

2009-01-18 Thread Dave Newton
Wes Wannemacher wrote: Two users are not going to share the same session. Each user will get a new session. That's how app servers work. Check out the Seam conversation stuff. It allows the same user (or, I suppose, two different users, but that's not its primary purpose) to have multiple

Re: Struts 2 session problem

2009-01-18 Thread Wes Wannemacher
On Sunday 18 January 2009 12:11:33 Dave Newton wrote: Check out the Seam conversation stuff. It allows the same user (or, I suppose, two different users, but that's not its primary purpose) to have multiple session states. I could, say, have two tabs open, but each has a conversation scope.

Re: Struts 2 session problem

2009-01-18 Thread Nils-Helge Garli Hegvik
I'm guessing conversations are just different partitions in the session. At least that's how I've seen it implemented before. And I don't see how that would support having multiple _users_ in the same session. Sure, you could probably emulate it in some way, but I have serious doubts if it would

Re: Struts 2 session problem

2009-01-18 Thread Struts Two
option 2 and 3 are overheads for a large app This is an overstatment. The real question is whether This overhead causes major [performance, etc] problems for THE app , u are working on [not any large app], or not. And that is the question which you can only answer. regards, RajibJana

Re: Struts 2 session problem

2009-01-18 Thread RajibJana
the mechanism yet.) Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session

Re: Struts 2 session problem

2009-01-18 Thread dusty
- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21537201.html Sent

Re: Struts 2 session problem

2009-01-18 Thread RajibJana
...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21537675.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21514087.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-17 Thread abhishek reddy
/Struts-2-session-problem-tp21513305p21514087.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21514087.html Sent from the Struts - User mailing list archive

Re: Struts 2 session problem

2009-01-17 Thread abhishek reddy
...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21514087.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21514087.html Sent from the Struts - User mailing list archive at Nabble.com

RE: Struts 2 session problem

2009-01-17 Thread Deepak Kumar
Please check http://www.roseindia.net/struts/struts2/struts2-login.shtml Thanks -Original Message- From: RajibJana [mailto:rajibj...@gmail.com] Sent: Saturday, January 17, 2009 4:35 PM To: user@struts.apache.org Subject: Re: Struts 2 session problem Seems to me S2 can not give better

Re: Struts 2 session problem

2009-01-17 Thread Dave Newton
Deepak Kumar wrote: Please check http://www.roseindia.net/struts/struts2/struts2-login.shtml I don't see how that addresses the issue at all; perhaps you could explain further? Thanks, Dave - To unsubscribe, e-mail:

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21517802.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-17 Thread Struts Two
, RajibJana rajibj...@gmail.com wrote: From: RajibJana rajibj...@gmail.com Subject: Struts 2 session problem To: user@struts.apache.org Received: Saturday, January 17, 2009, 5:23 AM Hi All, I am using struts 2.0.14 to build an enterprise application. It uses spring, hibernate, tiles, Dojo

Re: Struts 2 session problem

2009-01-17 Thread Dale Newfield
RajibJana wrote: 1) if one opens a window and a tabbed window, logs into the application by giving different user id and password combinations, then two seperate sessions are not created. As a result, in the session map userid overrides each other and same user id ( last logged in user ) is

Re: Struts 2 session problem

2009-01-17 Thread Dave Newton
Dale Newfield wrote: One running browser instance shares session across all windows. Using Safari and Firefox in tandem will allow two sessions from one machine. The OP wants a SEAM-like solution, but S2 doesn't have that functionality built-in (nor do most other frameworks, AFAIK). It

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
session problem To: user@struts.apache.org Received: Saturday, January 17, 2009, 5:23 AM Hi All, I am using struts 2.0.14 to build an enterprise application. It uses spring, hibernate, tiles, Dojo 1.2.2. Now I have a serious problem. My application has lots a pages and each page shows

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
://www.nabble.com/Struts-2-session-problem-tp21513305p21524321.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524341.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-17 Thread dusty
...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524655.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524962.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: Struts 2 session problem

2009-01-17 Thread Nils-Helge Garli Hegvik
...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524962.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Struts 2 session problem

2009-01-17 Thread RajibJana
: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org -- View this message in context: http://www.nabble.com/Struts-2-session-problem-tp21513305p21524962.html Sent from the Struts - User mailing list archive at Nabble.com

Struts 2 session problem

2009-01-16 Thread RajibJana
( by starting a conversion), but the result is same( i.e. could not get new session in a window tab). I searched for a solution, could not get a solution. Please suggest how to get rid of this problem. Thanks Rajib -- View this message in context: http://www.nabble.com/Struts-2-session

Re: Struts 2 session problem

2009-01-16 Thread Wes Wannemacher
On Saturday 17 January 2009 00:23:49 RajibJana wrote: 1) A User opens a browser window( IE 7/Firfox) and logs in the application as User X and the application shows the logged in userid as X and DB transactions also get userid info as X. 2) The same user opens a bowser tab or new window from

RE: Session problem unidentified

2008-10-23 Thread MyAshok
with session management. I cant find whether the problem with the HibernateSession or HttpSession. Can u please give me solutions. Waiting for the helpful solution with hope. With Regards, Ashok -- View this message in context: http://www.nabble.com/Session-problem-unidentified

RE: Session problem unidentified

2008-10-23 Thread Dave Newton
--- On Thu, 10/23/08, MyAshok wrote: Inside my action method the User object is populated via autowiring. Have you read the Spring documentation? This seems more a Spring issue than Struts, really. I used Google and searched for spring 2.0 session scope and the hits seemed relevant to your

RE: Session problem unidentified

2008-10-10 Thread Kawczynski, David
Message- From: MyAshok [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2008 4:07 PM To: user@struts.apache.org Subject: Session problem unidentified Hi all, I got a critical problem. My Application Environment - Struts 2 Application, Spring injection for dao, Hiberanate3 Scenerio

Session problem unidentified

2008-10-09 Thread MyAshok
the problem with the HibernateSession or HttpSession. Can u please give me solutions. Waiting for the helpful solution with hope. With Regards, Ashok -- View this message in context: http://www.nabble.com/Session-problem-unidentified-tp19906321p19906321.html Sent from the Struts - User mailing

Re: Session problem unidentified

2008-10-09 Thread Dave Newton
--- On Thu, 10/9/08, MyAshok wrote: 1) When user A logged in and add a new user x (which sets the selectedUser (gettersettervariable) to Null). 2) At the same time, user B logged in and edit a existing user (which sets the selectedUser to some value). 3) Now, the user A save the entries, this

Need help with Struts Interceptor/session problem.

2008-02-20 Thread daveck
-help-with-Struts-Interceptor-session-problem.-tp15598155p15598155.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Need help with Struts Interceptor/session problem.

2008-02-20 Thread Dave Newton
--- daveck [EMAIL PROTECTED] wrote: Sometimes PARMS manages to keep its value, and sometimes the value disappear. I don't see anything immediately obvious; IIRC you had already checked the session ID to make sure you were always dealing with the same session, correct? Have you done extensive

Re: Need help with Struts Interceptor/session problem.

2008-02-20 Thread daveck
-with-Struts-Interceptor-session-problem.-tp15598155p15599632.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Need help with Struts Interceptor/session problem.

2008-02-20 Thread Dave Newton
--- daveck [EMAIL PROTECTED] wrote: The product is a generated and delivered (as a pdf) right after the user clicks on the Confirm button. I thought that the use of an interceptor for this purpose was ideal, but I'm a Struts novice and far from an expert Java programmer. Can you explain why

Re: Need help with Struts Interceptor/session problem.

2008-02-20 Thread daveck
? You've got me thinking. Thanks. -- View this message in context: http://www.nabble.com/Need-help-with-Struts-Interceptor-session-problem.-tp15598155p15600866.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Need help with Struts Interceptor/session problem.

2008-02-20 Thread Dave Newton
--- daveck [EMAIL PROTECTED] wrote: In our situation, some products are free while others are not. There's an interceptor stack for each. All are dynamically generated immediately as an html page or a pdf. An order is only generated for the products that aren't free. For those, once the

Re: Session problem

2007-08-28 Thread Mark Rollins
: http://www.nabble.com/Session-problem-tf4324658.html#a12365492 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Session problem

2007-08-28 Thread Dave Newton
--- Mark Rollins [EMAIL PROTECTED] wrote: I just haven't got round to finding out what I need to do to Struts to get it to inject into an Action class, yet. Set the object factory as Spring, provide a setter in the action class, and name the Spring bean the same name as the setter, so

Re: Session problem

2007-08-27 Thread stanlick
, August 25, 2007 05:47 To: user@struts.apache.org Subject: Re: Session problem This is my first Struts app, so it's quite simplistic. What I'm trying to achieve is to lock down certain processes so that only one user can run them at a time. I intended to do this by having

Re: Session problem

2007-08-27 Thread Mark Rollins
it is two browser windows over the same session! You must start a second (3rd, 4th, ...) browser the way you started the first if you truly want unique session ids. Scott -- View this message in context: http://www.nabble.com/Session-problem-tf4324658.html#a12354179 Sent from the Struts - User

Re: Session problem

2007-08-27 Thread Dave Newton
unique session ids. Scott -- View this message in context: http://www.nabble.com/Session-problem-tf4324658.html#a12354179 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

RE: Session problem

2007-08-26 Thread Mark Rollins
[mailto:[EMAIL PROTECTED] Sent: Saturday, August 25, 2007 05:47 To: user@struts.apache.org Subject: Re: Session problem This is my first Struts app, so it's quite simplistic. What I'm trying to achieve is to lock down certain processes so that only one user can run them at a time. I

Re: Session problem

2007-08-26 Thread Pavel Sapozhnikov
()... It should be: this.session = session; instead of this.session = map; -Rod -Original Message- From: Mark Rollins [mailto:[EMAIL PROTECTED] Sent: Saturday, August 25, 2007 05:47 To: user@struts.apache.org Subject: Re: Session problem This is my first Struts app, so it's

Re: Session problem

2007-08-25 Thread Mark Rollins
] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Session

RE: Session problem

2007-08-25 Thread Rod Bollinger
: Session problem This is my first Struts app, so it's quite simplistic. What I'm trying to achieve is to lock down certain processes so that only one user can run them at a time. I intended to do this by having an application variable holding the User object for the user currently running

Re: Session problem

2007-08-24 Thread Dave Newton
--- MARollins [EMAIL PROTECTED] wrote: I'm having a problem whereby objects saved on the Session are visible to other sessions. For example, the login page saves a new User object on the session using session.put (I have a base class for all my Actions which implements SessionAware in

Re: Session problem

2007-08-24 Thread MARollins
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Session-problem-tf4324658.html#a12318960 Sent from the Struts - User mailing list archive at Nabble.com

Re: Session problem

2007-08-24 Thread Laurie Harper
You have some cross-talk somewhere in your code, by the sound of it. Take a look at any code that touches the session; you probably have something somewhere that's at the wrong scope (in application scope when it should be session/request, a Spring bean accidentally configured as singleton

Re: Re: Session problem

2005-12-07 Thread Ed Griebel
Subject: Re: Session problem Baker, Russ A wrote: Hello, I am trying to figure out how to stop Struts from creating a session. What seems to happen is that once I call an action, a session is created. This is a problem because when I want to gracefully shut down my server

Re: Session problem

2005-12-07 Thread Ed Griebel
will make enemies if I do that... -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Tuesday, December 06, 2005 3:53 PM To: user@struts.apache.org Subject: Re: Session problem Baker, Russ A wrote: Hello, I am trying to figure out how

RE: Re: Session problem

2005-12-07 Thread James Harig
To: Struts Users Mailing List Subject: Re: Re: Session problem The key is to not put anything in your session. Actions are the obvious place to look for things being stuffed into the session (via request.getSession().get/setAttribute()), but you might have a filter that creates a session as part

RE: Session problem

2005-12-07 Thread Baker, Russ A
. Is it possibly creating a session and putting the default locale in it? -Original Message- From: Ed Griebel [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 8:22 AM To: Struts Users Mailing List Subject: Re: Session problem One second is much too short as most users won't be able

RE: Re: Session problem

2005-12-07 Thread Baker, Russ A
if a person is still logged in, or if it is those extra sessions that are being handed out by Struts. Capiche? -Original Message- From: James Harig [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 9:53 AM To: Struts Users Mailing List Subject: RE: Re: Session problem Hi, Here's my

RE: Re: Session problem

2005-12-07 Thread James Harig
PROTECTED] Sent: Wednesday, December 07, 2005 12:10 PM To: Struts Users Mailing List Subject: RE: Re: Session problem No, sorry if I was being vague. I don't want Struts to create a session simply by accessing an action; I want to control the number of sessions being handed out. All of my pages

RE: Re: Session problem

2005-12-07 Thread gramani
James Harig [EMAIL PROTECTED] wrote on 12/07/2005 11:53:15 AM: To facilitate these items, you will need some method of informing your webapplication that the server is going to be shutdown. One way to do this would be to set a flag in the application context; another way is to create a

RE: Re: Session problem

2005-12-07 Thread Frank W. Zammetti
in. -Original Message- From: Baker, Russ A [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 12:10 PM To: Struts Users Mailing List Subject: RE: Re: Session problem No, sorry if I was being vague. I don't want Struts to create a session simply by accessing an action; I want

RE: Re: Session problem

2005-12-07 Thread James Harig
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 12:40 PM To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: RE: Re: Session problem James Harig [EMAIL PROTECTED] wrote on 12/07/2005 11:53:15 AM: To facilitate these items, you

RE: Re: Session problem

2005-12-07 Thread gramani
James Harig [EMAIL PROTECTED] wrote on 12/07/2005 12:50:06 PM: To facilitate these items, you will need some method of informing your webapplication that the server is going to be shutdown. One way to do this would be to set a flag in the application context; another way is to

RE: Re: Session problem

2005-12-07 Thread gramani
James Harig [EMAIL PROTECTED] wrote on 12/07/2005 12:50:06 PM: To facilitate these items, you will need some method of informing your webapplication that the server is going to be shutdown. One way to do this would be to set a flag in the application context; another way is to

Re: Session problem

2005-12-07 Thread Dave Newton
Baker, Russ A wrote: A session is created by virtue of them just getting to the login page. If the user logs in successfully to the system they now have 2 sessions instead the desired result having only one that is assigned to them when they successful login. That is a waste of memory! Two

RE: Session problem

2005-12-07 Thread Baker, Russ A
So then where is that straggler session coming from? -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 11:34 AM To: Struts Users Mailing List Subject: Re: Session problem Baker, Russ A wrote: A session is created by virtue of them just

RE: Session problem

2005-12-07 Thread Max Cooper
:34 AM To: Struts Users Mailing List Subject: Re: Session problem Baker, Russ A wrote: A session is created by virtue of them just getting to the login page. If the user logs in successfully to the system they now have 2 sessions instead the desired result having only one that is assigned

Session problem

2005-12-06 Thread Baker, Russ A
Hello, I am trying to figure out how to stop Struts from creating a session. What seems to happen is that once I call an action, a session is created. This is a problem because when I want to gracefully shut down my server, it complains that I still have an active session. Is there a way to

Re: Session problem

2005-12-06 Thread Ross Gibb
What server are you using? Baker, Russ A wrote: Hello, I am trying to figure out how to stop Struts from creating a session. What seems to happen is that once I call an action, a session is created. This is a problem because when I want to gracefully shut down my server, it complains that I

Re: Session problem

2005-12-06 Thread Laurie Harper
Baker, Russ A wrote: Hello, I am trying to figure out how to stop Struts from creating a session. What seems to happen is that once I call an action, a session is created. This is a problem because when I want to gracefully shut down my server, it complains that I still have an active session.

RE: Re: Session problem

2005-12-06 Thread Baker, Russ A
] On Behalf Of Laurie Harper Sent: Tuesday, December 06, 2005 3:53 PM To: user@struts.apache.org Subject: Re: Session problem Baker, Russ A wrote: Hello, I am trying to figure out how to stop Struts from creating a session. What seems to happen is that once I call an action, a session is created

Re: Session problem

2005-12-06 Thread Ross Gibb
:53 PM To: user@struts.apache.org Subject: Re: Session problem Baker, Russ A wrote: Hello, I am trying to figure out how to stop Struts from creating a session. What seems to happen is that once I call an action, a session is created. This is a problem because when I want to gracefully shut

Re: Session problem

2005-12-06 Thread Yujun Liang
The session is not created by Struts, it is the behaviour of web (servlet) container. http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpSession.html http://e-docs.bea.com/wls/docs81/servlet/progtasks.html#159622 However, you can configure Session Persistence with WebLogic

Session Problem

2005-08-16 Thread Senthilrajan VS
Hi all, I am having serious session problem in some of the browsers(Not all). I'm using struts. In the Action class I am using HttpSession Session=request.getSession(true); to get the session and I'm keep on calling this action for different condition. The problem is For each request

SV: Session Problem

2005-08-16 Thread hermod . opstvedt
Hi Yes, indeed this will happen: use geSession() or getSession(false), also avoid redirect combined with this. Hermod -Opprinnelig melding- Fra: Senthilrajan VS [mailto:[EMAIL PROTECTED] Sendt: 16. august 2005 11:08 Til: Sturts Mailing list Emne: Session Problem Hi all, I am having

Re: Session-Problem

2005-05-24 Thread Jorge Chacón Souto
Hello, I have the same problem some days ago. I found two solutions: using https(SSL) in the web server (if SSL really fits to your application security requirements), since SSL web pages are not cached, or telling the browser to don't cache the JSP page, so when the user clicks the back

  1   2   >