On Thu, 2003-11-27 at 09:15, [EMAIL PROTECTED] wrote:
> I found the problem. The reason was that I used a CDATA section in my XSLT
> to output the <wt:form-template> tag like
> <xsl:text disable-output-escaping="yes"><![CDATA[ <wt:form-template
> action="#{$continuation/id}.continue" method="POST">]]></xsl:text>

Ah, ok. It's normal that doesn't work, everything in a CDATA section is
escaped, so the tag also isn't a tag anymore.

You can circumvent the interpretation of the {} by XSL by using them
double:
<wt:form-template action="#{{$continuation/id}}.continue" method="POST">

-- 
Bruno Dumon                             http://outerthought.org/
Outerthought - Open Source, Java & XML Competence Support Center
[EMAIL PROTECTED]                          [EMAIL PROTECTED]


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

Reply via email to