User receives error running Data Quality plan on iWay Service Manager


Diagnostics

Product: iWay/OMNI
Release: 7709
Primary OS: Windows
Solution Date:

Symptom

\iway8\etc\dqc\bin\\..\lib\boot\cif?bootstrap*.jar`) was unexpected at this time

Problem

The user receives an error while running a Data Quality (DQ) plan on the iWay Service Manager (iSM) version 8.05.

Solution

This error occurs because the cif-bootstrap.jar was moved in Data Quality release 12.6.3 (C:\Program Files (x86)\iway8\etc\dqc\lib) to C:\Program Files (x86)\iway8\etc\dqc\lib\boot. 

Here are the steps to address this issue.

  1. Make a backup copy of the C:\Program Files (x86)\iway8\etc\dqc\bin\run_java.bat file.
  1. Edit the original file and change the :prepare_classpath section to the following:

:prepare_classpath

rem set CLASSPATH=

rem FOR /F "tokens=* USEBACKQ" %%F IN (`dir /B %DQC_HOME%\lib\boot\cif?bootstrap*.jar`) DO (

rem    SET cifboostrap=%DQC_HOME%\lib\boot\%%F

rem  )

rem set CLASSPATH=%cifboostrap%;%INITIAL_CLASSPATH%

set CLASSPATH=

set CLASSPATH=%DQC_HOME%\lib\boot\cif-bootstrap.jar;%INITIAL_CLASSPATH%

rem echo Using CLASSPATH=%CLASSPATH%