Tagged Questions
The domino tag has no wiki summary.
22
votes
5answers
520 views
Generalizing the algorithm for domino tiling?
In this earlier question the OP asked the following problem:
Given a rectangular grid where some squares are empty and some are filled, what is the largest number of 2x1 dominoes that can be ...
6
votes
2answers
234 views
maximum number of dominoes can be placed inside a figure
Suppose some figure on the squared paper. Sides of the figure go straight on the lines of squared paper. Figure may have any (not even convex) shape. How to find the maximum number of dominoes (1x2 ...
5
votes
7answers
3k views
Best practices for version control for Lotus Notes/Domino development
The title says it all - please share how you do version control for Lotus Notes/Domino development.
I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc.
...
3
votes
4answers
614 views
Call to getEmbeddedObjects(); (Domino Server API) returns wrong results
The Domino server API getEmbeddedObjects(); returns the wrong result (zero) when a mail containing an attachment (as embedded object) is sent from the script.
Though an attachment is sent as an ...
3
votes
4answers
3k views
How do I select all documents from the last 7 days?
I have a view selection formula
SELECT @If( @Date(@Now) = @Date(@Created); @All; @False)
and I want it to select all documents from the past 7 days rather than just today's.
Thanks in advance for ...
2
votes
3answers
55 views
.NET - Consuming HTTP services on (Domino) server with form based authentication
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 ...
2
votes
2answers
399 views
TimeZone problems using Lotus Java/CORBA session.createDateTime(Calendar)
I am attempting to create Domino DateTime objects in arbitrary time zones using the Lotus Java/CORBA classes.
I appear to be successful for all time zones which have a base offset which is an ...
2
votes
2answers
2k views
Import custom Java classes into Server side javascript in Xpages (Lotus Domino 8.5+)
With Lotus Domino 8.5.1, one can use "standard" Java classes into server side Javascript (embedded into an Xpage), or Java classes available in the WEB-INF/lib folder. For example :
var ...
2
votes
2answers
655 views
Debugging a Domino/Notes DSAPI filter
I've built a DLL for Domino Server 8.5 for Windows and installed it as a DSAPI filter, but every time I restart Domino I get "HTTP Server: Failed to load DSAPI module C:\path_to_filter\filter.dll"
Is ...
2
votes
5answers
2k views
Seam and Dojo vs RichFace or IceFace
I am just scratching my head on using DoJo in Seam in place of RichFaces or IceFace.
I couldn't find any article or tutorial out there in the web. The reason for my question is that Iam coming out of ...
2
votes
4answers
226 views
How can I create human readable key for notes documents
For the documents stored in the database, I would like to create a human readable key to uniquely identify the document. e.g. PO20090110-001. How do I go about doing that?
2
votes
6answers
1k views
How do we get around the Lotus Notes 60 Gb database barrier
Are there ways to get around the upper database size limit on Notes databases? We are compacting a database that is still approaching 60 gigs in size. Thank you very much if you can offer a ...
2
votes
1answer
8k views
Lotus Notes, ID files, and how things are changing in new versions (8 and up)
For those who are not aware, Lotus Notes is a cool system, which has very powerful database replication abilities, and very strong certificate management and signing.
However that strong certificate ...
1
vote
4answers
84 views
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 ...
1
vote
2answers
96 views
Access Domino Server from asp.net
I picked up this project which used XML to access a domino server and returns data to a asp.net page. I know nothing about Domino.
The code that it is failing on is
objRequest.Credentials = new ...
1
vote
3answers
100 views
Feasibility of converting complex .NET application into Domino
I am the sole programmer for a web application that the company I work for has become very reliant on. The application manages assets, tracks maintenance and maintenance schedules, records downtime, ...
1
vote
1answer
112 views
How to add an event to a Custom Control in Lotus Domino XPages?
I'm developing an Lotus XPages solution. I have a Custom Control that I would like to have additional functionality in the form of an event call-back.
Is it possible to create a JavaScript callback ...
1
vote
1answer
114 views
Can FTSearch(Domino API) find mails sent between a particular hour or minutes
Could someone please let me know whether it possible to find mails sent between a particular hour or minutes using FTSearch(Domino API).
For example,
If a mail is sent from A to B at 5/27/2011 ...
1
vote
3answers
122 views
Any way to find out which NSF files are owned by the Domino Server
Could someone please let me know whether there is any way how we could recognize a NSF file whether it belongs to the User or the Domino Server.
For example, Domino maintains its own NSF file like ...
1
vote
2answers
138 views
External jars in Lotus Notes
I was testing external java code by placing them in the Java agents. Now, am trying to place jar files in our server's file system in the jvm/lib/ext directory. An entry hasnt been made in the ...
1
vote
5answers
360 views
Calendar integration to Domino (Lotus Notes)?
How do I integrate with a Lotus Notes Domino server? I know there are several versions and the answer would be different for each one, but advice on any version would be great at the moment as I ...
1
vote
0answers
397 views
How to get HTTP Headers (Authorization) in a Lotus Domino Java Agent?
I have an external application (non-Domino) that post data to a Domino Java agent.
I'm able to read the data by using the REQUEST_CONTENT CGI variable, all is good.
However, since I want to prevent ...
1
vote
3answers
556 views
XML from Domino Web Access' ReadViewEntries
I am using Domino Web Access to access a Notes server version 8.5 and retrieve calendar data in XML format. That in itself is not a problem, but i'm having a bit of a problem with the results. My url ...
1
vote
1answer
271 views
Lotus Notes Domino Redirect
I am trying to pass credentials via AJAX to a Domino Database to have it automatically login and return Data in JSON.
Domino seems to chop off everthing after the "?ReadViewEntries"
...
1
vote
1answer
358 views
Lotus Notes Domino API - Generate Value From Formula
Here's a tough one for you: I have a NotesForm object and I got the entire structure, including default values for fields, of which some are formulas. Now, I am creating some NotesDocument objects for ...
1
vote
2answers
502 views
Share a LotusScript library between databases
Is it possible to create a LotusScript library in one database and then access it from another database?
Without simply copying the library into each database that needs to use it.
What I would like ...
1
vote
2answers
1k views
Reading a remote URL in Domino LotusScript
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 ...
1
vote
2answers
172 views
How do I select all documents manager
I'm new to Lotus development and I need to create a view that shows where the user is manager of another database besides its own mail.
Thanks in advance for any help.
1
vote
1answer
263 views
Java, LDAP with MySQL, and authenticating users
There's a few moving pieces to this one, so I'll go through things fairly slowly.
I have a java web app that has registered a few thousand users, and stored them in a MySQL DB. The passwords for ...
1
vote
5answers
958 views
What is the JDBC equivalent to query an IBM Domino data store?
I need to query an IBM Domino data store that was populated using Lotus Notes from within a Java application. I am hoping that IBM followed the JDBC design pattern so that I can implement similarly ...
1
vote
2answers
2k views
Reading Lotus Notes & Domino Mailboxe using Interop.Domino.dll
I would like to populate the list of mailboxes from "Mail" folder of Domino from c# using the above API (Interop.Domino.dll).
I have no problems connecting to Notes, accessing the database.It is easy ...
1
vote
2answers
712 views
Domino 6.5 - close document in frameset - closes app
I'm working on a Domino Client application that opens documents up in a frameset.
When I click the save button it does some lotus script validation, adds to history field and etc then finally does a ...
1
vote
6answers
1k views
Can anyone offer feedback on my LotusScript agent?
Hi there I'm not a developer and so am unaware of best practices. I created this to bypass manual data copying of log data. This agent is for a single feed which I'll copy and adjust for each ...
1
vote
1answer
840 views
I need the sum of two columns in a view
I found this code that goes through and prints out csv for both columns. I later parse and count the two columns. I want to count it here instead of printing and counting later. I've been mucking ...
1
vote
3answers
399 views
How can I programmatically determine the creator of a Domino database?
I'm using the built-in Domain Catalog database to list all the databases on a particular Domino server. I'm creating a custom view to show certain information about each database. What I'd like to ...
1
vote
2answers
1k views
How can I export a list of databases resident on a given Domino server?
I have a Lotus Domino server with a truly astounding number of Domino databases on it, arranged in various folders.
Is there some means of exporting a list of all these databases, with their titles ...
1
vote
4answers
2k views
In a LotusScript Agent how do you get the name of the current server?
In a LotusScript Agent that is being run via WebQueryOpen, how do you get the name of the current server?
0
votes
1answer
63 views
How to Export Microsoft Exchange to Lotus Domino 8.0
I am using Microsoft Outlook Exchange server and want to Export it in Lotus Notes Domino server with my all emails, contacts, calendars, journals, tasks, etc.
Can any one tell me, which is the best ...
0
votes
0answers
39 views
Is there an API to control Domino ActiveSync features?
Like you have Powershell for controlling Exchange ActiveSync features, is there an equivalent for Lotus Domino? or an API that lets you control ActiveSync features in Domino?
0
votes
2answers
49 views
Xpages sometimes not rendering the full html code?
We're developing a document managment system with Xpages.
Sometimes rarely (I don't know when, that is what I'm trying to find out), when I open a document for editing, a bunch of controls ...
0
votes
1answer
175 views
SOAP-ERROR: Encoding: object has no 'REQUESTORS' property
I try to use Lotus Domino V7 Free Time Web service.
I code this:
<?php
$soap = new SoapClient('http://foo.com/cppfbws.nsf/busytimelookup?WSDL');
print_r( $soap->__getFunctions() ); ...
0
votes
1answer
48 views
Domino defrag - free version or paid [closed]
I've been using the free DominoDefrag tool available on openntf on a number of my companies servers and have had trouble free operation of the tool. We are upgrading servers to domino 8.5 and my boss ...
0
votes
1answer
69 views
Lotus Domino Designer: Add a button in the default calendar
I need to add a button to the calendar by default.
This button is a http link.
Like this:
Any idea ? I begin with Lotus Domino Designer.
0
votes
1answer
192 views
File Upload Control in Domino
I need to post a file to Domino Server from a PhoneGap Application.
Here is the PhoneGap File Transfer example
// !! Assumes variable fileURI contains a valid URI to a text file on the device
var ...
0
votes
1answer
95 views
FTSearch in Domino not working for Domino 851 server however it works fine for Domino 8
I have two Domino servers one having the version Domino 8 and the other having Domino 851. FTSearch API works fine with Domino 8 server(French server) and doesn't work fine with the Domino 851.
The ...
0
votes
2answers
72 views
How to get mail nsf file name after user login in domino
I need to get user's nsf file name after he logins in the system, for opening that mail file. Name is required since I am getting 4269 & 4457 error on login then I have to give mail file name for ...
0
votes
1answer
107 views
Checking connection status with Domino server
Is it is possible to check the connection status with Domino server using a C# API?
I have a C# application, and I have to check if the connection with the Domino server is still alive or thr Domino ...
0
votes
0answers
72 views
Domino Designer - Show Single Category in Calendar View
Is there any way to use the Show Single Category feature within a calendar view?
The problem I have is that the first field in the view needs to be sorted based on the category that it will be ...
0
votes
0answers
67 views
Connect Websphere Portal with Sametime
I'm trying to show a portlet in IBM's Websphere Portal that connects to Sametime.
Each one of them are installed in different servers, and SSO is already active.
Sametime is on a Lotus Domino Server, ...
0
votes
2answers
108 views
Lotus Notes Development (Composite App? Or not?)
I am a new Lotus Developer looking for some advice. I am working with Lotus Notes 8.5.2 and using Designer to develop my applications.
I am designing a new application based on one existing database ...