lotus-domino

How to include self created Java files in Java agent

只愿长相守 提交于 2020-08-08 07:29:36
问题 In IBM Notes if I create a Java Agent, how do I then include my own created java files: So I created a cxmlCustom package and this I want to include in to the profileResponse. Note that import cxmCustom in the Java agent does not work.. Next to this I use the java class: Statuscode so that I can create an object which has for example these values: Statuscode = 406 Text = Not Acceptable Meaning = more text In the class StatusCodesList in which I create a bunch of statuscode objects and save

Integrate ViewerJS in Lotus Domino

江枫思渺然 提交于 2020-04-30 09:18:27
问题 Any idea of how to integrate ViewerJS into Lotus Domino? I tried to deploy ViewerJS folder into html directory on server, but without success. 回答1: Sorry, i forgot to specify index.html in URL. I type something like http://<server>/ViewerJS/#../<dbpath>/0/576B03A3CD9F0180C1257C860037F2B5/$FILE/doc.pdf instead of http://<server>/ViewerJS/index.html#../<dbpath>/0/576B03A3CD9F0180C1257C860037F2B5/$FILE/doc.pdf In this case seems to work 来源: https://stackoverflow.com/questions/27188208/integrate

Integrate ViewerJS in Lotus Domino

守給你的承諾、 提交于 2020-04-30 09:17:46
问题 Any idea of how to integrate ViewerJS into Lotus Domino? I tried to deploy ViewerJS folder into html directory on server, but without success. 回答1: Sorry, i forgot to specify index.html in URL. I type something like http://<server>/ViewerJS/#../<dbpath>/0/576B03A3CD9F0180C1257C860037F2B5/$FILE/doc.pdf instead of http://<server>/ViewerJS/index.html#../<dbpath>/0/576B03A3CD9F0180C1257C860037F2B5/$FILE/doc.pdf In this case seems to work 来源: https://stackoverflow.com/questions/27188208/integrate

How do I get/set Domino read status of messages via Domino COM Object?

坚强是说给别人听的谎言 提交于 2020-02-02 18:09:47
问题 I have an application that interacts with Domino via the Domino COM object. I can send, find, delete messages without problem but getting/setting the unread status does not work. The Domino COM object has method to get the read status but it always come back as read. Anyone have a workaround that works? I've had no success with anything I've found searching online. 回答1: Unread marks in Domino are a funny old beast. They're derived from multiple sources: whilst you have an internal table of

How do I get/set Domino read status of messages via Domino COM Object?

眉间皱痕 提交于 2020-02-02 18:01:30
问题 I have an application that interacts with Domino via the Domino COM object. I can send, find, delete messages without problem but getting/setting the unread status does not work. The Domino COM object has method to get the read status but it always come back as read. Anyone have a workaround that works? I've had no success with anything I've found searching online. 回答1: Unread marks in Domino are a funny old beast. They're derived from multiple sources: whilst you have an internal table of

Out of Office Agent Lotus Domino

怎甘沉沦 提交于 2020-01-17 04:49:10
问题 I need to Change Subject Of Out Of Office Message through Java. At the same time I wish to enable Out of Office through java. I tried something by myself like this : Document dc = db.getProfileDocument("OutOfOfficeProfile", s.getUserName()); Vector vc = dc.getItems(); for(int i=0;i<vc.size();i++){ Item it = (Item) vc.get(i); System.out.println(it.toString()+":::::::>>>>>>" + dc.getItemValueString(it.toString())); } I got the Item names as : $Name:::::::>>>>>>$profile_018outofofficeprofile_cn

Convert MIME to RichText

心不动则不痛 提交于 2020-01-16 12:22:49
问题 I would like to convert a domino document field of Data Type: MIME Part into a Data Type: Rich Text in backend with SSJS or Java ? I have tried to work with doc.computeWithForm(true, true); doc.save(true, true); but this piece of code has no effect. Hint: I can do this conversion with a notes client in frontend (open and save the document) without any problems. Any idea? Thanks in advance! 回答1: You may be able to do this as part of the usually-undesirable side effect of automatic MIME-to-CD

Convert MIME to RichText

帅比萌擦擦* 提交于 2020-01-16 12:22:28
问题 I would like to convert a domino document field of Data Type: MIME Part into a Data Type: Rich Text in backend with SSJS or Java ? I have tried to work with doc.computeWithForm(true, true); doc.save(true, true); but this piece of code has no effect. Hint: I can do this conversion with a notes client in frontend (open and save the document) without any problems. Any idea? Thanks in advance! 回答1: You may be able to do this as part of the usually-undesirable side effect of automatic MIME-to-CD

Convert MIME to RichText

二次信任 提交于 2020-01-16 12:22:06
问题 I would like to convert a domino document field of Data Type: MIME Part into a Data Type: Rich Text in backend with SSJS or Java ? I have tried to work with doc.computeWithForm(true, true); doc.save(true, true); but this piece of code has no effect. Hint: I can do this conversion with a notes client in frontend (open and save the document) without any problems. Any idea? Thanks in advance! 回答1: You may be able to do this as part of the usually-undesirable side effect of automatic MIME-to-CD