RE: Using Struts with XSLT

2002-01-04 Thread Taylor Cowan
[mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 10:40 PM To: Struts Users Mailing List Subject: Re: Using Struts with XSLT Hi, It's been quite a long way before I finally arrived at the same conclusion you guys have reached. That is use XSLT only for what it is designed fo

Re: Using Struts with XSLT

2002-01-03 Thread Sushant Patney
ssage - From: "Shengmeng Liu" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, January 04, 2002 9:09 AM Subject: Re: Using Struts with XSLT > Hi, > It's been quite a long way before I finally arrived at the

Re: Using Struts with XSLT

2002-01-03 Thread Shengmeng Liu
ECTED]>; <[EMAIL PROTECTED]> Sent: Friday, January 04, 2002 5:26 AM Subject: RE: Using Struts with XSLT Hi, Todd, I 100% agree with you. We did a small project using pure XSL transformation with Struts. We had to overcome the combo box selection, form validation, and error hand

RE: Using Struts with XSLT

2002-01-03 Thread Luke Studley
Hi Jan I'm relatively new to struts - but have come from a background of using XSLT with Servlet2.3 filters. Have to say this worked great, although as people have pointed out there is a performance hit. But I found with optimization I could reduce this to a nearly negligible amount (I also used

RE: Using Struts with XSLT

2002-01-03 Thread Lewis Lin
it's neccessary? Regards, Lewis -Original Message- From: Todd Fulton [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 03, 2001 10:42 AM To: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: RE: Using Struts with XSLT Yeah, I did the rendering/presentation end for a

Re: Using Struts with XSLT

2001-11-03 Thread Vic Cekvenich
Yet another way to use XSL: This way is very fast and offloads processing of the app. server for greater performance under load (and it has less net traffic). Consider... how we used CSS and that most browsers for the past year support XML. Those that do not support XML/XSL can javasript t

Re: Using Struts with XSLT

2001-11-03 Thread Ted Husted
The wall most people run into is that, AFAIK, you have to give up the tag extensions to use XSL at runtime, which is an issue for many Struts developers. Another way to use XML in a Struts application is to use the Digester to convert the XML into a JavaBean, and then pass that along in the requ

RE: Using Struts with XSLT

2001-11-03 Thread Todd Fulton
Yeah, I did the rendering/presentation end for an entire application using XSLT. The application was a time tracking invoicing type app that we delivered as an ASP (i.e. failed .com). Spent 18 months with that stuff. We were using the Sun xml processor and the Saxon xslt compiler. It wasn't str