Hi,
I’ve read postings and a recent article about DIIOP connections using SSL. As far as I can tell everything is configured okay, but I continue to run into the following error:
DIIOP Server: SSL Handshake failure: SSL Error: Invalid peer
DIIOP Server: SSL Handshake failure: SSL Error: Invalid SSL message
The two error messages always appear in the log togther.
Here’s the set up:
-
The Domino server is configured to receive SSL DIIOP connection on port 63149. It allows username/password
-
TrustedCerts.class is on the classpath (I’ve tried this connection from a Servlet where classpath is set for WebLogic when it starts up and as a standalone where I set the classpath in the batch file running it.)
-
I run the following code in a servlet (or wherever):
String args = new String[1];
args[0] = “-ORBEnableSSLSecurity”;
notesSession = NotesFactory.createSession(host, args + “:63148”, name, pwd);
- I get the following errors:
Error From WebLogic:
NotesException: Could not open Notes session: org.omg.CORBA.COMM_FAILURE: minor code: 1 completed: Maybe
Error From Domino:
DIIOP Server: SSL Handshake failure: SSL Error: Invalid peer
DIIOP Server: SSL Handshake failure: SSL Error: Invalid SSL message
I’m wondering what can be missing. Are there other Server doc settings I need to pay attention to?
Thanks,
Terrence