iterating over multiple Collections in one loop with JSTL

2006-05-25 Thread Pat Slater
Hi, Is it possible to do with JSTL something like this: (Note: size of list1 and list2 are equal) List list1 = getList1(); List list2 = getList2(); for(int i=0; i

Re: WebApp Cannot seem to locate Resource Bundle

2006-05-02 Thread Pat Slater
I also have a message resource entry in struts-config.xml file: Pat Slater <[EMAIL PROTECTED]> wrote: I have defined Action Servlet configuration in web.xml as: action org.apache.struts.action.ActionServlet application com.xxx.i18nMessages.MessageRes

WebApp Cannot seem to locate Resource Bundle

2006-05-02 Thread Pat Slater
I have defined Action Servlet configuration in web.xml as: action org.apache.struts.action.ActionServlet application com.xxx.i18nMessages.MessageResources config /WEB-INF/conf/struts-config.xml debug 2

Re: FW: mapping.getInput()

2006-05-02 Thread Pat Slater
I am using org.apache.struts.validator.DynaValidatorForm to define the form bean in struts-config.xml file. Pat Slater <[EMAIL PROTECTED]> wrote: Used return mapping.getInputForward(); with no change in the result. Tarek Nabil wrote: Not that it has anything to do with your proble

Re: FW: mapping.getInput()

2006-05-02 Thread Pat Slater
Used return mapping.getInputForward(); with no change in the result. Tarek Nabil <[EMAIL PROTECTED]> wrote: 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:

mapping.getInput()

2006-04-30 Thread Pat Slater
When returning back to the input html form page on Exception, mapping.getInput() returns correctly to that page but the form-fields entered by the user are not there anymore. This is a part of my code: public ActionForward saveMethod(ActionMapping mapping, ActionForm form, Ht

Re: ActionForward and input form

2006-04-29 Thread Pat Slater
ng > here? > I would appreciate any kind of help. > > > > --- Pat Slater wrote: > > > I have an method in a class that extends > > DispatchAction that throws Exception such as: > > public ActionForward saveMethod(ActionMapping > > map

ActionForward and input form

2006-04-28 Thread Pat Slater
I have an method in a class that extends DispatchAction that throws Exception such as: public ActionForward saveMethod(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { //.. try