I am trying to write a webservice to add new contacts to my existing contacts. I access my names.nsf file using the code below. I am new to Lotus Notes. Can anyone please post the code to access contacts in Java. Any related references would also be helpful.
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
DbDirectory dir = session.getDbDirectory(null);
Database basedb = dir.openDatabase("names");
Thanks..
Your original question did not mention the creating of a new document, only how to access contacts.
Based on your comment
the code in Java to create a new document in the names.nsf database (once you have a handle on it) would be...