I have Axis2 API hosted on Tomcat 8.0.26 version. I'm re-routing the Axis2 application from http://localhost1:8080/axis2/ to https://localhost:8443/axis2/. For testing purpose, I used Self-signed certificate and the secure link is working fine. But I need to use Veri-sign certificate. Just when I change the certificate with Veri-sign one, the link stops working. Here is my server.xml
<Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
SSLEnabled="true" maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="chap8.keystore"
keystorePass="rmi+ssl" />
I created this certificate by this command:
keytool -genkey -keystore chap8.keystore -storepass rmi+ssl -keypass rmi+ssl -keyalg RSA -alias chapter8 -validity 3650 -dname "cn=http://brm.abc.net example,ou=admin book,dc=jboss,dc=org"
I got the Veri-sign certificate in 2 files .crt and .key. I imported that to .jks format using the below command:
keytool -import -alias primary -keystore sslkey -trustcacerts -file brm.abc.com.crt -storepass ssl123
I am new to Tomcat so not sure how to resolve this! Thanks in advance!