DIIOP SSL port

Hi,

If the DIIOP SSL port is not 63149, how to pass the right port number through Lotus Notes java api? Can I have extra args?

My code to connect to Server is as follows:

String args = new String[1];

args[0] =“-ORBEnableSSLSecurity”;

Session session = NotesFactory.createSession(machinName:63148,args,testUser,testpassword);

I guess something like below:

args[1] = “SSLPort=12345”;

Thanks in advance

RB

Subject: DIIOP SSL port

I would try getting the genereated ior.txt file from the Domino server and using the ior directly in your connection code as it contains the hostname as well as the port number.

/Mikkel Heisterberg

Visit my blog @ http://lekkimworld.com

for posts on Notes/Domino, Sametime 7.5 development and how to use Java in Notes/Domino…

Subject: RE: DIIOP SSL port

Thanks Mikkel. That sounds doable.