[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Transformer adds unwanted newlines

Subject: Re: Transformer adds unwanted newlines
From: John English <je@xxxxxxxxxxxxxx>
Date: Sun, 05 Oct 2008 11:28:44 +0100
Re:  Transformer adds unwanted newlines
Michael Kay wrote:

You're doing a two-stage transformation here: first a transformation using a
stylesheet, which then feeds its output in the form of a SAXSource to a JAXP
identity transform which converts the SAXSource to a StreamResult.

I don't know why you're doing this or why it adds newlines, but it does mean
that the xsl:output is going to be ignored because the output of the
stylesheet is not serialized.

This sounds like a good reason.


What happens if you remove the (apparently unnecessary) second step?

Umm, being a bear of very little brain, can you explain what I need to change below to do this? Sorry to be so dense...

  SAXParserFactory spf = SAXParserFactory.newInstance();
  spf.setNamespaceAware(true);
  SAXParser parser = spf.newSAXParser();
  reader = parser.getXMLReader();
  stf = (SAXTransformerFactory) TransformerFactory.newInstance();
  String s = serializeTree();
  System.out.println("DEBUG: " + s);     // <------- DEBUG
  InputSource input = new InputSource(new StringReader(s));
  filter = stf.newXMLFilter(new StreamSource(stylesheet));
  filter.setParent(reader);
  StreamResult result = new StreamResult(response.getWriter());
  Transformer transformer = stf.newTransformer();
  SAXSource transformSource = new SAXSource(filter, input);
  transformer.transform(transformSource, result);

TIA,


----------------------------------------------------------------------
 John English              | mailto:je@xxxxxxxxxxxxxx
 Senior Lecturer           | http://www.it.bton.ac.uk/staff/je
 School of Computing & MIS | "Those who don't know their history
 University of Brighton    |  are condemned to relive it" (Santayana)
----------------------------------------------------------------------

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.