Hey, who can help to solve the following problem?
In my relational db I have a column with XHTML fragments and want to bring it into my cocoon pipline the following way. DB ROW CONTENT: ----------------------- ...<P>foobar</P><B>.... GENERATOR: --------------- XSP that extracts this rows value by ... <TXT> <esql:get-string column="i.text"/> </TXT> TRANSFORMER: -------------------- XSL that tries to obtain this: ... <TD> <xsl:value-of select="TEXT/."/> </TD> THE RESULT THAT I WANT: --------------------------------- ... <TD> ...<P>foobar</P><B>.... </TD> WHAT I GET INSTEAD: --------------------------- ... <TD> <P>.... <--- only escaped text </TD> ... I also tried to use <esql:get-xml column="i.text"/> and <xsl:text disable-output-escaping="yes">. But without success. Whats wrong??? --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>