Hello Team
we are creating an integration between our AssystApp and cloud app,
we have issued a new public certificate and added it to the SSL Keystore
I can see from my browser the certificate is installed successfully and appearing
but when we trying to trigger the API using AssystREST
the vendor team are getting this error
::::JBO-29000: Unexpected exception caught: javax.ws.rs.ProcessingException, msg=javax.net.ssl.SSLHandshakeException: Received fatal alert: unrecognized_name
to resolve this issue I’ve added these llines to standalone.xml but yet it is still not working
any ideas ?
<server name="default-server">
<http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
<https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true" sni-host-name="true" />
<host name="default-host" alias="localhost">
<location name="/" handler="welcome-content"/>
<http-invoker security-realm="ApplicationRealm"/>
</host>
</server>