Subject:xsl files Author:Jayashree Desale Date:24 Jul 2002 09:39 AM
Hi,
I am working with following:
main.xsl calls a template in a file 'a.xsl", and a.xsl calls a template which is in file 'b.xsl".
I am using mainServlet from main.xsl, loginServlet from a.xsl. I want the control to come back to a.xsl and do a next step by calling different template. But somehow I am not getting a control back in a.xsl. I don't have problem putting all the logic in main.xsl, it works fine. But this file is getting too long.
In a servlet code I am using a.xsl to build transform in loginServlet and main.xsl in mainServlet.
Am I missing anything else?
Subject:Re: xsl files Author:Minollo I. Date:24 Jul 2002 09:48 AM
It's tough to say without seeing the code involved, and I'm not sure I
understand exactly what you are doing.
How are you calling templates from one XSLT to the other? Are you doing
xsl:call-templates or xsl:apply-templates? Can you at least post a few
lines of the code you have in main.xsl, a.xsl and b.xsl involved in the
operation you are describing?