Unable to connect via SSL/TLS from JBOSS EAP 7.4 container when deployed the application in OCP4
Hi Team,
I am unable to connect to my application deployed in JBOSS EAP7.4 container image via https. Below is the configuration made to my standalone.xml and my docker file
Docker File :
FROM artifactory.cibcdevops.com/virtual-docker-ocpcaas-certified-images/jboss/eap73-openjdk11-openshift-rhel8:7.3.7-5
EXPOSE 8443 8080 9990 9443
COPY /src/main/webapp/WEB-INF/standalone.xml /opt/eap/standalone/configuration/standalone.xml
COPY /src/main/webapp/WEB-INF/config/test_deptxn-api_cibc_com.jks /opt/eap/standalone/configuration/config/test_deptxn-api_cibc_com.jks
ADD /target/txnhistory-soapservice-0.0.1.war /opt/eap/standalone/deployments/txnhistory-soapservice-0.0.1.war
ENV TZ = Canada/Eastern
ENTRYPOINT $JBOSS_HOME/bin/standalone.sh -c standalone.xml
CMD ["/opt/eap/bin/standalone.sh", "-b", "0.0.0.0","-bmanagement","0.0.0.0"]
Standalone config :