RE: anchor tags and struts

2002-08-01 Thread Angela Saval
Message- From: Angela Saval [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 3:00 PM To: 'Struts Users Mailing List' Subject: anchor tags and struts I am having difficulty redirecting to a page with an anchor tag. Has anyone successfully done this. Essentially, I want to define

redirection from an action/ refreshing page

2002-03-05 Thread saval
After we have finished handling the form in our action, we forward the request on to the next page using return new ActionForward(mapping.findForward(success)); where success is defined in the action in struts-config.xml using forward name=success path=/successpage.jsp/

RE: redirection from an action/ refreshing page

2002-03-05 Thread saval
addendum to question. I meant to write that we do return mapping.findForward(success); not return new ActionForward(mapping.findFoward(success)); that was a typo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 12:38 PM To: [EMAIL

Errors and bundle

2001-12-02 Thread Angela Saval
How do I specify an alternate message resource file for the errors? I see that there is a bundle parameter to the tag in the HTML tag library, but I am uncertain of where and how I need to define the alternate message resource. Thanks in advance. -- To unsubscribe, e-mail: mailto:[EMAIL

Icons next to form elements with validation errors

2001-12-02 Thread Angela Saval
I would like to be able to place an icon next to each field in a form that did not validate correctly. Is this integrated into the html input fields tags some how? If so, I am not seeing this. For example, I would like something like html:text property=username size=20 maxlength=100

RE: Cannot find bean xyz in scope null

2001-11-20 Thread Angela Saval
This may be a little far out there, but I notice that the id that you are using for your iterate is the same as the property name. Try changing the id parameter to something like, app. For example logic:iterate name=InfoBean property=reservationInfo id=app

RE: What are the 5 optional args in Bean Message Tag for

2001-11-20 Thread Angela Saval
You do not set them in the action for your form bean. You pass them in as parameters to the message bean:message name=keyinyourApplicationResources arg0=example arg / In the ApplicationResources.properties for your application keyinyourApplicationResources=this is a message, the argument is

Deciphering exceptions resource

2001-09-10 Thread Angela Saval
Hello, Does anyone know where I can find a information (resource page) on deciphering what an exceptions means and how I should go about debugging? I have looked through the source code at the source of the exception and I am still have a little trouble. This is the first time I have used

Stability of Struts

2001-09-06 Thread Angela Saval
Hello, My company is considering using struts in our web application. What has been your overall experience with the infrastructure? Do you find that you have to work around a lot of bugs? Thanks for your input. Angela