Since DUAS version 7.0.11 the JDE uprocs generate this error message when calling runubexml:
runubexml: <du_installdir>/bin/lib/libsqlite3.so: no version information available (required by …/system/libv64/libsoftokn3.so)
No impact in the batch, it runs fine,.
Release : 7.00.x
Component : Automic Dollar Universe
Sub-component: Application Server
To fix the issue follow the steps below
On Unix machine, follow the following steps
echo "Execution of ${UXSTRJDEXML_CMD} ${UXSTRJDEXML_ARGS}"
${UXSTRJDEXML_CMD} ${UXSTRJDEXML_ARGS}
Add the lines
if [ "${SYSTEM_JDE}" != "" ]; then
MY_JDE_LIBPATH="${SYSTEM_JDE}/lib:${SYSTEM_JDE}/libv64:${SYSTEM_JDE}/libv32"
LD_LIBRARY_PATH=${MY_JDE_LIBPATH}:${LD_LIBRARY_PATH}
LIBPATH=${MY_JDE_LIBPATH}:${LIBPATH}
SHLIB_PATH=${MY_JDE_LIBPATH}:${SHLIB_PATH}
export LD_LIBRARY_PATH LIBPATH SHLIB_PATH
fi