Action required to correct this issue,
First remove the Oauth Toolkit,
Then Goto Policy Manager;
Tasks -> Manage Encapsulated Assertions
click on the first Encapsulated Assertion, hit shift scroll to the last one and click (Highlight all) Or highlight at least all OTK
And then choose to remove,
Choose the OTK Folders in policy manager bottom left pane, right click and remove.
Second change the piped messages by modifying the gateway.sh as below,
chmod 755 /opt/SecureSpan/Gateway/runtime/bin/gateway.sh
cp /opt/SecureSpan/Gateway/runtime/bin/gateway.sh /opt/SecureSpan/Gateway/runtime/bin/backupcopygateway.sh
vi /opt/SecureSpan/Gateway/runtime/bin/gateway.sh
Change following line from;
exec "${SSG_JAVA_HOME}/bin/java" ${JAVA_OPTS} -jar "${SSG_HOME}/runtime/Gateway.jar" "${SSGARGS[@]}"
to;
exec "${SSG_JAVA_HOME}/bin/java" ${JAVA_OPTS} -jar "${SSG_HOME}/runtime/Gateway.jar" "${SSGARGS[@]}" > /dev/null 2>&1
Then restart the gateway process as below.
/opt/SecureSpan/Gateway/runtime/bin/gateway.sh stop
/opt/SecureSpan/Gateway/runtime/bin/gateway.sh start