lotus-notes

XPiNC 8.5.3 - Time Value shows Incorrectly

。_饼干妹妹 提交于 2019-12-23 05:46:11
问题 I have opened the document in the XPiNC (Version 8.5.3), the time values are showing wrongly. Note : Same I have tested in version(Version 8.5.2), there its seems to be correct. I have checked the values in document properties, the values are saved correctly. I am really confused on this, Should I need to do any settings for this...? Even I have tried with other PC with 8.5.3 version, there also I got same Issue :-(( Thanks in advance 回答1: 8.5.3 has had a couple of reported regression bugs

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

Can I access Lotus Notes' database?

旧街凉风 提交于 2019-12-22 18:28:55
问题 This is my first time working with Lotus notes so I only know how to use it. I am also a developer so I know a bit about databases. Currently I receive requests for adding users to AD accounts or disabling users from AD or even modifying their attributes in AD. These requests come to me through Lotus Notes. I was wondering that Lotus Notes has to have some sort of database so could I possible get access to these ESM requests through their databse? So what I am saying is, can I access these

Lotus Notes Automation: Notes.NotesSession doesn't implement Domino::ISession?

我的未来我决定 提交于 2019-12-22 17:48:30
问题 I'm trying to improve my Lotus Notes client code: Working: #import "...\IBM\Lotus\Notes\notes32.tlb" no_dual_interfaces raw_native_types CComPtr<IDispatch> session_dispatch; if(FAILED(session_dispatch.CoCreateInstance(_T("Notes.NotesSession")))) ... NOTESSESSION *session = static_cast<NOTESSESSION *>(*&session_dispatch); This gives me a valid NOTESSESSION object that is aware that it needs to go through IDispatch to actually invoke methods. I found some example code on the net, which looks a

Convert IBM Lotus Notes file to text

五迷三道 提交于 2019-12-22 10:11:05
问题 How can I convert an .nsf lotus file to a text file? i want to write a java program to read .nsf file which is on my system. i have tried it simply but it is showing non english character is their any way to get access them normaly. EDIT: That code is in .net and using any server's session, I just want to read .nsf file by java without creating any server's session in fact i have .nsf database. i just want to read as a text file.if there a way to parse .nsf with javacc,it would be better

Read Lotus Notes documents and items from NSF file with C#

时光总嘲笑我的痴心妄想 提交于 2019-12-22 05:39:11
问题 How can I get all Lotus Notes documents (e.g. mails and their content) from a Lotus Notes inbox from an NSF Files with C# and the usage of interop.domino.dll ? I want to use the following snippet: Domino.NotesSession m_session = null; ... this.m_session = new Domino.NotesSession(); this.m_session.Initialize(""); Domino.NotesDatabase db = null; this.m_session.GetDatabase("", "C:\test.nsf", false); Domino.NotesDocumentCollection col = db.AllDocuments; for (int i = 0; i < col.Count; ++i) {

Using a Dynamic View Panel

纵饮孤独 提交于 2019-12-21 20:37:14
问题 I am using a Dynamic View Panel to display various views inside a single XPage . This has resulted in a few problems. Firstly, column styling set inside the views is not displayed on the XPage (eg: making column headers bold). More importantly, while the view contains links to the documents inside the view, links are all appended with action=editDocument , which I would like to change to action=openDocument . However, I cannot find any way to change this property. 回答1: You need to use a

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