I’m adding a web front end to a Notes database and would like to process documents that are selected in a view. Most of the existing view actions use the NotesDatabase.UnprocessedDocuments property which is not supported on the web. I’ve come upon the following three design options:
1.) Collect all the documentuniqueid’s for each selected doc and pass them to a back-end agent. (See http://www.codestore.net/store.nsf/unid/EPSD-5GMT3B?OpenDocument ).
2.) Similar to option (1) except that an embedded view is used. (See http://brefere.com/notesnet/processselectedwebdocs.pdf ).
3.) A Java solution. (See ‘Examples: UnprocessedDocuments property’ in the Designer 6 Help).
I’m leaning towards either of the first two options as the existing view actions are written in LotusScript and my knowledge of Java is limited. I’d appeciate any feedback on which of these options is usually recommended or whether there’s a simpler means of processing selected documents on the web.
Thanks.