Do not use WebLogic-specific SSL protocols

This rule will flag instances of the string literal "com.certicom.net.ssl" and "weblogic.net" in Java files. Applications containing these WebLogic-specific HTTPS protocols must be migrated before use on WebSphere Application Server.

Solution

The automated fix will change instances of "com.certicom.net.ssl" and "weblogic.net"to the IBM HTTPS protocol string "com.ibm.net.ssl.www2.protocol".

For example, code fragments such as

System.setProperty("java.protocol.handler.pkgs", "com.certicom.net.ssl");

and

System.setProperty("java.protocol.handler.pkgs", "weblogic.net");

will be changed to

System.setProperty("java.protocol.handler.pkgs", "com.ibm.net.ssl.www2.protocol");

For additional information related to this rule, see the IBMJSSE2 Provider.