Re: xslt in jsp

2003-03-09 Thread bobd
(pdf, csv, > whatever). > Michael Lee > > > > > > > > >From: Tom Ziemer <[EMAIL PROTECTED]> > >Reply-To: "Struts Users Mailing List" > <[EMAIL PROTECTED]> > >To: Struts Users Mailing List > <[EMAIL PROTECTED]> >

Re: xslt in jsp

2003-03-09 Thread Michael Lee
discussion! Another reason to let the server do it is you may want to just change the xsl and allow a different format (pdf, csv, whatever). Michael Lee From: Tom Ziemer <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users M

Re: xslt in jsp

2003-03-09 Thread Tom Ziemer
Hi, what I'm doing is this: I've got a custom tag in my JSP page, that uses a transformer to process the xml input. So my page looks like this: ... title="index.title" heading="index.heading"> Hope this helps, Tom On Sat, 8 Mar 2003, Jörg Maurer wrote: } definitly give JSTL a

RE: xslt in jsp

2003-03-09 Thread Guido
Why not simply doing, in your JSP: <%= bean.getFirst() %> <%= bean.getNick() %> (This is only the idea, you should use jslt or struts taglibs instead of retrieving bean properties via <%= bean.getXXX() %>.) With the XSL style sheet you can do (the browser does it) t

RE: xslt in jsp

2003-03-08 Thread Jörg Maurer
definitly give JSTL a try! Myself not applied it, but read book by Bayer Shawn - devoted taglibs to xml and xml transformation for usage in jsp. -Original Message- From: bobd [mailto:[EMAIL PROTECTED] Sent: Samstag, 08. März 2003 20:02 To: [EMAIL PROTECTED] Subject: xslt in jsp I have a