Hello,
I have a problem after I have upgrade Domino Server from version 7.0.4 to version 8.5.3 FP1.
The Server and the client in the Server work fine but I have some VB6/VBA applications that send mail via Server Domino.
In the Server (Windows 2003 R2) these applications use the admin profile and its DB mail.
With 7.0.4 all works but now when the application try to initialize the session an error occur and a windows appear "Impossible to initialize session".
Here below a sample of VB code:
*** Begin code ***
'This is the declarations:
Global nsess As New NotesSession
Global ndbd As NotesDbDirectory
Global ndb As NotesDatabase
Global ndoc As NotesDocument
Global nrtitem As NotesRichTextItem
Global nembed As NotesEmbeddedObject
'This is the code, I simply send a mail (this is a sample):
On Error Resume Next
nsess.Initialize
On Error GoTo 0
Set ndbd = nsess.GetDbDirectory(nsess.ServerName)
Set ndb = ndbd.OpenMailDatabase
Set ndoc = ndb.CreateDocument
ndoc.ReplaceItemValue "Form", "Memo"
ndoc.ReplaceItemValue "SendTo", "test@test.com"
ndoc.ReplaceItemValue "CopyTo", ""
ndoc.ReplaceItemValue "BlindCopyTo", ""
ndoc.ReplaceItemValue "Subject", "TEST."
data01 = Format(Now, "MM/DD/YYYY HH:MM:SS")
ndoc.ReplaceItemValue "PostedDate", data01
Set nrtitem = ndoc.CreateRichTextItem("Body")
nrtitem.AppendText Trim$("HELLO")
nrtitem.AddNewLine
nrtitem.AppendText ""
nrtitem.AddNewLine
Set nembed = nrtitem.EmbedObject(EMBED_ATTACHMENT, "", c.\filetest.txt)
ndoc.Save False, False
ndoc.Send False
*** End code ***
Please can you help me?
Thank you very much.
 
Feedback number WEBB8V6M39 created by Giuseppe Gallina on 06/11/2012

Status: Open
Comments:

Problem with VB applications after ... (Giuseppe Gallin... 11.Jun.12)
. . Did you regsrv32 the nlsxbe.dll (Carl Tyler 11.Jun.12)
. . . . OK! (Giuseppe Gallin... 11.Jun.12)
. . . . . . Yes (Carl Tyler 11.Jun.12)
. . . . . . . . Thank you very much again! Bye. (Giuseppe Gallin... 11.Jun.12) |