xsl-list
[Top] [All Lists]

Re: open and closed tag merged into one using HTML output

2003-02-26 14:27:17
J.Pietschmann wrote:

David Smith wrote:

<textarea name="text"><xsl:value-of select="/root/description"/></textarea> but when it is parsed, as there is no /root/description element, or it's empty, it comes out like this:
<textarea name="text"/>


This should not happen if the output method was correctly set to HTML.
You should tell something more about your environment. Is the output
of the transformer really a stream?

Well, it is an output stream from a servlet. The actual object is a PrintWriter.

  String xslFile = "test.xsl";
  PrintWriter out = response.getWriter();
   StringReader sr = new StringReader(xml);

   //instantiate
   TransformerFactory tf = TransformerFactory.newInstance();
   //process style sheet
   try {
     Transformer t = tf.newTransformer(new StreamSource(xslFile));
     t.transform(new StreamSource(sr), new StreamResult(out));
   }

Any suggestions. I don't think I have done much wrong...

Dave Smith


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list