Hi Robert

mainly the returned XmlFragment that u retrieve from DB as String must be parsed before u can deal with it ... that is why u have the code string for the symbol "<"--- >

"&lt;" ... I faced this problem also but I didn't use XSP ...I implemeted a Transformer to get this String fragment and parse it and stream it out into the pipline to be proccesed as u want through ur stylesheet.

so u must parse the String before u deal with it.

I wish that will help

Mohamed El-Refaey


Robert Sösemann wrote:

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>
&lt;P&gt;.... <--- 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]>





---------------------------------------------------------------------
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]>

Reply via email to