Configure a check for uniqueness of product values
By default, the CCMS checks that product names are unique within a deployment, but you can configure it so that other values in the .product file are unique as well.
For example, consider the following template file for a
product:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE product PUBLIC "-//IXIA//DTD CMS Product//EN" "product.dtd">
<product id="id" base="">
<name/>
<productmeta>
<code/>
<description/>
<aliases/>
<productlines/>
<components/>
</productmeta>
<relatedproducts/>
<releases/>
</product>
The
name (specified in the <name>
element) must
always be unique within a deployment. You can configure the CCMS to check the uniqueness of any other element in the
.product file.You define the list of unique values in the releasemanagement.xml file,
inside the
For
example:
<uniquekeys>
element. For example, let's say that
you also wanted the product code to be unique within a deployment. In this case, you
add the following <key>
element to the
releasemanagement.xml file:
<uniquekeys>
<key type="PRODUCT" index="index_name" xpath="xpath"/>
</uniquekeys>
Where:index_name |
Is the name of the index defined for this field in the Index Definition document. |
xpath |
Is the XPATH of the element that must be unique. |
<uniquekeys>
<key type="PRODUCT" index="code" xpath="//*[contains(@class, ' product/code ')]"/>
</uniquekeys>
To
configure a unique value: