Deprecated Functionality
|
Discontinued functionality initially remains in INUBIT and can continue to be used. However, no further development or updates will be made to it. This functionality may be removed in an upcoming release. Therefore, switch to one of the recommended alternatives as soon as possible. |
Also, have a look into the list of removed functionality.
9.0.2
Application - Process Engine
The OpenSSL style configuration is deprecated with Tomcat 10.
With Tomcat 9, OpenSSL style configuration is supported like this:
<Connector port="8443" protocol="org.apache.coyote.http11.Http11Nio2Protocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="/absolute/path/to/keystore.jks" keystorePass="<keypass>"/>
With Tomcat 10, OpenSSL style configuration is deprecated but default JSSE connector is supported:
<Connector port="8443" protocol="org.apache.coyote.http11.Http11Nio2Protocol"
maxThreads="150" SSLEnabled="true">
<SSLHostConfig>
<Certificate certificateKeystoreFile="/absolute/path/to/keystore.jks" certificateKeystorePassword="<keypass>" type="RSA" />
</SSLHostConfig>
</Connector>
Reference: https://tomcat.apache.org/tomcat-10.0-doc/api/org/apache/coyote/http11/Http11AprProtocol.html
Impacts:
-
Application - Process Engine
9.0.0
BPC - INUBIT WebApp
Support for Ajax Jump functionality in Technical Workflows is being discontinued. This is used by WebApps to redirect workflow execution on a task generator through a jump.
The functionality can still be used in INUBIT, but will no longer be updated.
Alternative:
-
Explicit use of HTTP/REST input listeners in the workflow and explicit calling of these endpoints when using Ajax requests in a WebApp
Impacts:
-
BPC - INUBIT WebApp