I have created some Domino Server Users. And Now want to progaramaticaly add content to it using c# and Domino.dll.

Note: i did not find any way to manually add content (mails,calendar) of one nsf to another nsf file.

link|improve this question

45% accept rate
feedback

2 Answers

up vote 0 down vote accepted

If you are specifically looking for how to manually "add content of one nsf to another nsf", you can accomplish this using the CopyToDatabase method of the Document class. The method takes the target database object as its only argument, and returns a Document handle to the new document in that target database.

...
    Document doc2 = doc1.CopyToDatabase(db2);
...
link|improve this answer
feedback

The Domino.dll exposes a COM interface.
COM Interop tutorial explains in the first part what needs to be done.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.