0
votes

I was trying to generate a Lotus Notes Appointment using the Domino Java API DOMINGO. The appointment is created successfully in my local mail database and I was able to open it. But unfortunally there are no required attendees listet in the Appointment. After closing it, my field 'RequiredAttendees' is not there anymore, it has been removed. I tried to compare an Appointment created manually with a new one I generated by my Java application. The result can be found in the dropbox folder.

I can not figure out what is missing in my Java-generated Appointment.

Thanks for any help!

PS: I know this question was asked before. I tried the recommended solution for this problem but it didn't work out...

1
You're not likely to get any useful information unless you show your code. Also, can you please explain why you are using the Domingo API instead of the standard lotus.domino.* Java API?Richard Schwartz
Echoing Richards comment. If you are using Domino 9 there is a new LS/Java API call. IIRC it is NotesCalendar/NotesCalendarEntrySimon O'Doherty

1 Answers

0
votes

Since you're working with Java, why not work with the fabulous new Calendar Services REST API? You can download it directly from OpenNTF.org and have Domino do all the hard work behind the scenes. You can also work with full CRUD (Create, Replace, Update and Delete) support on all other Domino views and documents with the other siebling in Domino REST Services, Domino Data Services. The REST-API services open up a whole new world for application developers wanting to interact with Domino data.

Good luck!