Since OPENAM-4646, the classpath of the ssoadm command on Unix has changed to have the main lib directory jars before the classes and resources directories.
This means for example that any patched ssoadm classes copied into the classes directory won't be picked up since the classes directory comes latter in the path.
This does not impact the ssoadm.bat version.
Current:
CLASSPATH="@CONFIG_DIR@" CLASSPATH="${CLASSPATH}:${LIB_CP}" CLASSPATH="$CLASSPATH:$TOOLS_HOME/classes:$TOOLS_HOME/resources"
Should be:
CLASSPATH="@CONFIG_DIR@" CLASSPATH="$CLASSPATH:$TOOLS_HOME/classes:$TOOLS_HOME/resources" CLASSPATH="${CLASSPATH}:${LIB_CP}"
- relates to
-
OPENAM-7683 ssoadm does not work in 12.0.3-SNAPSHOT
-
- Closed
-