RE: Tags in the body of other tags

2005-03-04 Thread Paul Tomsic
How about a "choose" like this: Show Me The Day --- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > > From: Joe Germuska [mailto:[EMAIL PROTECTED] > > Sent: Friday, March 4, 2005 11:14 AM > > > Solve like this: > > case > 1 > > case > 2 > > ... > > Hmmm...my

RE: Reloading Configuration File

2005-03-04 Thread Paul Tomsic
take a look at jboss. I'm late on the thread, but if all you're looking to do is hot-deploy, then this'll do it for you. JBoss uses tomcat as an MBean, so you're still getting the tomcat functionality as your container, but you're also getting a ton more. just a suggestion. --- Mark Benussi <[EMA

Re: validatorForms and deprecated actionerrors

2005-03-03 Thread Paul Tomsic
hmmm, are you saying that I should just "wait" until a solution comes along? Not sure I'm understanding. How would you fix the deprecation problem in my situation? --- Bill Siggelkow <[EMAIL PROTECTED]> wrote: > On 2005-03-03 21:31:43 -0500, Paul Tomsic > <[EMAIL P

validatorForms and deprecated actionerrors

2005-03-03 Thread Paul Tomsic
What is the preferred way to obtain errors on a ValidatorForm now that ActionErrors is mostly deprecated? Is there a better way to do this: ActionErrors errors = myForm.validate(mapping, request); if(!errors.isEmpty()) { saveErrors(request, errors);