Hi, I’m new in this forum. I have a question about Domino integration with other application. Which is the best way to design an architecture allow to integrate in real time mode Domino and another application? We need that Domino appliation send in real time to a java application new documents created.
Thanks in advance
Gigi
Subject: Integration real time
Depends on what you mean by “real time.” If you’re talking about as soon as the document is saved then you will have to write code at the document level to connect to the Java application.
If you can stand to wait some amount of time you can write an agent that will run over all new documents – connecting to the Java application as required.
Subject: RE: Integration real time
Donald, I have tested agent activated by event ‘created or modified document’, and integration flow works correct. But there is a delay time beetween inserting document and submitting agent (1,2, 3, …n minutes) that is not accettable. There is a way to simulate this event with rel tima methods?
Thanks Gigi
Subject: RE: Integration real time
Check the PostSave event of a form. Basically, once the document is saved Notes will call this routine.
At this point you can do whatever you’d like within the limits of LotusScript and the platform you are running on.