On Mon, 8 Jul 2002, Manfred Riem wrote: > Hi there, > > I've got a question about the XSLT stuff available in JSTL. > I want to be able to do the following thing. > > 1. Load the XML document from a specific URL > 2. Load the XSL document from a specific URL > 3. Add runtime parameters to the transformation > 4. Do the transformation. > > In the examples I've seen 1,2 and 4 done, but not 3. > Is it at all possible? Or is this for a future version > of the library?
Yes, all these are possible. For (1) and (2), you can use the <c:import> and <x:parse> tgs. For (4), you use <x:transform>. For (3), add <x:param> subtags to your <x:transform> tag. -- Shawn Bayern "JSTL in Action" http://www.jstlbook.com (coming in July 2002 from Manning Publications) -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
