If I understand your case you have something like this : you want some XML to be processed by <xsltags:style> Tag, and produce some JSP code with <html:xxx> Struts tags.
This fails because JSP compiler works this way : - scriptlets and JSP tags (that are declared by a <%@ taglib %>) are used to build the java code of the JSP. Tags are translated into methodcalls. - java code is compiled to a servlet - servlet is deployed on the container and gets the requests. Your XSL tag is translated to a method call on the Tag implementation, that transform XML and put the result on output. This output can be anything, JSP compiler has ended with your JSP ! You cannot produce JSP code with a JSP. Nico. > Hallo, > i have some new conclusion about the problem posted in the messagge "Struts > form with XML/XSL". > The server process the "html" tags, then process the "xsltags:style" (now i > use the JSTL taglibs for the XSL transformation) that output a text with > some "html" tags but they aren't parsed like Struts tag. So i have in output > to the client an HTML file with some "html" tags! > I'm searching a way to put the whole text (after the execution of > <xsltags:style xml="aaa.xml" xsl="aaa.xsl"/> i have > <html:form><html:text..../>...</html:form>) in the text that the Struts > parser bring like input... or something like this! > > I hope my problem is more understandable now... even if my english is a > little bit poor! > Please, help me!!! > > Giovanni > > > -------------------------------------------------------------------- - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

