Lotus

Using jQuery UI datepicker in Lotus Domino - prev/next disappeared

故事扮演 提交于 2019-12-25 19:39:45
问题 I'm developing a Lotus Domino app that uses jQuery's datepicker. When I reference the jQuery code from code.jquery.com, I can see the prev and next arrows at the top of the calendar, but when I download this code from the site, put it in my NSF file, and reference it from there, the arrow graphics disappear. The calendar still works, and when I hover where prev and next should appear, I can see the title text. Just no graphics. Ideas? Heading code: <style type="text/css"> pre { display:none;

Lotus Domino Create Standard Location / Signature

时光怂恿深爱的人放手 提交于 2019-12-25 09:40:16
问题 Is this possible for my request? I would like to create a un-changaeable or definite (locations and signature) for each user on Lotus Domino..if possible on server-side, I do believe the only was creating a template for each user. Is there a possible way a template but dynamically changes on user logon so that his/her signature will vary also. Thanks guys.. 回答1: I would suggest looking at a 3rd party tool, for exampel Crossware Mail Signature. If I understand it correctly when talking to them

java.lang.UnsatisfiedLinkError: lotus/domino/axis/transport/http/NotesSocket.openConnection()V

给你一囗甜甜゛ 提交于 2019-12-25 08:53:05
问题 I want to test my domino web service consumer in intellij idea project I have c:/Notes in my environments variables Also I have all required domino jar files and also web service consumer %%object%%.jar and %%webserviceresource%%.jar but still I have an exception java.lang.UnsatisfiedLinkError: lotus/domino/axis/transport/http/NotesSocket.openConnection()V I understand that there is no some native method in my classpath. Maybe c:/Notes is not enough Could anyone help me with it? 来源: https:/

Search document in lotus notes

你。 提交于 2019-12-25 02:57:32
问题 I can't solve the problem with searching documents in lotus notes. I have a form SearchForm where placed a some fields (like date_from , date_to , document_title etc.) and button 'Run search'. I have a view 'SearchView' where I want to display the search results. When user enter the search criteria and click Run search button I want to display the SearchView with documents. But I don't how to write click handler of button Run search . Also I prefer to use Formula language to perform this

How can i write file ( pdf,txt,…) from NotesStream?

大兔子大兔子 提交于 2019-12-24 19:57:52
问题 I have a base64 encoded string. I want to decode it and burn out a file to pass on. I code this: Function DecodeBase64(attachmentValue As String,attachmentName As String) As String Dim result As String Dim s As New NotesSession Dim fileOut As String Dim fout As Integer Dim foutOpen As Integer Dim stream As NotesStream Dim dc As NotesDocumentCollection 'fout = Freefile fileOut = "C:\ExportFileLotus\" + attachmentName 'Open fileOut For Output As fout 'foutOpen = True Set db = s.CurrentDatabase

Lotus Notes Domino Redirect

拜拜、爱过 提交于 2019-12-24 07:58:12
问题 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" http://www.Server.com/daterbase.nsfopen&login&username=USERNAME&password=THEPASSWORD&RedirectTo=daterbase.nsf/JSONBookView?ReadViewEntries&count=500&RestrictToCategory=MYCATEGORY&outputformat=json"; Thanks in Advance! Mike 回答1: The RedirectTo query string argument needs to be URL Encoded so that the server sees

can anyone please tell how to deal with inline images in lotus notes

梦想的初衷 提交于 2019-12-24 02:12:25
问题 Hi guys i am working on sending an email in lotus notes through java.I am able to send an email.For external attachments i am constructing an rich text item.but i am not getting how to deal with inline attachments such as an image inside a mail body part. Here is the code i am using.thanks Document doc = null; RichTextItem rti = null; try{ doc = db.createDocument(); doc.replaceItemValue(ServiceConstants.FROM,getFrom() ); doc.replaceItemValue(ServiceConstants.FORM, getForm()); doc

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

匆匆过客 提交于 2019-12-24 00:55:06
问题 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 decrypt mails . 回答1: Public keys can be found in the Domino Directory. You don't need to do anything special to encrypt emails. The Notes APIs will do that for you automatically. Decryption is another story. The whole point of a private key is that it is

Flying Saucer in Lotus Notes

无人久伴 提交于 2019-12-23 12:54:38
问题 I was trying to convert simple XHTML-files to PDF, and used Flying Saucer and iText to do so. It worked without problems in Java, however, when I tried to make a Lotus Notes agent with the same code, I got an exception I am unsure how to deal with. The code: import lotus.domino.*; import java.io.*; import com.lowagie.text.DocumentException; import org.xhtmlrenderer.pdf.ITextRenderer; import org.xhtmlrenderer.util.XRLog; import java.util.*; public class JavaAgent extends AgentBase { public

Convert IBM Lotus Notes file to text

五迷三道 提交于 2019-12-22 10:11:05
问题 How can I convert an .nsf lotus file to a text file? i want to write a java program to read .nsf file which is on my system. i have tried it simply but it is showing non english character is their any way to get access them normaly. EDIT: That code is in .net and using any server's session, I just want to read .nsf file by java without creating any server's session in fact i have .nsf database. i just want to read as a text file.if there a way to parse .nsf with javacc,it would be better