Subject: Whitespace within tags
From: jennifer@xxxxxxxxxxx
Date: Fri, 3 Nov 2000 14:43:51 -0400 (EST)
|
Hi!
I've just started with this so forgive me if this is an oversimplified question
but I have looked around for an answer and am stumped.
I have written a procedure in pl/sql that accepts a query (among a few other
things) and generates an XML document using Oracle's XML SQL Utility
(XSU) using the xmlgen package in particular to generate the xml.
It generates the xml document fine except for these breaks that are
appearing within some of the tags which gives me errors when I try to
display them in the browser with the stylesheet. I tried adjusting the
linesize and nothing. I don't know why the xml generator is doing that and
can't find anything on troubleshooting this.
Has anybody ever ran into that before?
Thanks,
Jenn :-)
This is my XML document:
<?xml version = '1.0'?>
<?xml-stylesheet href="http://www.nbcakingston/customreports/xml-
stylesheet1.xsl" type="text/xsl"?>
<ROWSET>
<ROW num="1">
<ID>1</ID>
<NAME>Jane Austen</NAME>
<GENRE>DRAMA</GENRE>
<NUM_BOOKS>20</NUM_BOOKS>
</R
OW>
<ROW num="2">
<ID>2</ID>
<NAME>Emily Bronte</NAME>
<GENRE>DRAMA</GENRE>
<NUM_BOOKS>15</NUM_BOOKS>
</ROW>
<ROW num="3">
<ID>3</ID>
<NAME>Stephen King</NAME>
<GENRE>HORROR</GENRE>
<NUM_BOOKS>30</N
UM_BOOKS>
</ROW>
<ROW num="4">
<ID>4</ID>
<NAME>Jennifer Gilmore</NAME>
<GENRE>SCIENCE FICTION</GENRE>
<NUM_BOOKS>0</NUM_BOOKS>
</ROW>
<ROW num="5">
<ID>5</ID>
<NAME>Agatha Christie</NAME>
<GENRE>MYSTE
RY</GENRE>
<NUM_BOOKS>17</NUM_BOOKS>
</ROW>
</ROWSET>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|