Application not working with https after upgrading to 2022.12

Issue #583 resolved
Muhammad Eissa created an issue

Description
After upgrading from 2022.06 FP3 to 2022.12, all application were not working on the https port 8443 and we found below error log in catalina log file:

21:55:25.730 SEVERE [main] org.apache.catalina.connector.Connector.<init> Protocol handler instantiation failed
        java.lang.ClassNotFoundException: org.apache.coyote.http11.Http11Protocol

To Reproduce
Upgrade from previous release with following configuration line in the ApliqoServer\conf\server.xml

<Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" maxThreads="200" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="D:/Program Files/cubewise/ApliqoServer/conf/canvas.keystore" keystorePass="NoPassWordSet" URIEncoding="UTF-8" compressableMimeType="text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json" compression="on" compressionMinSize="2048"/>

Expected behavior
Clean start to Appliqo-UX application after migration steps followed.

Screenshots

Workaround Applied:

Change the protocol in the configuration line to HTTP/1.1

<Connector port="8443" protocol="HTTP/1.1" maxThreads="200" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="D:/Program Files/cubewise/ApliqoServer/conf/canvas.keystore" keystorePass="NoPassWordSet" URIEncoding="UTF-8" compressableMimeType="text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json" compression="on" compressionMinSize="2048"/>

Comments (3)

  1. Log in to comment