Hi!,
Good day.
I'm currently evaluating the new version of xml calabash 1.0.9 and encountered an issue with one of our XPL which produce a text file output. We had been using XML Calabash 0.9.15 for almost 4years now.
SEVERE: It is a dynamic error if a non-XML resource is produced on a step output or arrives on a step input.
Is there a way to produce text output directly?
I tried to put a CDATA on the xslt but during output of Calabash it is not what I expected to be.
xslt snippet
<output>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
some inline data
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</output>
Calabash output
<output>
<![CDATA[
some inline data
]]>
</output>
What I'm expecting to be is
<output>
<![CDATA[
some inline data
]]>
</output>
Appreciate any help and thank you
very much.
Sincerely,
Gerald