Re: XSLT processors

2000-10-12 Thread Matthew Kennedy
> I would be interested in knowing how to even use an XSLT engine! I know I can get >JSP to output XML with > a header, but how do I actually pass the XML to the XSLT engine, and how do I >specify I want HTML or > WML output? Is it a servlet, and you just call upon it somehow from a JSP page or

RE: XSLT processors

2000-10-12 Thread KirkYarina
Take a look at the XSLT Programmer's Reference: http://www.bookpool.com/.x/micoqah72r/ss/1?qs=xslt At 12:56 PM 10/11/00 -0700, you wrote: >I would be interested in knowing how to even use an XSLT engine! I know I >can get JSP to output XML with a header, but how do I actually pass the >XML to

RE: XSLT processors

2000-10-12 Thread Kemp Randy-W18971
-From: Duffey, Kevin [mailto:[EMAIL PROTECTED]]Sent: Wednesday, October 11, 2000 2:57 PMTo: Orion-InterestSubject: RE: XSLT processors I would be interested in knowing how to even use an XSLT engine! I know I can get JSP to output XML with a header, but how do I actually pass the

RE: XSLT processors

2000-10-12 Thread Scott Stirling
1.5 MB. The plus is that you can use Xalan with other XML parsers that support DOM 2/SAX 1. Scott > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Sell > Sent: Thursday, October 12, 2000 3:10 AM > To: Orion-Interest >

Re: XSLT processors

2000-10-12 Thread Christian Sell
To my knowledge, Xerces is an XML parser, and Xalan does the XSLT stuff. Hope you got that right in your book :-). >I used Xerces to write a custom tag for a JSP book I co-wrote that's coming out >in a month or so. The tag looks like this on a JSP, for example: > >http://www.slashdot.org/slashdo

RE: XSLT processors

2000-10-11 Thread Reddy Krishnan
-Original Message- From: Duffey, Kevin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 11, 2000 4:30 PM To: Orion-Interest Subject: RE: XSLT processors You said it best..that is exactly what I am wondering. Right now I use JSP to do the "VIEW", thus I put scriplets for conditional

RE: XSLT processors

2000-10-11 Thread Duffey, Kevin
; -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 11, 2000 2:40 PM > To: Orion-Interest > Subject: RE: XSLT processors > > > Since folks are talking about this at the moment I'd like to chime > in. Basically your runni

RE: XSLT processors

2000-10-11 Thread Scott Stirling
Stirling West Newton, MA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Duffey, Kevin Sent: Wednesday, October 11, 2000 3:57 PM To: Orion-Interest Subject: RE: XSLT processors I would be interested in knowing how to even use an XSLT engine! I know I can get

RE: XSLT processors

2000-10-11 Thread jbirchfield
| | cc: | | S

RE: XSLT processors

2000-10-11 Thread robert
Since folks are talking about this at the moment I'd like to chime in. Basically your running the XML through an XSLT processor and you have a stylesheet which translates the incoming XML to whatever based on the rules defined in your stylesheet. I'd like to read more about how folks are using XS

RE: XSLT processors

2000-10-11 Thread Duffey, Kevin
I would be interested in knowing how to even use an XSLT engine! I know I can get JSP to output XML with a header, but how do I actually pass the XML to the XSLT engine, and how do I specify I want HTML or WML output? Is it a servlet, and you just call upon it somehow from a JSP page or when