Delimited Text Driver using the Java Interface

  • 7007185
  • 10-Nov-2010
  • 26-Apr-2012

Environment


Novell Identity Manager 3.6.1
Novell Identity Manager 4.0
Delimited Text Driver

Situation

The documentation for the Delimited Text Driver give instructions on how to configure the driver to use external java extensions. Following this information the driver will not be able to run, it will be reported to run, but it will not do any processing.

From the documentation

InputSorter
<input-sorter display-name="InputSorter Class">com.acme.MyNewClass</input-sorter>
<input-sorter-params display-name="InputSorter init string">MY CONFIG PARAMS</input-sorter-params>
....

Resolution

The configuration for this have changed, and the following configuration should be used instead:

<publisher-options>
    <configuration-values>
       <definitions>
          <definition display-name="InputSorter Class" name="input-sorter" type="string">
             <value>com.acme.delimitedtext.SortByModified</value>
          </definition>
          <definition display-name="InputSorter init String" name="input-sorter-params" type="string">
             <value>MY CONFIG PARAMS</value>
          </definition>

With this the driver will start, and process correctly.

Additional Information

Reported to engineering