Lotus

Lotus Notes Diff Tool

限于喜欢 提交于 2019-12-03 15:11:33
Is there any diff tool for Lotus Notes which allows to compare scripts, design elements and documents? 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. I see this is an old question, and most of the other answers are a little outdated now, so I thought I would add some hopefully valuable information for those who should stumble upon this now. In Domino

【Filecoin周报】24期: Lotus devnet/8上线

自闭症网瘾萝莉.ら 提交于 2019-12-03 00:25:37
Steven Li、Taosheng Shi、Joss共同编制 Filecoin 是一个将云存储转变为一个算法市场的去中心化存储网络。 矿工通过提供数据存储和检索来获得原生代币(称为“Filecoin”或”FIL”)。 相反而言,客户通过付费使得矿工提供存储,分发和检索数据。 “Filecoin”的含义 (a)是网络 (b)是协议 (c)是网络上的代币 (d)是项目名称 路线图–测试网倒计时24天 2019年12月11日-测试网上线 当前版本 ▲ 开发网 go–filecoin v0.5.8 ▲ 开发网 Lotus–devnet/8 开发网运行状况 【go-filecoin】 ▲ 至发文,go-filecoin devnet 0.5.8 运行两周,由于前期发现的问题依然存在,网络运行不够顺畅 ▲ devnet-0.5.8 开发网至上周六晚高度为10000左右;区块高度低于预期,出块时间长于预期(30秒) ▲ go-filecoin代码重构持续进行中,主要改动集中在:根据新的 spec 对一些 actor 代码进行重构,包括 power actor, storage actor, miner actor 等 ▷ 采用 golang 1.13 版本 ▷ 合并新的 proving 代码 ▷ 目前参加 go-filecoin devnet 的矿工不多,期待下一个版本的推出 【lotus】

【Filecoin周报】22期:go-filecoin 0.5.8上线

这一生的挚爱 提交于 2019-12-03 00:25:15
Filecoin是一个将云存储转变为一个算法市场的 去中心化存储网络 。 矿工通过提供数据存储和检索来获得 原生代币 (称为“Filecoin”或”FIL”)。 相反而言,客户通过付费使得矿工提供存储,分发和检索数据。 “Filecoin”的含义 (a)是网络 (b)是协议 (c)是网络上的代币 (d)是项目名称 最新开发路线图 当前版本 1、开发网 go–filecoin v0.5.8 2、开发网 Lotus–devnet/6 开发网运行状况 【go-filecoin】 1、go-filecoin devnet 上周在0.5.7 版本上持续运行至周六(11.02)晚结束 △ 由于前期重力攻击的原因,0.5.7 版本数据不再具有参考价值 2、go-filecoin 开发者一直在考虑一个合适的重启时机,主要考虑两个选择: △ 在0.5.7上重启,但可能不能避免被再次攻击 △ 直接利用master代码重启,由于重构,可能碰到不可预料的问题 3、通过与社区成员的讨论,团队决定推出 0.5.8 版本,此版本主要包括: △ 根据更新的 Spec 所做的相关重构,最主要的改变的代码的模块化更强; △ 重力算法根据 Spec 重写,而且新的重力算法从第一个高度就开始生效,而不是之前的43000高度,这使得重力攻击变得不那么容易 4、周日(11.03),在经过 Staging 网络的简单测试后

Axis 1.4 log4j-1.2.8.jar incompatible with XPages?

两盒软妹~` 提交于 2019-12-02 18:13:31
问题 I'm trying to add some of the JARs from Apache Axis 1.4 into the WebContent/WEB-INF/lib directory. One of the JARs is log4j-1.2.8.jar . As soon as this JAR is added to the lib directory, all XPages in the NSF stop working. I just get an error 500 with the following message: "HTTP Web Server: Command Not Handled Exception". The following message is written to the error log: java.lang.RuntimeException: com.ibm.xsp.FacesExceptionEx: org.apache.commons.logging.LogConfigurationException: java.lang

Axis 1.4 log4j-1.2.8.jar incompatible with XPages?

烂漫一生 提交于 2019-12-02 09:25:30
I'm trying to add some of the JARs from Apache Axis 1.4 into the WebContent/WEB-INF/lib directory. One of the JARs is log4j-1.2.8.jar . As soon as this JAR is added to the lib directory, all XPages in the NSF stop working. I just get an error 500 with the following message: "HTTP Web Server: Command Not Handled Exception". The following message is written to the error log: java.lang.RuntimeException: com.ibm.xsp.FacesExceptionEx: org.apache.commons.logging.LogConfigurationException: java.lang.reflect.InvocationTargetException . . . . Caused by: java.lang.NoClassDefFoundError: org/apache/log4j

Where I can find ncso.jar?

好久不见. 提交于 2019-12-02 05:29:48
问题 I am trying to develop an application, which will remotely connected to a Lotusnote server and as I got to know, I should have ncso.jar file to add in my application for enabling remote access to the Lotus Note domino server. So would be appreciated to help me for downloading this file. 回答1: You can find ncso.jar in installed Notes Client or Domino Server directory in folder ... / data / domino / java 来源: https://stackoverflow.com/questions/26529625/where-i-can-find-ncso-jar

Retrieving changes made by a Java Agent on a document

我与影子孤独终老i 提交于 2019-12-02 05:00:32
问题 I am passing parameters to a Java agent from Lotus Script like this: Set db = session.CurrentDatabase Set doc = db.CreateDocument Set uiDoc = workspace.CurrentDocument Call doc.AppendItemValue("fileName", "SomeString" ) Call doc.Save(True, False) Set MyAgent = db.GetAgent("AgentName") Call MyAgent.Run(doc.NoteID) Set session = New NotesSession Set db = session.CurrentDatabase result = doc.GetItemValue("Result")(0) The agent says the following in Java: Session session = getSession();

Lotus Notes Java app can’t find notes.ini

我的梦境 提交于 2019-12-02 01:40:14
Both the systems described are Windows XP with Lotus Notes 8.5. I have a Java app (sample code below) that uses notes.jar to interact with Lotus Notes. The app works fine on a system that has notes.ini in the Lotus install dir of c:\Program Files\Lotus\Notes and the user ID file is in c:\Program Files\Lotus\Notes\Data . The user has to type a password to login to Lotus. This system has HKLM\Software\Lotus\Notes\MultiUser set to 0 (single user system). On this machine, the below code displays good values on the four println ’s. On a problem system, this app prints the four headings but blanks

Where I can find ncso.jar?

浪尽此生 提交于 2019-12-01 23:01:37
I am trying to develop an application, which will remotely connected to a Lotusnote server and as I got to know, I should have ncso.jar file to add in my application for enabling remote access to the Lotus Note domino server. So would be appreciated to help me for downloading this file. You can find ncso.jar in installed Notes Client or Domino Server directory in folder ... / data / domino / java 来源: https://stackoverflow.com/questions/26529625/where-i-can-find-ncso-jar

Ruby on rails workflow engine (like IBM WorkFlow)

孤街醉人 提交于 2019-12-01 20:24:34
问题 Is there any workflow imlementation in RoR? Several years i developed and supported a IBM Lotus Notes enterprise apps with IBM WorkFlow. This software provides possibility to draw business process scheme (e.g. someone creates document and send it to another employee, another employee makes some changees and send this doc to another employee or return to initiator etc) Now im hardly learning Ruby and RoR. And my boss asks - can we implement this functional with RoR? It would be great if there