RE: ActionMapping Workflows

2001-07-11 Thread Rey Francois
David, I agree with you: tokens should be used. See my previous postings as well where I give reasons on why: http://www.mail-archive.com/struts-dev@jakarta.apache.org/msg01330.html. All these discussions about alternate scopes, workflow, custom context, transaction token, command token, etc. are

javax.servlet.jsp.JspException: No getter method for property changeResult of bean scheduleitem

2001-07-11 Thread Daniel Cabral
Hi fellow developers. I have a problem which I cannot seem to solve. Therefore I need your help. The jsp page cannot seem to find the getChangeResult() method of my Java class. My java class(WebEdiDeliveryScheduleItem) has the field changeResult.And the appropriate getter setter methods. All

Re: ActionMapping Workflows

2001-07-11 Thread Ted Husted
This sounds like a good strategy. I'd like to do very much the same thing, but with ActionMappings rather than tablibs. One reason would be to allow a form to be used both with and without a workfow. Ronel Sumibcay wrote: It hasn't caused any problems for me *so far*, but what i did was

Re: ActionMapping Workflows

2001-07-11 Thread Ted Husted
OK, so our initial draft working requirements are 1. Define which actions can follow the current action. 2. Define which actions are allowed to be executed immediately before the current action. 3. Define which action will follow the current action (dynamic action path). 4. Invoke another

RE: ActionMapping Workflows

2001-07-11 Thread Dan Powell
Another feature that might be nice to add here is the sense of optional actions. In this I'm thinking of the standard wizard interface, where there are three possible directions a user can travel through the workflow at any time: next, back, finish. If there are 5 actions total, with only the

Re: ActionMapping Workflows

2001-07-11 Thread Ted Husted
My first thought here would be to make this information available as a helper object that would read the forwards from the ActionMappings and bundle them up for the view. The view could then write whatever buttons it liked by reference to the helper object and the logic tags. Of course, someone

RE: Struts 1.1 To-Do - RowSets

2001-07-11 Thread Immanuel, Gidado-Yisa
Hi Craig, NOTE: if you decide to go this way, I'd prefer that the work be done on the commons version of these classes. I want to migrate Struts 1.1 to these (as soon as I go create releases over there). Sorry to bug you (I know you've been busy with Tomcat, Struts, JavaOne [what

JSP Standard Tag Library

2001-07-11 Thread Craig R. McClanahan
As many of you know, there is a current JSR (#52) to produce a standard tag library for JSP pages. Because these tags will be standard, the JSP page compilers can be enhanced to recognize them (just as they recognize standard tags like jsp:useBean) and generate optimized Java code. The initial

RE: New name for Components / Extended Templates?

2001-07-11 Thread Craig R. McClanahan
On Wed, 11 Jul 2001, Immanuel, Gidado-Yisa wrote: How about VIPs :) a. Very Important Pieces b. View In Pieces (hmmm...kind of has a negative connotation) or how about Tiles (just finished redoing a kitchen floor) I like it (tiles) :-) Craig -Original

Re: About extensons support mechanism...

2001-07-11 Thread Craig R. McClanahan
On Sun, 8 Jul 2001, Jonathan Asbell wrote: Craig could you explain a little more about to *modify* what happens next? For example, let's say you wanted to implement is the user logged on? checking as an event listener. How would the listener indicate back to the framework that

Re: *TED* - round 2 of documentation

2001-07-11 Thread Craig R. McClanahan
On Sun, 8 Jul 2001, Jonathan Asbell wrote: What would you like to do Craig? I'm going to take this as an opportunity to comment broadly on my preferences for documentation :-). STRONG PREFERENCES: - Final output format readable on the web. In practical terms, that probably means HTML

Re: *TED* - round 2 of documentation

2001-07-11 Thread Mark Femal
On Wed, 11 Jul 2001, Craig R. McClanahan wrote: On Sun, 8 Jul 2001, Jonathan Asbell wrote: What would you like to do Craig? I'm going to take this as an opportunity to comment broadly on my preferences for documentation :-). STRONG PREFERENCES: - Final output format readable on the

Re: Proposal to create custom Tag with Prefilled Values from Database

2001-07-11 Thread Craig R. McClanahan
On Mon, 9 Jul 2001, Lokesh Sahni wrote: Hi All I have very recently stated using Struts Framwork and being a part of a development team lot of web sites i have always had to create combo boxes and list boxes with prefilled values from databases. What I normally do for something

cvs commit: jakarta-struts/src/share/org/apache/struts/action Action.java

2001-07-11 Thread dwinterfeldt
dwinterfeldt01/07/11 22:12:04 Modified:src/share/org/apache/struts/action Action.java Log: Added a constant for storing a message in scope and a save method for putting ActionMessages into scope. Revision ChangesPath 1.23 +33 -4

cvs commit: jakarta-struts/src/share/org/apache/struts/action ActionMessage.java ActionMessages.java ActionError.java ActionErrors.java

2001-07-11 Thread dwinterfeldt
dwinterfeldt01/07/11 22:18:36 Modified:src/share/org/apache/struts/action ActionError.java ActionErrors.java Added: src/share/org/apache/struts/action ActionMessage.java ActionMessages.java Log: Added ActionMessage and

Re: About extensons support mechanism...

2001-07-11 Thread Roland Huss
Craig R. McClanahan [EMAIL PROTECTED] writes: In Struts 1.0, you could implement this by extending ActionServlet and override, say, processActionPerform() to add your check. That's certainly feasible, but it requires an understanding of the internals of ActionServlet. Or, you could extend

cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/html MessagesTag.java MessagesTei.java LocalStrings.properties

2001-07-11 Thread dwinterfeldt
dwinterfeldt01/07/11 22:24:21 Modified:src/share/org/apache/struts/taglib/html LocalStrings.properties Added: src/share/org/apache/struts/taglib/html MessagesTag.java MessagesTei.java Log: The message tag iterates through

Re: ErrorsTag (was /contrib)

2001-07-11 Thread David Winterfeldt
I checked in the changes I've made. There is an html:messages tag that iterates through the errors and is basically the same as the tag I had in the validator class except for the changes that were discussed. I've made an ActionMessages class and ActionMessage class. ActionErrors now extends