185 pts.
 Connecting to Domino Server.
I am making one Login Form to connect Domino server using C#. Facing problem creating login.How should i go ahead?

Software/Hardware used:
ASKED: July 7, 2009  10:06 AM
UPDATED: July 7, 2009  8:51 PM

Answer Wiki:
You'll have to use the COM interface of Lotus Notes. Is it on a server? If so, you will initialize a session with the user name and password and go from there. It is quite easy really. Make sure your project has a reference to the Lotus Domino COM objects. sample for VB - works similar in C# Dim session As NotesSession Set session = CreateObject("Lotus.NotesSession") Call session.Initialize("secretPassword") Mike Kinder
Last Wiki Answer Submitted:  July 7, 2009  8:51 pm  by  SlikTool   1,830 pts.
All Answer Wiki Contributors:  SlikTool   1,830 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 
 10 pts.