[
Lists Home |
Date Index |
Thread Index
]
- To: xml-dev@lists.xml.org
- Subject: Schema question
- From: "Alex Stankovic" <alex.stankovic@gmail.com>
- Date: Tue, 25 Jul 2006 22:25:14 -0400
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=g+Kg/PUdhWHcSUb2altNFJSVd92HmE2xUhweh9AXVOlM7CeZ9mHKHHNCZswW/g1Jz/dP34S8cStHYOnaN+SSavMN/lvuKYdZH7BF2vIBO0dvYUYQnVmHQAy0FL7zFxSr5yxJI4+0ycYLg2T0whg9mv80EJ70YlkCEB597/WRQS8=
Hello everybody,
I have to process a XML document that's looks like this (I don't have
a choice in the layout since I'm receiving the document from a third
party):
<?xml version="1.0" encoding="UTF-8"?>
<root>
<product>
<name>Product name</name>
<url>
<product>http://product.url.com</product>
<image>http://product.image.com</image>
</url>
</product>
<product>
<name>Product name 2</name>
<url>
<product>http://product.url.com</product>
<image>http://product.image.com</image>
</url>
</product>
</root>
As you can see element name "product" is used as a product container
and as the child of url element. I'm not XML expert but I think that's
not very smart. How can I write a XSD schema to validate this type of
document when an element name can mean two different things? Is it
even possible?
Thanks,
Alex
|