Re: Revising user input

2007-03-15 Thread Christopher Becker
? Thanks and regards, --Chris [EMAIL PROTECTED] 3/14/2007 12:24:03 PM -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris, Christopher Becker wrote: A simple javascript:back() approach is not feasible (nor desirable) [...] [snip] Could someone provide insight on the best approach to allow

Revising user input

2007-03-14 Thread Christopher Becker
Hi; I am using Struts 1.2.7, and am developing a user form that employs the validator framework. Once validation is successful, I display the results back to the user on a JSP page, before final submission to the business layer for database update. At this point I would like to give the user

Maintaining session state in remote servlet form post

2006-01-12 Thread Christopher Becker
We have a struts app (v1.2.7) that uses Tiles for UI presentation, running in WebLogic 8.1. We are trying to implement a form whose action is to a remote servlet. The remote site actually generated the form details for us, and one of the fields provided is a hidden field entitled returnURL, which

Re: external URL in struts app

2006-01-05 Thread Christopher Becker
response and returns this response to browser. Michael. On 1/4/06, Christopher Becker [EMAIL PROTECTED] wrote: Greetings all; I have a Struts app (v1.27) and wish to add a user form whose ACTION is a URL that is external to the application ( a remote servlet). I want to provide a message sent

external URL in struts app

2006-01-04 Thread Christopher Becker
Greetings all; I have a Struts app (v1.27) and wish to add a user form whose ACTION is a URL that is external to the application ( a remote servlet). I want to provide a message sent confirmation page to the user, but dont know how to do this with an external form submission. Is there a way to

validation plug-in with multiple config files

2005-12-21 Thread Christopher Becker
I am developing a Struts (v1.2.7) app that has multiple struts-config files, but not utilizing modules, so web.xml has one init param with config files separated by commas, eg. init-param param-nameconfig/param-name

Re: accessing request attributes

2005-12-07 Thread Christopher Becker
. Same thing as c:out value=${toDate}/. You'd, of course, need to include TLDs for JSTL in the latter case. Hope this helps. ATTA On 12/6/05, Christopher Becker [EMAIL PROTECTED] wrote: I am setting request attributes in an Action class such as in the following example

accessing request attributes

2005-12-06 Thread Christopher Becker
I am setting request attributes in an Action class such as in the following example: request.setAttribute(toDate, toDate); request.setAttribute(acctNum, acctNum); Both variables toDate and acctNum are Strings. I then process the action by returning a mapping.findForward

Re: [Shale] Using standalone tiles?

2005-11-29 Thread Christopher Becker
I am using Tiles in a Struts (v.1.2.7) app, and also experienced an error when the Apache site was temporarily down. So to prevent this from happening in the future, what is the suggested solution? Removing the DOCTYPE element from the tiles-def.xml file does not seem appropriate - or is it?

Associating validation errors with input fields

2005-10-18 Thread Christopher Becker
I have a form in a Struts app (v1.2.7) that I amattempting to usein conjunction with the validator framework. I wish to associate the error messages directly with the input field that caused them (e.g.additional row in a table,etc.) I am using the html: errors/ tag and can see that the errors

Re: Associating validation errors with input fields

2005-10-18 Thread Christopher Becker
the html:text/. So, when an action error occurs, it will be displayed right below the html:text/ corresponding to the property. Regards, Ramesh M. --- Christopher Becker [EMAIL PROTECTED] wrote: I have a form in a Struts app (v1.2.7) that I am attempting to use in conjunction with the validator