I am calling a RSA webservice from a java client. I have a RESTful client in eclipse.
I am facing the SSL exception "Exception in thread "main" javax.net.ssl.SSLException: Certificate for <192.168.56.103> doesn't match common name of the certificate subject: ACM" .
Can anyone please share the document regarding how to call a RSA webservice through java. Sample code if attached will be appreciated.
Your Java client is expecting the host name part of the URL to match the common name part in th SSL certificate of G&L. If you are allowed to modify the hosts file then add ACM corresponding to the IP and use https://ACM:8443/aveksa/ in you Java client.
Alternatively you can have your own SSL certificate for the Wildfly server with a FQDN for your choice.