A C# .NET application calls a Lotus Domino web agent via HTTP. Within this agent we perform a lot of actions; creating new text file, attach it to a document, calculate the checksum, saving, etc… and we return some XML to the C# .NET application.
We now notice the following scenario:
1st call to this agent takes about 45 seconds
2nd call (and further on) takes about 5 seconds
Next day, again the same scenario…
After severe logging and timing, we’ve discovered a delay in the “Save” method of the NotesDocument class (only for the 1st call).
Is there some kind of hibernation mode for the Lotus Domino service or HTTP service? Or cache settings which can cause this issue?