"Error accessing product object method" in LotusScript agent accessing outlines

Hello,

I have a LotusScript agent that read (or create a outline entry if it doesn’t exist yet). For unknown reason, I sometime receive the following error:

“03/22/2005 08:57:42 AM Agent ‘openFolder’ error: Error accessing product object method”

What is strange though is that I could do exactly the same action 4-5 times without any problem… and then I receive an error. It seems to happen randomly.

I saw some people on this forum having a similar problem… but that was caused because the user haven’t designer access to the database.

However, on my application, the agent is run as the signer name (which is me), not as a web user… and I’m manager of the database.

Does some can help on this?

Thanks!

Pascal

Subject: “Error accessing product object method” in LotusScript agent accessing outlines.

On Error GoTo CodeError

CodeError:

Print "Error " & Cstr(Err) & “: '” & Error$ & "’ at line " & Cstr(Elr)

Subject: RE: “Error accessing product object method” in LotusScript agent accessing outlines.

Thanks… but this is usefull only for error handling.

I know exactly where the error occured.

It’s this line:

Call outline.Save()

However it could work 10 times in a row… and then It could bug (Error accessing product object method)… while doing exactly the same thing.

Pascal