Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best approach for integrating Lotus Notes applications? [closed]

I'm investigating how we can interface a Java application with a Lotus Notes application. The Lotus Notes application is actually a workflow app.

We need to retrieve information such as:

  • Give me all documents which have this state.
  • Give me the content of notes document xyz.

We need to be able to modify information:

  • Modify field reporter of document 'xyz' into 'abc'

We need to be able to look at least at logging so that we have at least some trace when we develop our application.

like image 501
Francis Martens Avatar asked Nov 14 '22 04:11

Francis Martens


1 Answers

Setup a web service in Notes using Domino Designer and call it from Java.

The web service can then pass the data from Notes to Java in XML.

Hosting web services has been part of Domino designer since R7.

like image 168
Derek Avatar answered Nov 16 '22 16:11

Derek