Questions tagged [lotus-notes]

Tag for programming questions related to Lotus Notes & Domino

It is appropriate to also include specific language tags when asking questions about communicating with Lotus Notes from those languages, for example using .NET or VBA to send an email, or to pull data from SQL into Notes.

3497 questions
5
votes
6 answers

What's wrong with Lotus Notes / Lotus Domino

I have a client who is using Lotus Domino for their web application/server platform. The client has two "web developers" who are more comfortable with Lotus Domino than more mainstream tools and technologies and are not enthusiastic about making a…
Anthony Gatlin
  • 4,407
  • 5
  • 37
  • 53
5
votes
1 answer

Jquery in XPages not working properly

I have an xpage and i have added jquery as script resource in it. Then i added some controls (edit,computed,output script with jquery function) and i am trying something dummy. Look at my xpage below:
mike_x_
  • 1,900
  • 3
  • 35
  • 69
5
votes
3 answers

Is a COMException of 0x80040154 always 'Class not registered'?

Does a System.Runtime.InteropServices.COMException of 0x80040154 always mean that the class isn't registered? I'm getting a COMException which says "Retrieving the COM class factory for component with CLSID {29131539-2EED-1069-BF5D-00DD011186B7}…
ssg31415926
  • 1,037
  • 2
  • 13
  • 21
5
votes
3 answers

How to build a Lotus Domino Database using SVN and Ant, Maven or Gradle

I'm having a database in Domino Designer, which is under Source-Control. Now i want to automatically build this database on a build-server. Does anybody know, how to create an ant-script or maven or gradle, whatever is working, to get a valid…
Marboro
  • 83
  • 6
5
votes
2 answers

Extracting email messages from a Lotus Notes NSF file using Java API

I'd like to use the Java API (Notes.jar), and I'm running a Windows box with Lotus Notes 8.5 installed. I know nothing about Lotus Notes, and I only need to do this one narrow task: extracting email messages from an NSF file. I want to be able to…
bajafresh4life
  • 12,491
  • 5
  • 37
  • 46
5
votes
1 answer

XPages Type Ahead fails while loading suggestions

We are using an inputText XPages control with Type Ahead for auto-completion. When typing in the search field, no suggestions appear. We have a list of comma-separated suggestions set in the Type Ahead properties pane, and the suggestions separator…
5
votes
3 answers

How do I display the copyright symbol in an XPage?

This seems like it should be simple. Using the escape sequence of © doesn't work when I enter this as text. The XPages engine keeps escaping the ampersand character, causing the string to be written as a literal.
Michael Sobczak
  • 1,045
  • 1
  • 24
  • 45
5
votes
6 answers

Lotusscript: From address when sending email as web user

I have a lotus-script agent which runs as Web User since I need to know who the current user is and process information accordingly. The problem is that when sending a email in this agent the From email address shows the web user email address…
pipalia
  • 911
  • 1
  • 12
  • 46
4
votes
3 answers

Unable to access Resource file in Lotus Notes Java Agent

I am facing issue accessing files imported to the resource section of Lotus Notes Java Agent (Content Section). I am trying the bellow code getClass().getClassLoader().getResource("gift.png").getPath() but it return null every time this resource…
anix
  • 347
  • 4
  • 14
4
votes
2 answers

Unexpected behaviour in a Lotus Notes programmable table

I'm designing a workflow database in Lotus Notes 6.0.3 (soon upgrading to 8.5), and my OS is Windows XP. I have recently tried converting a tabbed table into a programmable one. This was so that I could control which tab was displayed to the user…
Mark B
  • 41
  • 2
4
votes
1 answer

Upgrading Lotus Domino from 8.5.2 to 8.5.3, custom template broken

I have a custom template that is deployed on Domino servers and used by customers for their mail boxes. The hierarchy is like this: StdRMail85 | Custom Template | User Mailfile This template has worked since version Lotus Notes/Domino 6.5…
Corv1nus
  • 4,523
  • 1
  • 26
  • 37
4
votes
3 answers

Convert embedded pictures in database

I have a 'small' problem. In a database documents contain a richtextfield. The richtextfield contains a profile picture of a certain contact. The problem is that this content is not saved as mime and therefore I can not calculate the url of the…
jjtbsomhorst
  • 1,667
  • 11
  • 28
4
votes
5 answers

How do I connect an SQL database to Lotus Domino Designer?

I am creating a Lotus Notes application which has to have dynamic combo boxes. The choices for the combo boxes need to be retrieved by selecting from a SQL database. I am new to Lotus Notes / Domino, I would love to know how to connect my SQL…
4
votes
1 answer

Creating animated gif image from binary data using C#

I'm creating a custom application in C# 2010 to copy images from Lotus Notes to sharepoint. I'm using domino to read the content from Notes. Notes has inline animated gif image and when i read the content it comes in bytes of base64Stream. If I save…
RSP
  • 231
  • 1
  • 3
  • 14
4
votes
4 answers

How do I get all the attachments from a .nsf(lotus notes) file using java

Steps followed : Took a back of my lotus notes as sample.nsf And then tried to read the attachments from the sample.nsf Code snippet : Database db = session.getDatabase("","C:\\Projects\\NotesToJava\\sample.nsf"); DocumentCollection dc =…
user1007180
  • 41
  • 1
  • 1
  • 2