Prerequisites: Adding soft link indexes

Two indexes are required for the soft link feature.

If these indexes are not defined, the following warning message is displayed:
System administrator should add this index to the TEXTML index definition. softlink.id is not a valid key.

To add soft link indexes:

  1. Open the TEXTML Administration perspective.
  2. Connect to your server and Content Store.
  3. Expand the Content Store node to display the Index Definition branch.
  4. Right-click Index Definition and select Check out.
  5. Open the Index Definition Document in an XML editor.
  6. Under <indexes> add the following <index> elements:
    <index NAME="softlinks.extractor" SYNC="True" CUSTOMPROPERTY="True">
       <stringindex KEEPEXTRACTEDVALUES="True">
          <elements>
             <element XPATH="//softlink/@key" DEPTH="INFINITE"/>
          </elements>
       </stringindex>
    </index>
    <index NAME="softlink.id" SYNC="True" CUSTOMPROPERTY="True">
       <stringindex KEEPEXTRACTEDVALUES="True">
          <elements>
             <element XPATH="//softlink/@id" DEPTH="INFINITE"/>
          </elements>
       </stringindex>
    </index>
  7. Save, close, and check in the Index Definition document.