lotus-domino

RPC/literal vs RPC/Encoded in Java WebService consumer

那年仲夏 提交于 2019-12-23 21:07:00
问题 I've a RPC/Encoded webservice provider that expose an attachment in base64 format. Everything work fine, this is the output <multiRef id="id16" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns4:Documento" xmlns:ns4="urn:interpro_Documento.rfc205.regione.toscana.it" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <descr xsi:type="xsd:string">smime.p7s</descr> <ext xsi:type="xsd:string">p7s</ext> <document xsi:type="soapenc:base64"

Is Interop.Domino dll thread safe?

拜拜、爱过 提交于 2019-12-23 20:31:05
问题 I am using Interop.Domino dll version 1.2 in c# application, and using multithreading to access multiple NSF file at same time by creating new session for each thread created (Max 5 threads at a time). For the large NSF files, I was getting the Notes error like memory segment overflow. To overcome this problem, i used Marshal.ReleaseComObject(object) to release the necessary Notesdocument, and NotesView object where ever possible. Now, the issues is like, i am able to access 2 NSF files but

Attaching multiple files through MIMEs to a document in Lotus Domino

倾然丶 夕夏残阳落幕 提交于 2019-12-23 13:06:24
问题 In our enterprise application we need to attach files to a document. We have the filename and the content of the file in a byte array. I found a solution to attach a file to a document with MIMEs: final MIMEEntity body = document.createMIMEEntity(fileName); final MIMEHeader bodyHeader = body.createHeader("Content-Disposition"); final boolean isHeaderValSet = bodyHeader.setHeaderVal("attachment; filename=\"" + fileName + "\""); if (!isHeaderValSet) { throw new ComponentException("Could not set

Full Access Administration mode for lotus notes

守給你的承諾、 提交于 2019-12-23 05:25:26
问题 I am writing a remote java agent for lotus notes agent. I need access some note which has acl restrict for the account. My client suggests using “full access administration” mode to view those document since the note acls is not allowed to be changed. After searching the api document of IBM, I did not see any method can turn on the full access administration mode. Does anyone know how to connect to the lotus notes server as “full access administration” mode? Just want to clarify, I am using

Simultaneous Lotus notes server-side agents

和自甴很熟 提交于 2019-12-23 02:41:02
问题 In my Lotus Notes workflow application, I have a scheduled server agent (every five minutes). When user's act on a document, a server-side agent is also triggered (this agent modifies the said document, server-side). In the production, we are receiving many complaints that the processing are incomplete or sometimes not being processed at all. I checked the server configuration and found out that only 4 agents can run concurrently. Being a global application with over 50,000 users, the only

Adding numbering to documents in Xpages

感情迁移 提交于 2019-12-23 01:36:07
问题 I needs some tips on this one, since I couldn't find anything on this, though it's probably pretty simple to do, but I can't think of a way. Ok, so I need a hidden field which will automatically compute so called id numbers for every document, the numbers must start from 00001 and forward and must never ever repeat. For instance i create a document with numberId = 00001 and another document which creates numberId = 00002, if I ever delete the first or second document, the third created

Best practices for version control for Lotus Notes/Domino development

不羁岁月 提交于 2019-12-21 10:22:40
问题 Please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to place it back in Notes Designer as a whole file). 回答1: The openntf project Design Catalog can be used for version control. It uses dxl technique mentioned by kerr. www.openntf.org

Best practices for version control for Lotus Notes/Domino development

泄露秘密 提交于 2019-12-21 10:22:34
问题 Please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to place it back in Notes Designer as a whole file). 回答1: The openntf project Design Catalog can be used for version control. It uses dxl technique mentioned by kerr. www.openntf.org

Source Control in Lotus Domino Designer

夙愿已清 提交于 2019-12-21 05:41:27
问题 We have been using Domino on a large project for years without any real source-control (other-than server backups). So, I was rather pleased when I noted the latest Designer 8.5.3 has potential integration with SVN. I was unable get SVN working just by following the original instructions for as already noted on Stackoverflow the update sites have moved. The solution posted on OpenNTF, only half worked, with Domino still croaking at GEF, Mylyn and some other missing plugins. After finding and

JDBC Ordeal: it shouldn't be that difficult (Partial Solved, New Errors)

一笑奈何 提交于 2019-12-20 06:38:40
问题 I have been trying to get the JDBC portion of the Extension library to work with our Oracle databases now for about 2 months. I've worked through various issues and misunderstandings. Currently, I can run the sample database that comes with the Extension Library with no apparent issues. But, it doesn't like something about my Oracle setup. My jdbc file is ojdbc14.jdbc and I am using ojdbc14 as my connection name. I put the ojdbc14.jdbc file in the WEB-Inf folder in the package explorer. I put