Migrating CORBA components

(CR #463349) When you migrate CORBA components (PowerBuilder, Java, or C++), the migration tool does not generate CORBA/Java stubs automatically. If stubs are required, you must generate and compile them manually.

Workaround:

  1. On the command line, run:

    idl-compiler.bat p_test.idl -f DJC_HOME\genfiles\java\src -java
    

    where DJC_HOME is the EAServer installation directory.

  2. Change to %DJC_HOME%\genfiles\java\src\p_test, and run:

    JDK_HOME\bin\javac -d DJC_HOME\genfiles\java\classes -classpath DJC_HOME\lib\eas-servr-14.jar;DJC_HOME\java\classes *.java
    

    where JDK_HOME is the JDK installation directory