Reputation: 101
We are writing a servlet code which will be restful https client posting request to a different server where restful webservice is exposed. The servlet client will be hosted in weblogic 12c server. Since it is a https one way ssl call , what configurations do i need do in weblogic to enable TLS 1.2 so that my servlet can use https protocol to communicate to the server?
Upvotes: 0
Views: 537
Reputation: 1256
If the https on the hosted web service is signed with a trusted CA, the client does not have to do any additional configurations.
If the certificate is self signed you will have to import the certificate to your weblogic's trust store (which is usually the cacerts in your jre/lib folder of the jdk running your weblogic
Upvotes: 1