Re: Extensibility of struts

2001-11-14 Thread Oleg V Alexeev
Hello Stefan, I am ready to discuss struts extension ways. This year I put contribution to the struts project - ServiceManager. This contrib is a attempt to make struts extensible with some kind of plugins. Now I work under next version. It is interesting for me. Wednesday, November 14, 2001,

DO NOT REPLY [Bug 4864] New: - Add consultant

2001-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4864. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 4864] - Add consultant

2001-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4864. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Limits of custom-tags in JSP

2001-11-14 Thread Immanuel, Gidado-Yisa
I ran into this problem a couple weeks ago, and I just thought I would relay it to the group. We were in the process of putting a dynamically generated report together (quick and dirty) using struts. Here's a little bit of information about the platform we were running on: Platform:

Multiple controller servlets

2001-11-14 Thread Tim W Wilson
I would like some feedback on the subject of multiple controller servlets. I have seen some of the previous discussion in the archives. The basic problem has to do with modularity - both in the runtime and at development time. The current solution of multiple config files certainly solves the

newbie to Struts Framework

2001-11-14 Thread Catalfano Anthony
What is a good way to get started using the Struts framework? Anthony Catalfano Information Technology Analyst Deere Company 309-748-5201 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: newbie to Struts Framework

2001-11-14 Thread Ed Milic
Read the user guide and look at some of the examples that come with the download. Should be more than enough info to get ya going. From: Catalfano Anthony [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: 'Struts Developers List' [EMAIL PROTECTED] Subject: newbie to

DO NOT REPLY [Bug 4875] New: - Change Entries for BravePoint on Resources Page

2001-11-14 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4875. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Multiple controller servlets

2001-11-14 Thread Ted Husted
A fix for multiple struts-config has come along first, but the need for multiple resource files is just as great. Once both of these features are added, I believe the use-cases I've seen would be addressed. The downside of multiple servlets is 1) Since servlets are multi-threaded, there is

Re: request param/property decoupling in struts-html taglib

2001-11-14 Thread Ted Husted
I'm not sure how this would work. The request parameters are meant to match the properties on an ActionForm bean. If they do not match the ActionForm properties, then ActionForm will not be populated by the ActionServlet, and the purpose of the HTML tags is defeated. This is all done by

Re: Multiple controller servlets

2001-11-14 Thread martin . cooper
- Original Message - From: Ted Husted [EMAIL PROTECTED] To: Struts Developers List [EMAIL PROTECTED] Sent: Wednesday, November 14, 2001 2:18 PM Subject: Re: Multiple controller servlets A fix for multiple struts-config has come along first, but the need for multiple resource files is

Re: request param/property decoupling in struts-html taglib

2001-11-14 Thread Laurie Harper
Yes, this became clearer when I tracked down the code that actually popluates the form bean. The problem would be knowing which properties to populate with which parameters. The request would have to carry additional mapping data, which would certainly be less than clean. I think I can achieve

Re: request param/property decoupling in struts-html taglib

2001-11-14 Thread Laurie Harper
On Wed, 2001-11-14 at 21:06, Ted Husted wrote: Actually, now that you mention it, there are prefix and suffix properties to the ActionMapping, which might help you with this. If you specify a prefix and/or suffix in the ActionMapping for the form, the population routines prepend or append

[SUBMIT] LookupDispatchAction - how to handle multiple html:submit buttons

2001-11-14 Thread Erik Hatcher
As promised earlier today, here is my contribution to the multiple html:submit button saga (Ted, time to update your FAQ! :) Here is a breakdown of how to use it: struts-config.xml segment, note the parameter=action action path=/test type=edu.darden.TestAction