Questions tagged [lotus]

Lotus Software is best known as the creator of Lotus 123 and Lotus Notes. The hugely successful launch of Lotus 123 spreadsheet software in 1983 revolutionized number crunching. The company followed with a SmartSuite of spreadsheet, word processor, presentation software, database manager and personal information organizer. They also have other products such as Lotus Domino and Lotus Notes.

883 questions
3
votes
2 answers

XPages: Wait for backend document to be saved and reload

In one of my XPages application (for Client, XPiNC) I have a link to "Edit" an attachment of this document. I use the technology described in this blog article to get the attachment edited. In that scenario I have three windows interacting: The…
Tode
  • 11,795
  • 18
  • 34
3
votes
1 answer

Why cannot I delete a Lotus Notes document?

in my Lotus Notes agent, I temporarily created some documents using a new form (with a richtext field in the form), and in the end of the code, I have "Call TempDoc.Remove(True)", when the program execute this line of code, I got error "Notes error:…
user2949042
  • 355
  • 2
  • 5
  • 15
3
votes
1 answer

Lotus Notes handling mailto links from HTML formated emails

I am sending emails to different users in my corporation. Some of our clients use Lotus Notes (8). These emails are generated by the server. Inside this email (HTML formatted), there is a link to a "mailto": Please
JFTxJ
  • 542
  • 6
  • 17
3
votes
2 answers

Want to use JUnit in Domino Designer / Java Beans - but keep getting a "Class not found" error?

I do the following: From the Package Explorer I select "New, Other, JUnit Test Case" I write this code: package dk.sample; import org.junit.*; import static org.junit.Assert.*; public class TestCase { @Test public void alwaysTrue(){ …
Jakob Majkilde
  • 227
  • 2
  • 9
3
votes
1 answer

XPages - error copying extension library controls

I have copied some code from one custom control to a new custom control. The code I copied contains some xe extension library and now all of these xe components show error messages saying that prefix xe is not bound (The prefix "xe" for element…
user1358852
3
votes
3 answers

Decrypt Lotus Notes NSF

I would like to decrypt Lotus Notes NSF files programmatically. Assume that for each NSF, I have the ID file and password needed to access the NSF. I am using Lotus Notes 8.5.2, Windows 7 SP1 64-bit. I am willing to use COM, C++ API, or C API. I am…
Jacob Quisenberry
  • 1,131
  • 3
  • 20
  • 48
3
votes
2 answers

Extract Lotus Notes Document's complete ACL from Java

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-…
Endo
  • 363
  • 1
  • 6
  • 20
3
votes
2 answers

Extracting attachments from lotus notes api using EmbeddedObject, Creating eo*tm file in system folder

I am trying to extract attachments using EmbeddedObjects, I am able to extract attachments but create em*tm temp files in system temp folder. EmbeddedObject embeddedObject=document.getAttachment(attachmentName); InputStream…
cvsr.sarma
  • 879
  • 1
  • 13
  • 29
2
votes
3 answers

DocumentContext not returning value

I am using following code in a Java Agent in Lotus Notes: Session session = getSession(); AgentContext agentContext = session.getAgentContext(); Document doc = agentContext.getDocumentContext(); But it is returning docvariable as Null value. I am…
Himanshu.MarJAVA
  • 475
  • 1
  • 11
  • 33
2
votes
2 answers

Get Private & Public Key For Encryption and Decryption of Mails in Lotus Domino

I know id file contains Private and Public Key. Public Key is inside Certificate under Id File and Private Key is inside id file but not in the certificate. The Question is how can i get those keys through my java code . I need to encrypt and…
Sachin Jain
  • 75
  • 2
  • 8
2
votes
1 answer

Notes error: JVM: Attempt to retrieve Java agent attachments failed

I'm having a problem when using a JDBC connection to POSTGREE database. Lotus appears on the console the following error: 16/02/2012 15:34:36 Agent error: JVMDUMP006I Processando Evento de Dump "systhrow", detalhe "java/lang/OutOfMemoryError" -…
2
votes
3 answers

Getting attachments from document

This is all I need, nothing too fancy: I'm creating an url from files that have been attached in the document, but the document is not opened. I have an xpage where I want to show attachments from specific document. How do I do this? Thank you in…
gkidd
  • 199
  • 4
  • 18
2
votes
4 answers

How to create an auto incrementing field in lotus domino?

I have an application in lotus domino with a field UNIDID-number(computed)... I want that every time a new entry is created, this field to increment by 1 and the new value should be stored in new record document.. I have a @dbcolumn formula which…
Bebo
  • 129
  • 2
  • 12
2
votes
1 answer

How can I delete a mail database in HCL Domino over Lotus Script?

I would like to delete a mail database over a notes agent. Sometimes the mail databases have a replica. Whats the best way to delete the mail file itself and also all other replicas (if they exist)? My code below looks like this, but it doesn't…
Baku Bakar
  • 442
  • 2
  • 8
  • 20
2
votes
1 answer

Custom client app - need ability to control where documents are saved

Okay SO. I need some guidance. I apologize for the length of this post, but I need to provide some details: I've got someone who is interested in me to do a small project for them. The application in general is a fairly straightforward employee…
trycatch
  • 568
  • 1
  • 8
  • 17
1 2
3
58 59