Отправляет email-рассылки с помощью сервиса Sendsay

Бюллетень "Lotus Notes CodeStore"

  Все выпуски  

DAOS Enablement Fails with the error "Memory allocation request exceeded 65,000 bytes"


Рассылку ведет: Программист на Lotus NotesLotus CoderВыпуск No 241 от 2009-10-07
рассылка о программировании на Lotus Notes/Domino
Обсуждения на форумах, блогах. Примеры программного кода на LotusScript,@formula, Java

рассылка:выпускархивлентаблогсайт

Бюллетень "Lotus Notes CodeStore" Выпуск 13 от 21.04.2008

comp.soft.prog.lotuscodesrore

CodeStore. Примеры кодов

Requires dojo script library //returns param value given param name - case sensitive
function getParam(paramName){
var paramAll = dojo.filter(location.href.split("&"), function(item){ return paramName==item.substr(0,paramName.length); })[0]; return (typeof(paramAll)=='undefined' || paramAll.indexOf('=')==-1)?"":paramAll.split('=')[1]; }
Еще примеры:
Больше кодов на сайтах:

Форумы.Свежи темы и обсуждения

модераторы извините что запостил тему в два топика по lotus но она относиться к программированию и администрированию
начальник вынес остатки мозга а как исправить не знаю


Пожалуйста посоветуйте как можно решить проблемму.
Принимаются любые идеи (не только с domino с api) так как бьюсь уже неделю

Есть мой addin на c api. если мой addin не работает то куршений нет.
При одновременном обращении к одной и той же базе моего addin и nIMAP происходит крушение сервера

############################################################
### FATAL THREAD 7/10 [ nIMAP: 0c70: 0154]
### FP=0x13a3f444, PC=0x602774b7, SP=0x13a3f444
### stkbase=13a40000, total stksize=262144, used stksize=3004
### EAX=0x00000000, EBX=0x60c9ddf8, ECX=0x13a3f800, EDX=0x00ebeed0
### ESI=0x00000000, EDI=0x13a3f800, CS=0x0000001b, SS=0x00000023
### DS=0x00000023, ES=0x00000023, FS=0x0000003b, GS=0x00000000 Flags=0x00010202
Exception code: c0000005 (ACCESS_VIOLATION)
############################################################
@[ 1] 0x602774b7 nnotes.CIMsgMimeDirectoryStreamStore::GetHeaderStream+71 (ebed34,ebeed0,13a3f800,13a3f7f0)
@[ 2] 0x602447c9 nnotes.CIMsgImport::RewriteHeaders+233 (13a3f83c,ebed34,0,13a3f834)
@[ 3] 0x6027a2d7 nnotes.CIMsgMimeDirectoryStore::GetSomeHeaders+87 (ebed34,0,13a3f9f9,0)
@[ 4] 0x60278cb8 nnotes.MDGetSomeHeaders@28+40 (ebed34,0,13a3f9f9,0,0,0,0)
@[ 5] 0x004075be nIMAP.FormatBodyPart+990 (13a3fed8,1,0,56b0850,0,0,0)
@[ 6] 0x00408f83 nIMAP.FormatData+675 (2a465ac,56b0850,56b0a2c,13400001,0,0,0)
@[ 7] 0x00409891 nIMAP.ResponseProcess+1457 (11b,13400001,e72ee8,3,0,0,0)
@[ 8] 0x00418e04 nIMAP.IMAPThreadProc@4+836 (0)
@[ 9] 0x600fe6ef nnotes.ThreadWrapper@4+175 (0)
[10] 0x7c80b713 kernel32.GetModuleFileNameA+436


Крушение на вызове моим addin функции NSFNoteUpdate
@[19] 0x6012228b nnotes.NSFNoteUpdate@8+27 (2,0)

те hendle note 2, update_flags - флаг обновления 0 (в других задачах флаг 0 работает нормально)

Сам считаю что пути решения
1) как то проверять что note занята другим процессом (как проверить не знаю)
2) использовать какой то из этих флагов обновления

UPDATE_FORCE - Do an update or delete even if some other user has updated the note between the time the note was read into memory and the time we try to write it. This flag is appropriate for both updating and deleting a note.

UPDATE_NAME_KEY_WARNING - Give an error if the updated note contains a new field name that wasn't already defined in one of the forms in the database. This flag is appropriate for updating a note only.

UPDATE_NOCOMMIT - Do not flush all data to disk after the update. The note will be updated by the system, but non-summary data may not be immediately written to disk. This may improve the speed of NSFNoteUpdate if many operations are to be done sequentially, but risks loss of data if the machine crashes before data can be flushed to the disk. Summary data is always written to disk regardless of whether this flag is set or clear. This flag is appropriate for both updating and deleting a note.

UPDATE_NOREVISION - Do not maintain revision history. This flag is appropriate for updating a note only.

UPDATE_NOSTUB - Leave no trace of the note in the database if the note is deleted. This flag is only appropriate for deleting a note. You can use this flag on a deletion stub by removing the RRV_DELETED flag from the note id of the deletion stub before calling NSFNoteDelete or NSFNoteDeleteExtended. Once the deletion stub is removed, the deletion of the note will not be replicated. Otherwise, UPDATE_NOSTUB is only useful for applications that do NOT use views, and do not replicate. For example, a gateway may periodically examine a mail.box file, using NSFSearch and simply delete a document (using UPDATE_NOSTUB) when it's done with it. The database does not replicate, nor does it need views. UPDATE_NOSTUB ensures that there is minimum waste space allocated to stubs that are never needed in a highly volatile request-style database. Documents that are deleted with UPDATE_NOSTUB will still appear in the Domino views of the database and may cause problems when replicated. The documents themselves will not exist in the database and therefore cannot be opened.

UPDATE_INCREMENTAL - Compute incremental note info.

UPDATE_DELETED - The current update is a step in the process of deleting a note. API programs only use this flag in the context of a database hook driver. See Data Type DBHOOKVEC. Normally, API programs do not set this flag in calls to NSFNoteUpdate or NSFNoteDelete. NSFNoteDelete specifies this flag when it calls NSFNoteUpdate in the process of writing the deletion stub to the disk.

UPDATE_DUPLICATES - Obsolete. Allow duplicate items of the same name. This flag is appropriate for updating a note only.

UPDATE_SHARE_SECOND - Extended (32-bit DWORD) option: Split the second update of this note with the Note Object Store.

UPDATE_SHARE_OBJECTS - Extended (32-bit DWORD) option: Share only objects with the Note Object Store, not the summary information.


посоветйет пожалуйста что можно сделать

Пожалуйста посоветуйте как можно решить проблемму.
Принимаются любые идеи (не только с domino с api) так как бьюсь уже неделю

Есть мой addin на c api. если мой addin не работает то куршений нет.
При одновременном обращении к одной и той же базе моего addin и nIMAP происходит крушение сервера

############################################################
### FATAL THREAD 7/10 [ nIMAP: 0c70: 0154]
### FP=0x13a3f444, PC=0x602774b7, SP=0x13a3f444
### stkbase=13a40000, total stksize=262144, used stksize=3004
### EAX=0x00000000, EBX=0x60c9ddf8, ECX=0x13a3f800, EDX=0x00ebeed0
### ESI=0x00000000, EDI=0x13a3f800, CS=0x0000001b, SS=0x00000023
### DS=0x00000023, ES=0x00000023, FS=0x0000003b, GS=0x00000000 Flags=0x00010202
Exception code: c0000005 (ACCESS_VIOLATION)
############################################################
@[ 1] 0x602774b7 nnotes.CIMsgMimeDirectoryStreamStore::GetHeaderStream+71 (ebed34,ebeed0,13a3f800,13a3f7f0)
@[ 2] 0x602447c9 nnotes.CIMsgImport::RewriteHeaders+233 (13a3f83c,ebed34,0,13a3f834)
@[ 3] 0x6027a2d7 nnotes.CIMsgMimeDirectoryStore::GetSomeHeaders+87 (ebed34,0,13a3f9f9,0)
@[ 4] 0x60278cb8 nnotes.MDGetSomeHeaders@28+40 (ebed34,0,13a3f9f9,0,0,0,0)
@[ 5] 0x004075be nIMAP.FormatBodyPart+990 (13a3fed8,1,0,56b0850,0,0,0)
@[ 6] 0x00408f83 nIMAP.FormatData+675 (2a465ac,56b0850,56b0a2c,13400001,0,0,0)
@[ 7] 0x00409891 nIMAP.ResponseProcess+1457 (11b,13400001,e72ee8,3,0,0,0)
@[ 8] 0x00418e04 nIMAP.IMAPThreadProc@4+836 (0)
@[ 9] 0x600fe6ef nnotes.ThreadWrapper@4+175 (0)
[10] 0x7c80b713 kernel32.GetModuleFileNameA+436


Крушение на вызове моим addin функции NSFNoteUpdate
@[19] 0x6012228b nnotes.NSFNoteUpdate@8+27 (2,0)

те hendle note 2, update_flags - флаг обновления 0 (в других задачах флаг 0 работает нормально)

Сам считаю что пути решения
1) как то проверять что note занята другим процессом (как проверить не знаю)
2) использовать какой то из этих флагов обновления

UPDATE_FORCE - Do an update or delete even if some other user has updated the note between the time the note was read into memory and the time we try to write it. This flag is appropriate for both updating and deleting a note.

UPDATE_NAME_KEY_WARNING - Give an error if the updated note contains a new field name that wasn't already defined in one of the forms in the database. This flag is appropriate for updating a note only.

UPDATE_NOCOMMIT - Do not flush all data to disk after the update. The note will be updated by the system, but non-summary data may not be immediately written to disk. This may improve the speed of NSFNoteUpdate if many operations are to be done sequentially, but risks loss of data if the machine crashes before data can be flushed to the disk. Summary data is always written to disk regardless of whether this flag is set or clear. This flag is appropriate for both updating and deleting a note.

UPDATE_NOREVISION - Do not maintain revision history. This flag is appropriate for updating a note only.

UPDATE_NOSTUB - Leave no trace of the note in the database if the note is deleted. This flag is only appropriate for deleting a note. You can use this flag on a deletion stub by removing the RRV_DELETED flag from the note id of the deletion stub before calling NSFNoteDelete or NSFNoteDeleteExtended. Once the deletion stub is removed, the deletion of the note will not be replicated. Otherwise, UPDATE_NOSTUB is only useful for applications that do NOT use views, and do not replicate. For example, a gateway may periodically examine a mail.box file, using NSFSearch and simply delete a document (using UPDATE_NOSTUB) when it's done with it. The database does not replicate, nor does it need views. UPDATE_NOSTUB ensures that there is minimum waste space allocated to stubs that are never needed in a highly volatile request-style database. Documents that are deleted with UPDATE_NOSTUB will still appear in the Domino views of the database and may cause problems when replicated. The documents themselves will not exist in the database and therefore cannot be opened.

UPDATE_INCREMENTAL - Compute incremental note info.

UPDATE_DELETED - The current update is a step in the process of deleting a note. API programs only use this flag in the context of a database hook driver. See Data Type DBHOOKVEC. Normally, API programs do not set this flag in calls to NSFNoteUpdate or NSFNoteDelete. NSFNoteDelete specifies this flag when it calls NSFNoteUpdate in the process of writing the deletion stub to the disk.

UPDATE_DUPLICATES - Obsolete. Allow duplicate items of the same name. This flag is appropriate for updating a note only.

UPDATE_SHARE_SECOND - Extended (32-bit DWORD) option: Split the second update of this note with the Note Object Store.

UPDATE_SHARE_OBJECTS - Extended (32-bit DWORD) option: Share only objects with the Note Object Store, not the summary information.


посоветйет пожалуйста что можно сделать

Добрый день.
Перестали работать ACL для групп у последних зарегистрированных пользователей. То есть в ACL стоит группа с какими то правами, для старых пользователей права работают какие указаны, для новых не работют, приходится отдельно каждого пользователя выносить и права каждому ставить. Когда именно началось, не скажу однозначно, но где то как недели три назад. Три недели назад было разделение одного сервера отдельно на почту и на документооборот. Права для групп не работают на сервере документооборота. Domino 7.0.2.

Заранее спасибо за помощь
подскажите пожалуйста чем обусловленно падение сервера ОС Win2k3SP2 Lotus 6.5.5FP1 nsd log http://slil.ru/28047871
Добрый день!

Сегодня столкнулся с ошибкой лотуса:
Notes Error! Локальная куча переполнена - ( имя_представления )
Что бы это могло быть?
Попутно: из-за чего такое бывает и как бороться??

Спасибо!!!
Сам спросил, сам и отвечу. Инфа хорошо расписана ТУТ
В том то и дело, что ничего не делали. Сервер работал исправно, а сегодня утром выдал такое чудо!
Ошибку эту выдает при открытии базы, при обращении к представлениям. Причет закономерность определить не получилось, выдается через раз.
В какой момент даннаяы ошибка происходит? Что делается, что делалось до этого? когда возникла?
подскажите пожалуйста чем обусловленно падение сервера ОС Win2k3SP2 Lotus 6.5.5FP1 nsd log http://slil.ru/28047871
Добрый день!

Сегодня столкнулся с ошибкой лотуса:
Notes Error! Локальная куча переполнена - ( имя_представления )
Что бы это могло быть?
Попутно: из-за чего такое бывает и как бороться??

Спасибо!!!
Проблема:
Программирую форму в дизайнере ставлю в свойствах поля Field Hint "Введите название". Нажимаю "Просмотр в Notes" - все норм. Открываю базу просто через клиент, создаю док по этой форме - Field Hint не пишеться.
Это точно не кэш. Пробовали на дизайнерах и клиентах 6.5 и 7.02
Кто нибудь вообще с таким встречался?

Сам же отвечаю... Вообщем, если делать документ через @Compose, то все норм. А если через Lotus Script то нефига.
В какой момент даннаяы ошибка происходит? Что делается, что делалось до этого? когда возникла?
Сам спросил, сам и отвечу. Инфа хорошо расписана ТУТ
В том то и дело, что ничего не делали. Сервер работал исправно, а сегодня утром выдал такое чудо!
Ошибку эту выдает при открытии базы, при обращении к представлениям. Причет закономерность определить не получилось, выдается через раз.
Иногда пользую LotusScript.doc (www.lsdoc.org) - то начальство порадовать, то самому поглядеть. И вот неожиданно на одной из баз (и шаблоне) это добро стало вылетать с ошибкой "XSLT Transformer error" и не желает работать... В код смотреть особо не сильно хочется - вроде работало, дебаггер показывает, что вылетает в момент реализации экспортера и подробности ошибки

"<?xml version='1.0'?><XSLTransformerLog><error line='99328' column='65'>Element 'par' is not valid for content model: '(tablecell)*'</error><error line='102662' column='68'>Element 'par' is not valid for content model: '(tablecell)*'</error></XSL...

страшные цифры - столько кода в базе точно нет (элемента "par" - тоже и близко нет) smile.gif и как-то неприятно чувствую - база на вид целая (проверил как и шаблон), а простая вещь работать перестала - есть у кого идеи ГДЕ копнуть?
Интересные темы:
Список форумов:

Tips. Советы

Peter Presnell explains how he plans to find a way to add discussion threads to existing applications in less than 5 minutes. He has posted a 10-minute video covering the Discussion template.

Read | Permalink
Ulrich Krause says that once in a while the DAOS catalog gets out of sync and the prune process is affected. Ulrich explains the steps for re-syncing DAOS and re-setting pruning.

Read | Permalink

Marc Champoux kinda likes his job. After all, it pays the bills. So, when the boss complained his Sametime Chat Window didn't look like it used to, Marc took a look. He explains what he found and how he fixed it.

Read | Permalink
The VIEW is sponsoring 5 Bootcamp sessions between now and the end of the year. These sessions provide tips, techniques, and best practices to help you optimize your current environment.
Las Vegas, Oct. 26-28
London, November 4-6
Chicago, November 16-18
Amsterdam, December 2-4
Philadelphia, December 7-9

Read | Permalink

Before I showed you Flex's take on categorised views last week I was hoping to have added one extra feature to it - the ability to select more than one category to display at a time.

At first I thought it might be pushing the limits of E4X's XML-filtering, but then I asked the Stackoverflow.com crew whether you can filter XML with multiple nodes values against an array of multiple values to match. As expected, it can't be done natively with E4X. But you can easily extend it to do so. See the link above if you want to know how.

Notice in the screenshot below that I've selected more than one category from the "list". Click the image to see the updated demo. Once there hold down Ctrl while selected skills to do the same.

image

Notice also that the example above says it is showing 741 of the 2500 documents loaded, but this isn't the sum of the totals for each of the three categories chosen (409+397+3=809). That's because there are documents which exist in one or more of the three categories. Seems obvious, but thought I'd mention it.

Click here to post a response

Ed Brill says that, starting today, the Client Access Licenses (CALs) for Domino model will be drastically simplified. There will be two CALs, one for Enterprises and one for Messaging.

Read | Permalink
Jake Howlett continues his lesson on building a Flex database. He provides a link to the sample database, the source code, or you can download the NSF.

Read | Permalink
Darren Duke has posted the list of upgrades to expect from Notes and Domino 8.5.1. The release, October 12, will include a number of speed enhancements and more-than-usual the number of bug fixes.

Read | Permalink


MARK YOUR CALENDAR FOR IN-DEPTH LOTUS TRAINING, MAY 12-14, 2010, BOSTON
Register by December 31, 2009 to save $350.

IBM has entered the cloud-storage business with XIV-based Smart Business Storage Cloud and a private cloud Information Archive. Using low-cost components IBM is offering petabytes of capacity in a private cloud.

Read | Permalink

Until now the Staff Skills database I've been talking about has been read only. Today I've added the ability to edit documents from the "view". Double-clicking a row now opens a form, which allows you to change the department and/or skills of an employee, as below:

image

Notice that when you update a document there's a slight pause and then the list of categories on the left has its labels updated to show the new count of documents in that category.

Note that, to do this, it does not load the XML for all 2500 documents again! All that happens is the server returns the XML that defines the newly-updated document and then the master XML object, which stores all the documents client-side, has the element which describes the current document updated. At this point the List object on the left updates the label on each item in it and the DataGrid gets updated if necessary.

To show the CheckBoxes on the form I'm using a Repeater object. The DataProvider for the Repeater is the same XML that's fed to the List on left and is defined in the XML loaded when the app first opens.

You can download the Flex source code here (you'll need this too) or you can just download the whole NSF (which has the Flex source Zips in the Files section).

Prize to the first person to spot the bug! Especially if you fix it!!

Click here to post a response

Today I made a few changes to the commenting on blog entries. It might appear merely cosmetic or that nothing has changed, which is partly true, but I've also fixed some bugs and tidied up the underlying HTML. It's now much more semantic.

What do you think? Notice how comments from me get a "codestore blue" border!

image

What I can't decide is whether it's obvious enough that the name is related to the comment below it, rather than the one above?

There are more changes to come. Nothing exciting, mind. Just tidying up, as the underlying HTML is very messy in places. Although I am hoping to add a survey feature and indented commenting at some point.

Click here to post a response

Since many companies use both Lotus Notes and Microsoft, having the ability to search Active Directory from a Lotus Notes view can be helpful. This LotusScript searches AD without having to rely on a third-party driver.


Following on from yesterday's change to this site's comments area I've gone a step further and added Gravatars to the comments. It's experimental.

You'll see your gravatar if you provide an email address and have an account on Gravatar.com with an avatar linked to that address.

Note that if you've been posting on here for years using the same email address(es) then you can go register them now with Gravatar and it will appear next to all your previous posts! Use lots of email addresses? Link them all to your Gravatar! You should notice it appear on other blogs you've commented on, which also use the same system.

For those of you weary of providing your email address (even though those displayed are "protected from spambots") I've added the option to hide your email address. Note that the address is used in the URL for the avatar image, but is "protected" as it's in MD5 format!

 Capture

Hopefully I've not taken anything away from the simplicity of the form itself by adding a new option.

Gravatars Good. Gravatars Bad.

Are avatars a good thing? I can't decide!

While they look cool and seem a fair addition to a busy forum I just can't see how much value they actually provide on this site. Are they just a distraction from the content?! Worse still, as the majority of posts will use the default avatar, does it give too much emphasis to the posts which do have one?

Like I said, this is an experimental feature. Not sure if I'll keep it yet.

Future Commenting Changes

It was a comment from Ferdy (Christant, I'm guessing) yesterday that convinced me to give this a shot. In a later comment he mentions the comments system on a site which looks a lot like what I have in mind for this site. Note the use of indented commenting. Watch this space. I've got the code for it. Just need to implement and test...

Click here to post a response

Еще советы:
Смотри советы на сайтах:

Блоги. Что обсуждают и пишут

Author: Joseph Hoetzl
Tags: threaded answers comments
Idea:
I think it would be more fitting to be able to post a comment to an answer rather than have all comments counted as answers/potential answers.  Something like a "comment on this answer" button rather than just a one level deep thread.

Author: Peter Presnell
Tags: links
Idea:
The author of an idea my not always be aware of related ideas posted in idea jam.  It would be nice if anyone could contribute to the jam by also allowing them to link related ideas thereby sharing the love even more.

Author: Rob Goudvis
Tags: Look-and-feel layout view
Idea:
It would be nice when there was an option where you could indicate some view column spacing. This is very usefull when you have a right justified column with numbers. In many cases this column is followed by yet another column with left justification. Now I have to enter a very small column to improve the readability of the view.
 

Author: Mathieu Pape
Tags: invitation participant
Idea:
A meeting participant can delegate his invitation to someone else but cannot invite or forward the invitation to a colleague.
 
The meeting chair could have an option to prevent this just like the 'prevent delegation' option.

Author: Peter Presnell
Tags: designer
Idea:
Now the decision has been made to provide Domino Designer for free I feel I (and other developers) should be provided with a refund for the licese fees already paid.  OK, so asking for cash may be a stretch so I will settle for:-
  1. A credit for Free XPage Training
  2. An autographed copy of the first Xpage book published
  3. Hire an intern at IBM to finish the Xpage documentation
  4. Donated to a foundation to sposor poor underpriveledged bloggers attending LotusSphere

Author: Rob Goudvis
Tags: application development
Idea:
I would like to see a global boolean that shows whether or not DEBUG mode is on. This way you can add debugging code to your application that is only executed when you are actually running the debugger.
 
I am aware of the STOP statement, but this is different.

Lei XL Xiao and Jian Kang from IBM have contributed a new project - file navigator. The file navigator is a sidebar plugin that allows browsing through the OS file system. From the sidebar you can also open and delete files and drag & drop files ...
Еще записи:
Интересные блоги специалистов:

Статьи и Документация

DAOS Enablement Fails with "Memory allocation request exceeded 65,000 bytes" Error.
If you choose "Tools -> Show Java Debug Console" from the menu bar, nothing happens.
In this phase, you will upgrade the servers to Lotus Domino 8.0.x.
Explanation: Specifies the URL that accesses the Lotus Protector for Mail Security 2.5 server. Note: This setting supports use of an IP:PORT combination such as 9.132.50.41:4443. The setting does no
When you press the Escape key to close a MIME message, the following error will occur: "An error has occurred. See error log for more details". If you go back into the same document, and perform the same operation again, the error may or may not occur.
While working in Lotus Notes, the scroll bar for views and folders randomly stops working. Closing and re-opening the database temporarily resolves the issue.
While working within a mail file in the Notes 8.0.2 or 8.5 Standard client, you notice that the New mail action icons disappear within the client. For example, when you go to create a new memo or reply to a message, the buttons for those actions are missing. The only icon that displays within this section is the icon for Sametime.
You have moved a user to a new mail server, but the preferred server field in the replication settings of the local mail file replica is not updated with the new server name. Why does this occur?
You assign colors to various types of Lotus Notes Calendar meetings and appointments. However, when you print out your Calendar, these colors are not printed. n?
Western Australia introduced a trial period of Daylight Saving Time (DST) in December 2006. Effective 2009, the government of Western Australia has elected not to continue this trial period. This ends Western Australia's observance of DST. IBM Lotus has prepared a set of LotusScript agents that will update any affected Notes calendar entries, resource reservations, and resource documents to conform to the new DST rule.
The Resource & Reservations (R&R) database is running on a clustered Lotus Domino server with the RnRMgr task running on two of the clustermates. If one server goes down and the RnRMgr is stopped and restarted on the second server, the RnRMgr task goes into a wait state and does not begin processing until the first server comes back up.
Western Australia introduced a trial period of Daylight Saving Time (DST) effective December 2006. Effective 2009, the government of Western Australia has elected not to continue this trial period. This ends Western Australia's observance of daylight saving time.
The following are the electronic software delivery dates of national language versions for recent releases of Lotus Notes and Domino.
This document contains the detailed system requirements for the 8.5.1 release of the Lotus Notes® client.
This document contains the detailed system requirements for the 8.5.1 release of the the Lotus® Domino® Administrator client. and the Lotus® Domino Designer® client.
LDAP directory servers supported for IBM® Lotus® Domino® 8.5.1
See below for a list of detailed system requirements for the supported releases of Lotus Notes, Lotus Domino, Lotus Domino Administrator, and Lotus Domino Designer.
This interview with Chris Toohey is the first in a series of interviews with IBM Lotus Domino Designer developers who are active contributors to the Lotus community.
Learn to use the IBM® Lotus® Symphony™ LotusScript® toolkit to publish information from IBM Lotus Notes® into Lotus Symphony applications, such as Lotus Symphony Documents and Lotus Symphony Spreadsheets.
Third-party tools sometimes require the use of a .MSI file to deploy their installation. Currently interim fixes do not include a *.MSI.
The first dialog to open during the Smart Upgrade process is titled "Lotus Notes Smart Upgrade" and has a cancel button. Administrators may want to hide this button so that users cannot abort the upgrade.
Также почитатай:
Найти документацию можно на сайтах:

В избранное