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.