lotus-domino

Reading a remote URL in Domino LotusScript

前提是你 提交于 2019-12-11 01:25:08
问题 I have a remote RSS feed which has to be transformed into Notes documents using LotusScript. I've looked through the documentation, but I can't find how to open a remote URL in order to retrieve its contents. In other words, some sort of wget- or curl-like functionality. Can anyone shed some light on how to do this? Using Java is not an option. Thanks. 回答1: Check out the NotesDOMParser class - available in LotusScript - which lets you (indirectly) pull XML from a remote URL and process in a

Lotusscript search windows directory for subdirectories and files. Recursion?

早过忘川 提交于 2019-12-10 22:26:59
问题 I'm trying to write a LS agent to scan a directory in windows eg:'C:\' for any files and sub-directories. For each sub-directory, it will go inside and search for more files and sub-directories and continues until there's no more to look for. I'm used to write recursive code to replace or remove characters in a long string but for this one I'm totally lost. Below is my code (it's a mix of code from the domino help file and one I found in IBM site): Sub Initialize Dim pathname As String,

Lotus Notes custom view received mail

拥有回忆 提交于 2019-12-10 20:35:51
问题 I am using lotus notes 8.5.2 on windows 7. I would like to create a custom view that shows all emails EXCEPT sent mail. In other words it contains: INBOX & ALL FOLDERS. Currently my ALL DOCUMENTS view has the following formula conditions: SELECT @IsNotMember("A"; ExcludeFromView) & IsMailStationery != 1 & Form != "Group" & Form != "Person" The SENT view has the conditions: SELECT DeliveredDate = "" & PostedDate != "" & !(@IsMember("S"; ExcludeFromView)) My thinking is that I should be able to

Extract Lotus Notes Document's complete ACL from Java

我的梦境 提交于 2019-12-10 20:17:55
问题 I'm trying to find a way to save the complete user list access privileges for a specific lotus notes document. I know I can get database-level ACL's from catalog.nsf, but not document-level access. Also the Author field of the document -I believe- won't list read-only access users. Does anyone know how to obtain the complete ACL of every user for a specific document? Any help is appreciated, thanks! Edit: spelling. 回答1: Simon is correct. It is non-trivial. Even though I would skip his

Domino R9.0.1 FP4: disable logging related to ImportConvertHeaders?

这一生的挚爱 提交于 2019-12-10 18:47:13
问题 Recently, we installed FP4, and now there are lots of messages on the console. It happens when a mailed document is opened or saved from a browser, using XPages. The rich-text fields in the mail are in MIME format. Lots of lines appear referring to ImportConvertHeaders, like: 25/06/2015 17:02:38,90 ImportConvertHeaders> Before ParallelList() 25/06/2015 17:02:38,97 ImportConvertHeaders> SendTo: > [cimpimsg.cpp, 2559] 25/06/2015 17:02:39,03 ImportConvertHeaders> After ParallelList() 25/06/2015

.NET - Consuming HTTP services on (Domino) server with form based authentication

你离开我真会死。 提交于 2019-12-10 17:39:55
问题 I am writing a utility in C# (.NET) which will use HTTP to request data from a Domino web server. However, this server uses form based authentication, not basic HTTP authentication. I am trying to find out how to code to do HTTP GETS/POSTS with a server that has form based authentication. I have tried every google query I can think of, but as soon as the words "form based authentication" are in the query, all of the results only pertain to implementing the service server-side, usually in ASP

Unable to fix “Syntax error, 'for each' statements are only available if source level is 1.5”

别来无恙 提交于 2019-12-10 17:27:45
问题 I am writing a Java Agent which uses parameterized collection types and enhanced-for loops. Domino Designer 8.5.3 then tells me to change the project's compliance level to 1.5 in a quick-fix action. If I do that, the project rebuilds and nothing changes. Nothing happens if I go to the project's Java Compiler settings to set it manually, or change it in the workspace settings either. How can I get rid of this error? 回答1: There is an annoying bug in Domino Designer. The "Compiler Compliance

Mercurial Setup for Lotus Domino Designer 8.5.3

孤人 提交于 2019-12-10 13:48:17
问题 Working on getting the Mercurial Source Control installed and working with Lotus Domino Designer 8.5.3. Been using Declan's powerpoint from Lotusphere 2012 "AD102: Source Control For The IBM Lotus Domino Developer" as a guide. What I've done so far is: Install 8.5.3 Client and Designer via the CI1LPEN.exe install file Enabled Eclipse plug-in install from designer preferences Did a File, Application, Install of 1.6.0 MercurialEclipse and 1.4.3 Mercurial Binaries from http://cbes.javaforge.com

POI 4 XPages installation (site.xml)

大憨熊 提交于 2019-12-10 00:50:16
问题 I find this website (http://poi4xpages.openntf.org/) for install POI 4 in domino designer. I download the zip file and follow the installation guide from https://my.webgate.biz/poi/documentation.nsf/viewdoc.xsp?docid=installguide In step 2: Import the update site from the ZIP file into the eclipse update site. I try to import the site.xml file but I get an error. The error is like this: Object variable not set(#91) dlgimportsite: click (line 9) I open site.xml and check line 9, the code is

Lotus Notes Diff Tool

强颜欢笑 提交于 2019-12-09 12:59:40
问题 Is there any diff tool for Lotus Notes which allows to compare scripts, design elements and documents? 回答1: If all else fails (and by "all else" I mean the often ridiculous corporate procurement system) you can always do a an export to DXL (or a Design Synopsis for code alone) and use any decent text editor with a diff function. It's not TeamStudio Delta, but it will get you where you want to go. 回答2: I see this is an old question, and most of the other answers are a little outdated now, so I