On 8/18/05, Eduardo Ribeiro da Silva <[EMAIL PROTECTED]> wrote:

> Anybody knows how I can generate JSP with struts tags with XSLT and pass JSP 
> to
> JSPProcessor, for compile them? Because I have tags that client browse simple
> don't known.

The strategy you are asking for is essentially:

    Application Code --> Generated JSP --> Compied JSP --> Dynamic Output

And it is not really practical, given the way that JSP works.  Itt
would force you to create, compile, execute, and throw away an
individual JSP page for every request.  Even if everything else was
instantaneous, the multi-second compile time for every JSP would be
deadly to response time.

Instead, the solutions being discussed in this thread are more along
the lines of:

    JSP --> Generated XML --> Post-processing XSLT transformation(s)
--> Dynamic Output

Where the XSLT transformations might be done on the server, or might
be done on the client.

Craig

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to