Get a hold of the current Session

Good day,How does one get a hold of a current Notes Session from VB.NET? Without having the user run the .net application and AGAIN enter their password?

Current .net code:

Try

        myNotesSession = New Domino.NotesSession

      



        myNotesSession.Initialize()

       

        Try

            myNotesDb = myNotesSession.GetDatabase("Server", "Database")



            myNotesView = myNotesDb.GetView("By Date")

        Catch ex As Exception

            MessageBox.Show("Error trying to open database. Will try alternate server.")

                  End Try

etc.

Subject: Get a hold of the current Session

That’s a matter of local user security. Unless the external program remains active with a global NotesSession object referenced at all times, the user will have to log in every time the session is created unless this setting has been selected on the File->Security->User Security dialog:

Subject: RE: Get a hold of the current Session

Thank you Stan. I only saw the post today.Thank you.