I am designing a domino application which will be taking data and writing it to an Oracle database.
In one of the design meetings, we decided to look at using a
servlet to do the connection to the domino database and, if there were new documents to post, send the data to the Oracle database via
JDBC.
Is it possible to have a servlet running which would check a domino database every say, 5 min or 20 min and, if necessary, write data to Oracle?
If so, can you point me in a direction as to how I should approach coding this? My other option would be to use a scheduled domino agent to connect using ODBC, but I was thinking that the servlet would be less resource intensive since it's always loaded.
Since it's domino, I'm restricted to 1.18 JVM.
Thanks in advance.
Steve