How to read encrypted document in notes using NCSO.jar

Hi,

I have an Email, which is encrypted from notus client(6).

I am trying to read that mail contents through JAVA code using following syntax,

lotus.domino.document doc;

doc.getItemValueString(label);

where “label” is mail contents(Body)

1)When I am trying to read through local API(Notes.jar) then this method(doc.getItemValueString) returns proper document(body) contents.

2)When I am trying to read same contents through Remote API(NCSO.jar) then this method returns null contents.

Here I would like to get all document contents properly as it is returning from Notes.jar

Why NCSO.jar returning Empty contents?

Can anybody suggest how could I get solution for this problem.

Thanks in advance.

Subject: How to read encrypted document in notes using NCSO.jar

Decryption requires the private key that is stored in the local notes ID file. NCSO.jar does not use Notes RPC and it does not use the notes ID file, therefore it can’t do the decryption.

Subject: RE: How to read encrypted document in notes using NCSO.jar

Hi Rich,

Thanks a lot.

In the remote access, it was surprised that an encrypted mail is unacquirable.

Is this the same specification regardless of the version of Domino?

Isn’t there how to acquire an encrypted mail with third party products etc.?

Is it Version specific?