so i currently have a Document that has a bunch of XML inside of it. Like listed Below
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="datalog.xsl"?>
<ROOT>
<Vehicle>
<ADGCode>44095650</ADGCode>
<Brand>Mercedes Benz</Brand>
<Model>ML 63 AMG (375 kW)</Model>
<NewUsed>Used</NewUsed>
<Year>2007</Year>
<Mileage>166000</Mileage>
<Price>289990</Price>
<Colour>Black</Colour>
<StockNo/>
<Extras>Airbag - Driver, Pass & Sides
Air Conditioner
ABS
Central Locking Key
Radio/CD
Cruise Control
Electric Mirrors
Electric Windows - Front & Back
Heated Front Seats
Multi-function Steering Wheel
Navigation System
Power Steering
Sunroof - Electric
Xenon Headlights
</Extras>
</Vehicle>
And it Translates in XSL Like this
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Image</th>
<th>ADG Code</th>
<th>Brand</th>
<th>Model</th>
<th>New / Used</th>
<th>Year</th>
<th>Mileage</th>
<th>Price</th>
<th>Colour</th>
</tr>
<xsl:for-each select="ROOT/Vehicle">
<tr>
<td>
<img width="200px">
<xsl:attribute name="src">
<xsl:value-of select="Images/Image"/>
</xsl:attribute>
</img>
</td>
<td><xsl:value-of select="ADGCode"/></td>
<td><xsl:value-of select="Brand"/></td>
<td><xsl:value-of select="Model"/></td>
<td><xsl:value-of select="NewUsed"/></td>
<td><xsl:value-of select="Year"/></td>
<td><xsl:value-of select="Mileage"/></td>
<td><xsl:value-of select="Price"/></td>
<td><xsl:value-of select="Colour"/></td>
</tr>
<tr>
<td colspan="9"><xsl:value-of select="Extras"/></td>
</tr>
<br />
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
But what i want to know is how can i modify the XML document to read a link from a live XML sheet that is hosted on a website that the Supplier gives me to display their second hand cars from their database?
I am not sure if it is something as simple and instead of putting in the link on the XML document, or do I have to do something else? I could not find answers anywhere else on the web.
Your help and guidance would be greatly appreciated.