You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by "Moser, Martin (Bbn)" <mm...@hp.com> on 2004/12/09 13:36:18 UTC

Actions returning XML

Hi,

I am using cocoon 2.0.4 and have some troubles with the return values of my actions.

The action returns a string, containing xml. This xml should be parsed in an xsl sheet, which is revieving the return value of this action.
But I am not able to access the xml tags in the style sheet.

Here is a sample code of the action:
		:
	String str = "<test>text</test>";
	map.put("MSG", str);
	return (map);

The code in the according style sheet:
	<xsl:param name="MSG"/>
	:
	<tr><td> <xsl:value-of select="$MSG"/> </td></tr>
	:

Now the browser is printing: "<test>text</test>"
If I have a look at the source of this html, via "View source Code" from the browser, I can see that the '<' and '>' signs are replaced by '&gt' and '&lt'.

But I want to have '<' and '>'  and not '&lt' or '&gt'. 
Is there any special way to configure actions to make them returning xml?

Thanks in advance!

Regards,
Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org