RE: Redirecting after logon...

2003-11-16 Thread Rob van Oostrum
This might be more involved than you may think. The easy answer is to extend the RequestProcessor and add this functionality there. The hard answer is that you may not want to enable a user to just jump to any given page, only having to go through a login step to get there. You may very well need s

RE: NoClassDefFoundError in custom validator

2003-11-16 Thread Rob van Oostrum
Struts shouldn't be able to do all of the reflection, especially since this is hardly pushing the envelope. Any thoughts? cheers Rob > -Original Message- > From: Rob van Oostrum [mailto:[EMAIL PROTECTED] > Sent: November 14, 2003 6:11 PM > To: [EMAIL PRO

RE: Generate a Drop-Down ???

2003-11-14 Thread Rob van Oostrum
ehm ... [dropdown list html] <% ProdutoView view = (ProdutoView) session.getAttribute("produtoView"); ArrayList list = view.getFormatosArquivos(); java.util.Iterator iterator = list.iterator(); while( iterator.hasNext() ) { String format =

RE: NoClassDefFoundError in custom validator

2003-11-14 Thread Rob van Oostrum
; -Original Message- > From: Rob van Oostrum [mailto:[EMAIL PROTECTED] > Sent: November 14, 2003 6:11 PM > To: [EMAIL PROTECTED] > Subject: NoClassDefFoundError in custom validator - To unsubscribe, e-mail: [EMAIL PR

NoClassDefFoundError in custom validator

2003-11-14 Thread Rob van Oostrum
I added the commons validator to my Struts implementation. The out-of-the-box stuff is working just fine. However, I added the following custom validator: public class BarnmanValidator implements Serializable { public static boolean validateEmailAddress(Object bean, Field field) { [etc, etc,