Savita wrote:

Hi All ,

I have a xsl file and I am transforming it using xerces and Xalan.

In my xsl File I have someting like
<SQL>
some query where rownum &lt;=
</SQL>

I am getting a xml file as output.I expect that in xml file I should get
something like <=
but I am getting the same thing in xml file like &lt;=

Please help me solving this.




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




What you get in your result file depends on the output method you choose in your translation.
Your expectation of getting the ">" symbol in the output text would break the XML rules.


solutions:
Either create a CDATA environment around your SQL statement (preferabel method),
or change the output method to "text" (leads to non XML files)


That might help.
regards, hussayn

--
Dr. Hussayn Dabbous
SAXESS Software Design GmbH
Neuenh�fer Allee 125
50935 K�ln
Telefon: +49-221-56011-0
Fax:     +49-221-56011-20
E-Mail:  [EMAIL PROTECTED]



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



Reply via email to