RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Knoll, Zach
s Users Mailing List Subject: Re: Boost Struts with XSLT and XML - JavaWorld.com This is one of the most well written articles I have ever seen. At first blush, I am having a difficult time deciding wether this technology is totally cool, or it is just such a straightforward presentation that I am t

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Ted Husted
a sense of how to > implement this beast. > > -Original Message- > From: Pete Carapetyan [mailto:[EMAIL PROTECTED]] > Sent: Saturday, February 02, 2002 12:17 PM > To: Struts Users Mailing List > Subject: Re: Boost Struts with XSLT and XML - JavaWorld.com > > This

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Matt Raible
to it. This article showing how to have the best > > servlet centric architecture (Struts) while cutting out the dead-weight > > (JSP) really hits home. I just wish they would've provided more code so > > people like myself who are new to xml can really get a sense of how to

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Jonathan Gibbons
t;[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> cc: Subject: Re: Boost Struts with XSLT and XML - JavaWorld.com I read this article and think that it is good - but there's a couple of things that I think need to happen before this architecture is "e

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Taylor Cowan
ry 04, 2002 11:01 AM To: Struts Users Mailing List Subject: Re: Boost Struts with XSLT and XML - JavaWorld.com I read this article and think that it is good - but there's a couple of things that I think need to happen before this architecture is "embraced." 1. There needs to be mech

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Chappell, Simon P
Message- >From: Matt Raible [mailto:[EMAIL PROTECTED]] >Sent: Monday, February 04, 2002 11:01 AM >To: Struts Users Mailing List >Subject: Re: Boost Struts with XSLT and XML - JavaWorld.com > > >I read this article and think that it is good - but there's a >couple o

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Dustin Aleksiuk
Matt Raible wrote: > I read this article and think that it is good - but there's a couple of things > that I think need to happen before this architecture is "embraced." One thing I don't understand, after reading the article, is how to keep the state of the form data displayed on the page. F

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Vaughan Jackson
Struts Users Mailing List > Subject: RE: Boost Struts with XSLT and XML - JavaWorld.com > > > I'm in the process of reading the article ... so no comments > on it yet, but I have done a little XSL/XSLT and am in the > process of converting my personal website to use

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Ted Husted
Vaughan Jackson wrote: > > A couple of naive questions. > > 1. Given that the authors of the article mention that the >Cocoon framework uses XML and XSLT to generate HTML >(among other formats), I assume their motivation >for using Struts is to gain the MVC framework. Is this >c

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Ted Husted
The ActionForms are just JavaBeans in the standard request or session scope, and available to any servlet process in the Application. Most of the other Struts elements are just application scope objects, which are also avaialble to any servlet process in the application, or request attributes (e

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Chappell, Simon P
>-Original Message- >From: Chappell, Simon P >Sent: Monday, February 04, 2002 11:32 AM >To: Struts Users Mailing List >Subject: RE: Boost Struts with XSLT and XML - JavaWorld.com > > >I'm in the process of reading the article ... so no comments >on it yet,

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-04 Thread Matt Raible
e still use it. > > I just saw the post from J. Gibbons, and it is NOT TOO EARLY. Nope. That's > wrong. It's time has come, at least for us to consider as developers. > > Taylor > > -----Original Message----- > From: Matt Raible [mailto:[EMAIL PROTECTED]] &

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Sean Willson
I have messed with both Cocoon using XML / XSLT extensively to render views to varying devices and also use the Struts Tiles framework to do the same. I found Cocoon very powerful for static XML documents but as soon as I started trying to hook dynamic content in (forms, JSP's, Servlets, Strut

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Ted Husted
Sean Willson wrote: > P.S. I am working on getting this submitted back to Jakarta or at least > Open Source it ... getting the company to do it isn't all that easy. > I certainly hope you are successful! The Velocity guys are also looking at ways XML/XSLT can be integrated into their applicatio

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Jeff Schnitzer
IMHO, internationalization is best done on the tail-end rather than up front. This is a little bit backwards compared to how you're probably used to doing it. My approach would be to scatter xml elements like throughout your base XML and XSLT transforms, making sure that they pass unmolested to

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Ted Husted
Jeff Schnitzer wrote: > I'm not just writing this to publicize a competing framework > (http://mav.sourceforge.net :-). I am beginning to wonder if maybe > there is some potential to merge it with the Struts codebase. It sounds > like Struts is being decoupled from JSP and generally moving in th

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Jeff Schnitzer
> From: Ted Husted [mailto:[EMAIL PROTECTED]] > > I think we are all onboard with view agnosticism now. Great! > Though, the Struts config file will accomodate any URI, and does not > prefer JSPs in anyway whatsoever. > > Personally, I'm liking the model we're seeing in X2 and VelServlet, > wh

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-07 Thread Thorbjørn Ravn Andersen
mandag februar 4 2002 kl. 06:43 PM skrev Dustin Aleksiuk: > "The most common way to generate HTML forms is through the Struts HTML > tag library, > which is not XML compliant and therefore unusable in conjunction with > XSLT." Does this mean that Struts generates HTML and not XHTML? If so, t

Re: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-02 Thread Pete Carapetyan
This is one of the most well written articles I have ever seen. At first blush, I am having a difficult time deciding wether this technology is totally cool, or it is just such a straightforward presentation that I am twitterpated. Thanks Todd "Todd G. Nist" wrote: > I have not seen this poste