Hallo zusammen!
ich hab mal wieder zwei Probleme..
1. Wie komme ich an das aktuelle ID-File des Notes-Users ran? Ich vermute mal das muss ich aus der notes.ini auslesen...aber wie mach ich das, oder wie stelle ich das am geschicktesten an?
Das ganze natürlich in C++..
2. Ich will eine Datenbank per API replizieren. (lokale Replik bereits vorhanden). Aber irgendwie funzt das net..
hier mein bisheriger Code:
LNReplicationOptions options;
LNReplicationStatistics statistics;
LNText fileList;
fileList.Append("verzeichnis1/verzeichnis2/Datenbank.nsf");
options.SetDirection(LNREPLICATIONDIRECTION_BOTH);
options.SetCloseSession(TRUE);
options.SetFileList(fileList);
options.SetFileType(LNREPLICATIONFILETYPE_SPECIFIC);
m_NotesSession.Replicate("hierDerServerPfad", options, &statistics);
die Session is ne globale Variable, die woanders schon initialisiert wird und beim Schließen des Programms geschlossen wird.
Danke schonmal für die Hilfe
MisterDa