Problem with extending TilesRequestProcessor

2005-03-18 Thread Schuster Joel M Contr ESC/NDC
I've been working with a custom RequestProcessor extention for awhile that works great for my needs to validate and verify login and session for each request. I have now added in tiles configuration and am trying to get it working. So one part of that conversion was to now extend from TilesReques

RE: what do you suggest me? iBatis or Hibernate

2005-03-18 Thread Schuster Joel M Contr ESC/NDC
Hibernate by proxy: ejb 3.0 via Jboss ;) > -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Friday, March 18, 2005 1:53 PM > To: Struts Users Mailing List > Subject: Re: what do you suggest me? iBatis or Hibernate > > Milson Cardona wrote the following on 3/18/2

RE: Correct Prepopulate Method

2005-03-17 Thread Schuster Joel M Contr ESC/NDC
ody earlier in the thread asked you to > look at this. It's almost *always* the culprit in this sort > of problem.) > > > On Thu, 17 Mar 2005 10:19:35 -0700, Schuster Joel M Contr > ESC/NDC <[EMAIL PROTECTED]> wrote: > > > Like I said, I'm not really su

RE: Return key pressed and default submit form

2005-03-17 Thread Schuster Joel M Contr ESC/NDC
Google is your friend :) http://ppewww.ph.gla.ac.uk/~flavell/www/formquestion.html > -Original Message- > From: Gaet [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 17, 2005 10:18 AM > To: Struts Users Mailing List > Subject: Re: Return key pressed and default submit form > > Nobody

RE: Correct Prepopulate Method

2005-03-17 Thread Schuster Joel M Contr ESC/NDC
re attempting to use it for > other purposes. > > http://marc.theaimsgroup.com/?l=struts-user&m=111077992831529&w=2 > > In your case, you seem to be just listing down a set of > values, as opposed to showing a form that's been > prepopulated. I personally wo

RE: Correct Prepopulate Method

2005-03-17 Thread Schuster Joel M Contr ESC/NDC
opValue); > request.getSession().setAttribute("myForm", myForm); > > > If you want to use request scope, change /submitForm to: > scope="request"...> > > then in showPage: > request.setAttribute("myForm", myForm); > > >

RE: Struts Portlets, jBoss Portal

2005-03-16 Thread Schuster Joel M Contr ESC/NDC
One of the best examples of how to work struts with JSR168 portlets is the sourcecode for LifeRay. > -Original Message- > From: Karan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 16, 2005 10:07 AM > To: ML Struts > Subject: Struts Portlets, jBoss Portal > > Has anyone transferre

Substring of

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
I can't seem to find a clean way of getting a substring of ... suggestions?

RE: Correct Prepopulate Method

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
the reason for the Struts framework by having your ActionForm encompass the data in both the "pre-Action" and "post-Action" JSP/HTML forms. Jack On Fri, 11 Mar 2005 11:57:33 -0700, Schuster Joel M Contr ESC/NDC <[EMAIL PROTECTED]> wrote: > I've been looking into

RE: Correct Prepopulate Method

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
again. -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 10:13 AM To: Struts Users Mailing List Subject: Re: Correct Prepopulate Method On Fri, 11 Mar 2005 09:50:59 -0700, Schuster Joel M Contr ESC/NDC <[EMAIL PROTECTED]> wrote: > I'm not sure I

RE: Correct Prepopulate Method

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
Thanks... I'll keep playing around using your suggestions. -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 10:13 AM To: Struts Users Mailing List Subject: Re: Correct Prepopulate Method On Fri, 11 Mar 2005 09:50:59 -0700, Schuster J

RE: Correct Prepopulate Method

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
uot;pre-populate", in my opinion, is not very useful. On Fri, 11 Mar 2005 09:18:15 -0700, Schuster Joel M Contr ESC/NDC <[EMAIL PROTECTED]> wrote: > I've read a number of articles about correct pre-populate forms methods, > including the following: > > 1. http://ww

RE: Correct Prepopulate Method

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
myForm.set("propName",propValue); request.getSession().setAttribute("myForm", myForm); If you want to use request scope, change /submitForm to: then in showPage: request.setAttribute("myForm", myForm); Hubert On Fri, 11 Mar 2005 09:18:15 -070

RE: Help With Action

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
-Original Message- From: Schuster Joel M Contr ESC/NDC [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 10:16 AM To: 'Struts Users Mailing List' Subject: RE: Help With Action ?? maybe ?? -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Frida

Correct Prepopulate Method

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
I've read a number of articles about correct pre-populate forms methods, including the following: 1. http://www.javaworld.com/javaworld/jw-09-2004/jw-0913-struts-p3.html 2. http://struts.apache.org/faqs/newbie.htm

RE: Help With Action

2005-03-11 Thread Schuster Joel M Contr ESC/NDC
?? maybe ?? -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 9:13 AM To: user@struts.apache.org Subject: Help With Action Hello, I have the following action setup in my struts-config.xml file: I am failing the ActionFor