lotus-domino

how to access textfield value in lotus script for Domino designer

橙三吉。 提交于 2019-12-11 13:22:51
问题 I am new to Domino designer and lotus script, I tried to access my text field by: Sub Click(Source As Button) Dim myText As String myText = Inputbox("insert some text :","Testing Heading","Default value test",100,100) Msgbox "you have entered : "+myText [myfield].text = myText //error End Sub but it shows an error: named product field does not exist Googled for it but can't find the solution. One more, searched for tutorials for creating forms,views,database in domino designer for beginners.

Xpages Dynamic dojo dialog control

假如想象 提交于 2019-12-11 12:43:39
问题 I have a list of products (created using a repeat control) and wish to click on a particular product and bring up a dialog with further information about that particular product. I don't really want to generate dijit.dialog thing for every single product on that page, so how can I do this dynamically possibly using AJAX and partial refresh. A similar non xpages example can be seen here: http://www.replacementkeys.co.uk/window?dir=asc&limit=12&mode=grid&order=position - where you hover over an

Lotus Notes to Oracle database migration [closed]

拈花ヽ惹草 提交于 2019-12-11 11:36:32
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I have a NSF file of a lotus database. The objective is to give up the legacy lotus notes database and migrate it to relational database oracle. Do any one have expertise in this area to give a step wise process to carry out migration from lotus notes to oracle db. 回答1: 10 years

Consuming web service using wsdl in Domino

空扰寡人 提交于 2019-12-11 11:00:15
问题 We use web service Consumers\ Providors quite a bit in our application, both LS and java design elements. I have a web service (wcf) wsdl that I am trying to import into a LotusScript Web Consumer design element and when saving I am getting the following error: Not a member: INVOKE ...on line indicated below. Function GetCopyDestinations(service As XSD_STRING, ocsCode As XSD_STRING, Fault1 As InteropErrorInfoStruct_n1) As ArrayOfInteropMessageDestination_n1 Set GetCopyDestinations = Service

Web Service Consumer thrown faultCode: {http://www.lotus.com/domino/ws/}HTTP

情到浓时终转凉″ 提交于 2019-12-11 10:44:16
问题 after SSL invalid certificate, may need to cross-certify has been fixed another issue appears and I'm stuck even more now. Could someone give me at least idea what is wrong :) {code} WebServiceEngineFault faultCode: {http://www.lotus.com/domino/ws/}HTTP faultSubcode: faultString: (0) null faultActor: faultNode: faultDetail: {}string: (0) null at lotus.domino.axis.transport.http.HTTPSender.readFromSocket(Unknown Source) at lotus.domino.axis.transport.http.HTTPSender.invoke(Unknown Source) at

Issue in setting unique ID in Domino designer

雨燕双飞 提交于 2019-12-11 10:37:38
问题 I am new to Domino designer and lotus script, following my second question, I have some issue in setting unique ID (for id field in form). My formula for Id field value : T_List:=@DbColumn("" : "NoCache"; "Local"; "DBintro";"testview"; 1); @If(@IsNewDoc & @Elements(T_List)=0;1;@IsNewDoc & !@IsError(T_List);@Subset(T_List;1) + 1;id) I'm having DB in local (nothing shared). referred this link an Answer by AndrewB Server : Local DBname : DBintro view name : testview id - field in the form (which

Domino Web SSO : Invalid username or password was specified

一个人想着一个人 提交于 2019-12-11 10:37:32
问题 I configured a Web sso for my domino server. When I opened the .xsp page, a yellow background HTML log-in form appeared and asked me to type my user name and password. But after I entered the correct user name and password(I'm sure they are correct), this yellow log-in form asked me to type over and over again! I was totally confused. Anybody knows what's the problem? Thanks in advance. 回答1: Check that the hostname specified for the ltpa token in the SSO document matches the hostname you're

Creating response doc from a selected document within a dataTable with XPages

感情迁移 提交于 2019-12-11 09:41:33
问题 I try saving my document the document got saved without any error but the response document is no where to be found. The response document is a list of document in a datatable selected using a checkbox. The below code is placed on the onchange event of the checkbox: <xp:checkBox id="checkBox1" value="#{vProductListCollection}"> <xp:eventHandler event="onchange" submit="true" refreshMode="norefresh" id="eventHandler1"> <xp:this.action><![CDATA[#{javascript: var colTitle =

Lotus Domino 9: Unable to register user without creating ID file using Java client API

元气小坏坏 提交于 2019-12-11 09:26:02
问题 On an ID Vault configured Domino setup, when we register a user using Admin console, his/her ID file gets uploaded to ID Vault. In addition to this Admin can also chose to create ID file on some other specified location . That is, Admin will be able to perform registration in two ways: Option A: Admin will only chose to create file in ID Vault. Option B: Admin will specify path where ID file will be created in addition to ID Vault. I am using Lotus Notes Java client API to perform

Lotus Notes Sending email with options

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 08:41:14
问题 I'm using Lotus Domino.dll. Already finished sending. How set delivery options to DeliveryPriority=H and DeliveryReport=C ? CODE NotesSession _notesSession = new NotesSession(); NotesDocument _notesDocument = null; string sMailFile = "mail/" + login + ".nsf"; _notesSession.Initialize(passwrod); NotesDatabase _notesDataBase = _notesSession.GetDatabase(sServerName, sMailFile, false); if (!_notesDataBase.IsOpen) { _notesDataBase.Open(); } _notesDocument = _notesDataBase.CreateDocument();