RE: [OT] RSS w/ JSTL

2005-05-13 Thread Mike Millson
On Fri, 2005-05-13 at 12:28, Brian McGovern wrote: > Following up. Ive gotten it rss reading to work using jstl/xml > > but 1.1 version. Whats up? > If you are using 1.1 version tags, make sure your web.xml DTD is for J2EE 2.4. I have seen the case where 1.1 tags in combination with web.xml D

Re: AW: Struts Approach

2005-02-28 Thread Mike Millson
On Mon, 2005-02-28 at 12:27, Shey Rab Pawo wrote: > > On Mon, 28 Feb 2005 11:40:13 -0500, Mike Millson > <[EMAIL PROTECTED]> wrote: > > On Mon, 2005-02-28 at 10:22, Tim Christopher wrote: > > > So what you're saying is that if I include a separate DTO it do

Re: AW: Struts Approach

2005-02-28 Thread Mike Millson
On Mon, 2005-02-28 at 10:22, Tim Christopher wrote: > So what you're saying is that if I include a separate DTO it doesn't > really achieve anything extra - whilst at the same time creating more > code to maintain and reducing performance? Yes, that's what I think. > > Do you know if there is a

Re: AW: Struts Approach

2005-02-27 Thread Mike Millson
On Sat, 2005-02-26 at 11:26, Tim Christopher wrote: > > I'm also a little concerned that my domain object (Customer.java) is > also my DTO - is this good practice? Take a look at the following article: http://www.javaperformancetuning.com/news/roundup050.shtml I think the author makes a good poi

Re: advice needed: view+form needs data from an action

2004-07-28 Thread Mike Millson
What I do is populate the data in the form's validate() method if an error is found. For example, if an option collection for a pulldown menu is used on the input page, when validate fails, I create the option collection and store it as a request attribute. That way it is in scope when the request