Server 6.5.1. - Client 6.5.3 or 6.5.4 - API Problems "Session.GetDatabase(..)" - I need help

Hi all,

We have installed Domino Server 6.5.1 and the client 6.5.4 (before 6.5.3).

The session object can be created and initialized without any problems:

Dim COMSess As Domino.NotesSession

Set COMSess = New Domino.NotesSession

COMSess.Initialize “ba178”

When we get the database object our VB6 program terminates:

Dim COMDB As Domino.NotesDatabase

Set COMDB = COMSess.GetDatabase(“ABAB/Server”, “hi.nsf”, False)

Why? Is it a “must” that the client and server are on the same release status (6.5.1 or 6.5.3)? Could it be the problem in my case?

Any help is very much appreciated.

Rgds,

Kurt

Subject: Server 6.5.1. - Client 6.5.3 or 6.5.4 - API Problems “Session.GetDatabase(…)” - I need help…

It’s not a version issue; your code never talks to the server. Have you tried going from NotesSession through NotesDBDirectory and using OpenDatabase? Some methods work better in COM than others.