java - It is possible that a weblogic ssl communication accept all certificates? -


i want implement client application information of weblogic server. communication has secure because weblogic server configure secure.

now i'm able establish ssl communication. following settings:

system.setproperty("weblogic.security.trustkeystore", "customtrust"); system.setproperty("weblogic.security.customtrustkeystorefilename", tmptruststore.getabsolutepath()); system.setproperty("weblogic.security.customtrustkeystorepassphrase", "somepw"); system.setproperty("weblogic.security.customtrustkeystoretype",  "jks"); 

it possible weblogic ssl communication accept certificates? make application more convenient in handling. think of solution similar override of x509trustmanager. if so, can give me example? otherwise can give me answer reasons?

no not possible. having ssl connection between 2 entities in 1 accepts data defeats purpose of having secure connection. either use non-ssl port convenience or configure trust stores security. can't have both. sorry.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -