Hi,
I am using Xalan to transform an XML document into another XML doc. It works fine, however when I write out the resultamt XML it has the following ini it:
<?javax.xml.transform.disable-output-escaping?>
<<?javax.xml.transform.enable-output-escaping?>
cd_sts_acct<?javax.xml.transform.disable-output-escaping?>
><?javax.xml.transform.enable-output-escaping?>
R<?javax.xml.transform.disable-output-escaping?>
</<?javax.xml.transform.enable-output-escaping?>
cd_sts_acct<?javax.xml.transform.disable-output-escaping?>
><?javax.xml.transform.enable-output-escaping?>
What is this stuff and how do I get rid of it?
Thanks
G
-
XSLT transform (2 messages)
- Posted by: gareth stenson
- Posted on: November 10 2002 23:57 EST
Threaded Messages (2)
- XSLT transform by gareth stenson on November 11 2002 20:04 EST
- What Class by Chad Freeman on July 29 2010 11:11 EDT
-
XSLT transform[ Go to top ]
- Posted by: gareth stenson
- Posted on: November 11 2002 20:04 EST
- in response to gareth stenson
Fixed this myself. I was using the javax.xml.transformer, I needed to use the org.apache.xalan.transformer.* package.
It does not print out the escaping stuff now
thanks -
What Class[ Go to top ]
- Posted by: Chad Freeman
- Posted on: July 29 2010 11:11 EDT
- in response to gareth stenson
What class exactly did you use under that package? I am working with Cocoon and would like to try and specify the correct class for xalan processing.