OK, let me try to be a little more specific. Here are the first few rows of the exclipsxwebfeed.xml page
- <rows count="73">
- <row id="75277" adi="A" schedule="2006-02-25T15:10:00" actual="2006-02-25T23:20:00">
<linecode order="1">LT</linecode>
<number order="1">908</number>
<line order="1">LTU International Airways</line>
<logo order="1">Inline_LTU.gif</logo>
<gate>B1</gate>
<city order="1" code="DUS">Duesseldorf</city>
</row>
- <row id="75278" adi="D" schedule="2006-02-25T16:55:00" actual="2006-02-26T00:45:00">
<linecode order="1">LT</linecode>
<number order="1">909</number>
<line order="1">LTU International Airways</line>
<logo order="1">Inline_LTU.gif</logo>
<gate>B1</gate>
<city order="1" code="DUS">Duesseldorf</city>
</row>
</rows>
Now, when I run the xml sheet that is in my previous post, the result is:
- <rswfeed>
Arrival and Departures
- <rows count="*">
- <row id="*" adi="*" schudele="*" actual="*">
<linecode order="*" />
<number order="*" />
<line order="*" />
<logo order="*" />
<gate />
<city order="*" />
</row>
- <row id="*" adi="*" schudele="*" actual="*">
<linecode order="*" />
<number order="*" />
<line order="*" />
<logo order="*" />
<gate />
<city order="*" />
</row>
</rswfeeds>
Note, none of the text nodes or attribute values are pulled in.
Allow me to be more complete. My intent is to create an xml document that references an xsl document for display. I do not have any control over the eclipsxwebfeed.xml document, it is provided via ftp, thus I can't connect that document to an xsl sheet. I believe I need to create a new xml document that I do have control over that will link to the xsl document and control the display, but my data is the eclipsxwebfeed.xml doc. I want to use just xml, xsl and html. I like the built in options of xsl for sort and don't really want to build those options in java or
vb. Thanks