domino-designer-eclipse

Java compiler errors in DDE on new computer, works fine in old one

房东的猫 提交于 2021-02-05 08:36:52
问题 I have 2 computers running Domino Designer, On my new one I get java errors in a server based application and not on the old one. I have installed the required package on both machines and I have the same compiler set in prefs. The computer with errors is a new one running windows 10 and DDE 11.0.1 FP1 and the old one is running Windows 7 and DDE 11.0.1 there is probably some paths or something that I have forgotten to set but can't find it. what can be the cause of these errors on my new

Java compiler errors in DDE on new computer, works fine in old one

梦想与她 提交于 2021-02-05 08:36:39
问题 I have 2 computers running Domino Designer, On my new one I get java errors in a server based application and not on the old one. I have installed the required package on both machines and I have the same compiler set in prefs. The computer with errors is a new one running windows 10 and DDE 11.0.1 FP1 and the old one is running Windows 7 and DDE 11.0.1 there is probably some paths or something that I have forgotten to set but can't find it. what can be the cause of these errors on my new

Java compiler errors in DDE on new computer, works fine in old one

此生再无相见时 提交于 2021-02-05 08:36:12
问题 I have 2 computers running Domino Designer, On my new one I get java errors in a server based application and not on the old one. I have installed the required package on both machines and I have the same compiler set in prefs. The computer with errors is a new one running windows 10 and DDE 11.0.1 FP1 and the old one is running Windows 7 and DDE 11.0.1 there is probably some paths or something that I have forgotten to set but can't find it. what can be the cause of these errors on my new

How to fix it class not found exception in domino designer?

冷暖自知 提交于 2021-01-28 19:34:59
问题 here is my code when I trigger it it shows an error Dim jSession As New JavaSession Dim jClass As JavaClass Dim jObject As JavaObject Set jClass = jSession.Getclass("learn/MyClass") Set jObject = jClass.CreateObject Call jObject.myMethod() The error is : Ls2j error : Threw java.lang class not found exeption I have tried everything which I found on internet but error is still there with package name without package name class path or loaction but somehow its not finding the class kindly help

How to fix it class not found exception in domino designer?

喜你入骨 提交于 2021-01-28 19:22:40
问题 here is my code when I trigger it it shows an error Dim jSession As New JavaSession Dim jClass As JavaClass Dim jObject As JavaObject Set jClass = jSession.Getclass("learn/MyClass") Set jObject = jClass.CreateObject Call jObject.myMethod() The error is : Ls2j error : Threw java.lang class not found exeption I have tried everything which I found on internet but error is still there with package name without package name class path or loaction but somehow its not finding the class kindly help

How to access current logged in user email address in lotus script?

怎甘沉沦 提交于 2020-05-16 22:00:41
问题 I am looking to find the email address of the current notes client user who is logged in programmatically. Is there a way to do it ? I am accessing username with session but I need email address Thanks in advance. 回答1: From the Help database, part of an example for the getMailInfo method: Dim session As New NotesSession Dim db As NotesDatabase Dim mynotesdir As NotesDirectory Set mynotesdir = session.getDirectory("server name") Dim homeserver As Variant homeserver = mynotesdir.GetMailInfo

How to Fix error ls2j : threw java.lang class not found exception in lotus script?

青春壹個敷衍的年華 提交于 2020-04-30 09:27:17
问题 here is my code Dim jSession As JAVASESSION Dim jClass As JAVACLASS Dim jObject As JavaObject Set jSession = New JAVASESSION() Set jClass = jSession.Getclass("JavaAgentReporter") Set jObject = jClass.CreateObject Call jObject.myMethod() and I am invoking this onClick of ana action button 来源: https://stackoverflow.com/questions/61437425/how-to-fix-error-ls2j-threw-java-lang-class-not-found-exception-in-lotus-scrip

headless designer and ODP .project file

夙愿已清 提交于 2020-01-17 06:42:13
问题 we are testing a setup to automate building of NSF's using headless designer. when a developer pushes a change to a repository on github ultimately this will result in an update of an NSF that resides on a Domino server. local odp -> github -> local nsf with headless designer -> replace design nsf on domino server however we noticed that the process stops sometimes. as far as we can see headless designer cannot "copy" (or translate) the design elements from the ODP into a new local NSF. so

API to integrate with Domino

陌路散爱 提交于 2019-12-30 08:53:51
问题 I am a relatively newbie to Lotus/Domino world and have been tasked with the following Domino task. Access user's Domino mailbox (from a middleware server) and delete certain malicious emails from the same. Additional Background - There is a external security tool/process that analyzes all incoming email and can flag the email as malicious. In the event it is flagged as malicious then I want to delete this email from the respective user's inbox. The Domino server deployed in my environment is

Xpages an issue with jar file

帅比萌擦擦* 提交于 2019-12-25 08:48:03
问题 I've created a "*.jar" file with Intellij IDEA and added to IBM Notes Domino 9 with Code -- Jars -- Import Jar. I can see my packages in classes which stored in "Code -- Java") but i have an error when i try to use my jar in xpages code: I have a simple code on my test xpage: importPackage(com.ibm.ibateam.sources); var area = new Area("first"); getComponent("label1").setValue(area.getUnid()); but this code throws exception: Script interpreter error, line=2, col=16: [ReferenceError] 'Area' not