Re: [ANN] JAVAWUG BOF XVI Videos Available Now!

2006-05-01 Thread Nikolaj Berntsen
>From: Peter Pilgrim [mailto:[EMAIL PROTECTED] >Sent: Friday, April 28, 2006 4:01 AM >To: [EMAIL PROTECTED]; Maven Users List; Struts Users Mailing >Subject: [ANN] JAVAWUG BOF XVI Videos Available Now! > >Phil Zoio presents "Strecks: Java 5 extension framework for Struts" >http://video.google.com

RE: [ANN] JAVAWUG BOF XVI Videos Available Now!

2006-05-01 Thread Gaurav Jain
I went through this and it's simply great. Thanks, Gaurav Jain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, April 28, 2006 10:01 AM To: user@struts.apache.org Subject: RE: [ANN] JAVAWUG BOF XVI Videos Available Now! Hi, Thanks for sharing these lin

FW: mapping.getInput()

2006-05-01 Thread Tarek Nabil
Not that it has anything to do with your problem, but why are you doing it this way? Why don't you do return mapping.getInputForward(); -Original Message- From: Pat Slater [mailto:[EMAIL PROTECTED] Sent: Sunday, April 30, 2006 7:22 PM To: user@struts.apache.org Subject: mapping.getInput

Re: [shale] Form token giving NPE

2006-05-01 Thread Gary VanMatre
>Gary VanMatre wrote: >>> From: Richard Wallace <[EMAIL PROTECTED]> >>> >>> I'm trying to use the token component on a form to ensure that a user >>> doesn't submit the form more than once. Whenever I try and submit the >>> form a second time, I get a NPE. I'm using it in Clay, if that makes >>

Re: Where dose JSP works in JSF request lifecycle?

2006-05-01 Thread Craig McClanahan
On 5/1/06, 王曾wang_zeng <[EMAIL PROTECTED]> wrote: 2006/4/28, Craig McClanahan <[EMAIL PROTECTED]>: > > You are correct. There is special handling defined in the Restore View > phase. If that phase discovers that there is no state to be restored > , then JSF will immediately forward to Render R

Re: Where dose JSP works in JSF request lifecycle?

2006-05-01 Thread 王曾wang_zeng
2006/4/28, Craig McClanahan <[EMAIL PROTECTED]>: You are correct. There is special handling defined in the Restore View phase. If that phase discovers that there is no state to be restored , then JSF will immediately forward to Render Response phase. So, how do you make sure that the right dy

RE: Session Id for the HTTP Session in Struts application

2006-05-01 Thread George.Dinwiddie
http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpSession.htm l#getId() > -Original Message- > From: Raghuveer [mailto:[EMAIL PROTECTED] > Sent: Monday, May 01, 2006 3:16 AM > To: user@struts.apache.org > Subject: FW: Session Id for the HTTP Session in Struts application > >

Re: FW: Session Id for the HTTP Session in Struts application

2006-05-01 Thread Dave Newton
Raghuveer wrote: > In my web application when accessing few pages i need to get session id. > I need to store this session id in Database during the user navigation as > per my requirement. > For my stored procedures i need to send this session id as IN parameter. > > What is the best way to handl

Re: Is Action Chaining Strongly Discouraged?

2006-05-01 Thread Dave Newton
David Evans wrote: > Is there a reason you don't use the two action (setup and submit) approach? > I just think it's cluttery. I always use POST so it's easy to just split my actions into GET and POST handlers; I do the setup in the GET handler. Dave

FW: validator framework - With Nested tags

2006-05-01 Thread Raghuveer
-Original Message- From: Raghuveer [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 12:45 PM To: 'Struts Users Mailing List' Subject: validator framework - With Nested tags Is it possiable to validate my form which is generated by Nested tags. Example: I have 10 records(beans) in

FW: Session Id for the HTTP Session in Struts application

2006-05-01 Thread Raghuveer
-Original Message- From: Raghuveer [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 12:40 PM To: 'Struts Users Mailing List' Subject: Session Id for the HTTP Session in Struts application In my web application when accessing few pages i need to get session id. I need to store this

validator framework - With Nested tags

2006-05-01 Thread Raghuveer
Is it possiable to validate my form which is generated by Nested tags. Example: I have 10 records(beans) in Vector in my struts actionform. Each bean has employee ID and Name. Is it possiable to use the validator framework against employee ID and Name to test for required,maxlength..etc --