Hi all,
i am using movpy for accessing lotus notes using python, i think i do all ok but it seems something is going wrong because i can't print any db title even if i've opened the .nsf file.
My code:
and this is what i get:
----------------
<bound method CDispatch.Open of <COMObject <unknown>>>
False
Please can u help me?
Luca
i am using movpy for accessing lotus notes using python, i think i do all ok but it seems something is going wrong because i can't print any db title even if i've opened the .nsf file.
My code:
Code:
import win32com.client
from win32com.client import Dispatch
notesServer='Mail\wed\new\IT'
notesFile= 'Apps\Mydb.nsf'
notesPass = 'mypass'
session = Dispatch('Lotus.NotesSession')
session.Initialize(notesPass)
print "----------------"
db = session.getDatabase(notesServer, notesFile)
print db.Open
print db.IsOpen
print db.Title
and this is what i get:
----------------
<bound method CDispatch.Open of <COMObject <unknown>>>
False
Please can u help me?
Luca