![](https://secure.gravatar.com/avatar/b683d1857e39160cfc821d52f293fcb2.jpg?s=120&d=mm&r=g)
On Thu, 2009-09-17 at 10:05 +0200, Frank Millman wrote:
<resource id="regionalManager" name="Regional Manager"> <resourceParameter id="buyerName" .../>
...
</resource>
<resource id="departmentalReviewer" name="Departmental Reviewer"> <resourceParameter id="buyerName" .../> </resource>
Here is the relevant section from the schema -
<xsd:attribute name="id" type="xsd:ID" use="optional"/>
The error message reported by XCE is 'ID buyerName is not unique'.
Any thoughts?
Sounds correct for me. The schema type xsd:ID defines a unique identifier inside the whole document. If there are obviously two IDs with the same value, this is an error. If dont want the scope of the ID to be over the whole file, you would need to use xsd:key or xsd:unique inside the schema. regards Daniel