Hello,
Using Java and the Corba Api IIOP, on a Domino 6 server, I can’t find the right way to send a meeting accept response to the Chair of a meeting.
The problem is that such mail should have this fields (at least):
-
$REF (with the value of ApptUnid received in the original meeting Notification)
-
$RefOptions = “1”
-
Form = “Notice”
-
NoticeType = “A” !!!
-
and more…
The fact is that the Chair always receive a document with “NoticeType = I”
I tried severals methods, such:
-
newDoc.createDocument()
-
originalDoc.createReplyMessage(false)
-
originalDoc.copyAllItems(newDoc, true)
-
newDoc.makeResponse(originalDoc) (for the $REF attribute)
and, of course:
newDoc.appendItemValue(“NOTICETYPE”, “A”);
or
newDoc.replaceItemValue(“NOTICETYPE”, “A”);
and more…
ant then:
newDoc.send();
It seems that the Chair receive a document with OTHERS attributes than the attributes defined before sending the document. Depending on the attributes defined in the sending mail, their names… their values… it’s not very clear.
Does anyone know the way to get a “NoticeType = A” in the response received by the Chair ?
Thanks a lot for your help…
Dominique.