Creating a domino session from Websphere Application server using a servlet

I am trying to Access a notes database from a servlet residing on a Websphere Application Server.

This is done by using the remote method. I am creating a session by using the followinh code.


String server = “172.19.17.3:80”;

String user = “testuser”;

String pwd = “test123”;

session = NotesFactory.createSession(server,user,pwd);


The user and the password arguments are clear. Now comming to the server argument I am not sure which port needs to be specified.HTTP or DIIOP.

The session is getting instanciated occationally. But regularly it is throwing an exception with no message excepting a “null”.

Product Versions


Lotus/Domino 6.0.1

WSAS 5.0

My Domino server is Configured for SSO.

Any help will be greatly appreciated.