weblogic cipher SSL configuration steps
To specify the list of ciphers that WLS should use, follow these steps:
Edit config.xml with the list of ciphers under <ssl> of a server as below. The syntax to use them are:
<ciphersuite>string1</ciphersuite> <ciphersuite>string2</ciphersuite> <ciphersuite>string3</ciphersuite>
Add the following tag also under the <ssl> tab:
<use-java>true</use-java>
Example:
<ssl> <use-java>true</use-java> <enabled>true</enabled> <ciphersuite>TLS_RSA_WITH_RC4_128_MD5</ciphersuite> <ciphersuite>TLS_RSA_WITH_RC4_128_SHA</ciphersuite> <cert-authenticator></cert-authenticator> <hostname-verifier xsi:nil="true"></hostname-verifier> ...... </ssl>
In case of any ©Copyright or missing credits issue please check CopyRights page for faster resolutions.