As to refine my query. I am looking for similar XML files. A repository of similar XML files would be ideal for running transforms on to test my abilities.
For example I am looking for pairs of XML documents like the following.
code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<inventory>
<item>
<id>1</id>
<description name="Car" description="A fast car"/>
<color>red</color>
</item>
<item>
<!-- And continue as such -->
</item>
</inventory>
with a mate that would look like
code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<shop>
<product>
<name>Car</name>
<description>A fast Car</description>
<color>red</color>
</product>
<product>
<!-- And continue as such -->
</product>
</shop>
If you have any pairs and are willing to share of have any links I would really appreciate it.
Dan @ Code Town