strust.taglib.bean proposal

2002-04-03 Thread Nicolas De Loof
I've developped an ArgumentTag that allow to set attributes of the direct parent tag. so, with little evolution in MessageTag code (move doStartTag to doEndTag and inherit BodyTagSupport) + in struts-bean.tld (set bodycontent to JSP instead of empty), I can set bean:message arguments with a

RE: Servlet 2.3 filter

2002-04-03 Thread Craig R. McClanahan
On Tue, 2 Apr 2002 [EMAIL PROTECTED] wrote: Date: Tue, 2 Apr 2002 14:33:14 -0600 From: [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Servlet 2.3 filter Please forgive my ignorance if this is a well-known thing. I went to the

RE: Servlet 2.3 filter

2002-04-03 Thread Greg.Reddin
I too did not agree with some of Kevin's reasoning for using Filters in place of servlets. To me there's a conceptual problem: If there's no servlet what's the endpoint? You don't link to the filter. I think Kevin's suggestion was that the JSP is the endpoint. I think I prefer to point to

RE: Servlet 2.3 filter

2002-04-03 Thread Clóvis Yutaka Harada
You will still point to an action. I think a filter (or a possible servlet) should direct to the correct action using some rules and mappings. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 5:33 PM To: [EMAIL PROTECTED] Subject:

RE: Servlet 2.3 filter

2002-04-03 Thread Craig R. McClanahan
On Wed, 3 Apr 2002, Heath Chiavettone wrote: Date: Wed, 3 Apr 2002 12:21:53 -0800 From: Heath Chiavettone [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: 'Struts Developers List' [EMAIL PROTECTED] Subject: RE: Servlet 2.3 filter Speaking of filtering, Our

RE: Servlet 2.3 filter

2002-04-03 Thread Craig R. McClanahan
On Wed, 3 Apr 2002 [EMAIL PROTECTED] wrote: Date: Wed, 3 Apr 2002 14:33:02 -0600 From: [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Servlet 2.3 filter I too did not agree with some of Kevin's reasoning for using Filters in

Re: anyone care to clarify difference between struts and JSTL?

2002-04-03 Thread David M. Karr
Craig == Craig R McClanahan [EMAIL PROTECTED] writes: Craig My advice to Struts users is as follows: Craig * If you're running on a Servlet 2.2 / JSP 1.1 container, you Craig will not be able to use JSTL (it requires Servlet 2.3 / JSP 1.2). Craig Go ahead and continue using

Re: strust.taglib.bean proposal

2002-04-03 Thread David M. Karr
Nicolas == Nicolas De Loof [EMAIL PROTECTED] writes: NicolasString setterName = set Nicolas + arg.substring(0,1).toUpperCase() Nicolas + arg.substring(1); Nicolastry { Nicolas System.out.println(setterName +setterName);