I posted this issue and i could solve it deleting from the WebLogic startups parameter the next:
-Djsse.enableSNIExtension=false
Can someone explain this?
I posted this issue and i could solve it deleting from the WebLogic startups parameter the next:
-Djsse.enableSNIExtension=false
Can someone explain this?
The parameter -Djsse.enableSNIExtension=false
disables SNI.
Let's say you go to endpoint endpointaaa.com/aaa. Behind this endpoint endpointaaa.com there could be multiple application servers, all with their own certificate. So /aaa could point to server A and /bbb sould point to server B. SNI let's you send the endpoint you are trying to reach in it's initial contact (SSL handshake I think?). This will let the receiving end know, to which application server you are trying to connect, so it can response with the right certificate.
If SNI isn't enabled, it's possible that a different application server responds with a different certificate.