>I have a XML with data and XSL with the layout information AND JSP Java
code in it. How can I tell orion to:
>1. Put XML and XSL together and output JSP.
>2. Then compile the JSP output to html.
>
>I can get XML and XSL to merge together but the JSP compiler will not
compiler the JSP output. For example, here is the code.
>
>Thanks

I am not amazed that the JSP compiler does not get invoked. After all, what
orion sees is a request for an XML resource. I presume you would have to
somehow generate a second request (via RequestDispatcher.forward()) for the
generated JSP page after doing the transformation. This would imply that the
XML is never requested directly but through a servlet, which makes 2 calls
(include() to invoke the transformation, then forward() to call the JSP).

just my 2c
Christian


Reply via email to