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

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

  Все выпуски  

Understanding IBM Lotus Domino server clustering


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

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

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

comp.soft.prog.lotuscodesrore

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

Еще примеры:
Больше кодов на сайтах:

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

Столкнулся с такой проблемой в Lotus 7. Есть у меня поиск документов, реализованный с помощью SPOFU-папок. Скрипт выглядит примерно так:
Dim query As String
Dim coll As NotesDocumentCollection

...
query = ... 'Собираю строку запроса
Set coll = db.Search(query, Nothing, 0)
coll.PutAllInFolder "(MySearchFolder)"

На последней строчке скрипт валится, выдавая что-то вроде "Cannot move document to shared private on first use folder". Судя по всему, проблема так или иначе завязана на права пользователя, т.к. у менеджеров базы все работает без проблем, однако у пользователей-авторов возникает вышеозначенный затык (права на создание личных папок им даются).
Подскажите, плз, кто знает, какие права здесь тогда нужны. Или может в коде что-то не так? Заранее спасибо.
Итак, по рекомендациям в топике ниже решено подключиться к sql2005 через JDBC. Из-под LD 8.5.1

Вроде всё просто, качаем jdbc-драйвер, кладем его куда-то, прописываем путь в classpath переменную среды, пишем коротенький тестовый агентик для подключения вроде

import lotus.domino.*;
import java.sql.*;

public class JavaAgent extends AgentBase {

public void NotesMain() {

try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl = "jdbc:sqlserver://ИмяСервера:Порт;user=Юзер;password=Пароль;";
Connection con = DriverManager.getConnection(connectionUrl);

} catch(Exception e) {
e.printStackTrace();
}
}
}

и вместо ожидаемого положительного результата получаем (и на клиенте под XP, и на серваке под линухом...)

java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
at java.lang.Class.forNameImpl(Native Method)
at java.lang.Class.forName(Class.java:136)
at JavaAgent.NotesMain(JavaAgent.java:11)
at lotus.domino.AgentBase.runNotes(Unknown Source)
at lotus.domino.NotesThread.run(Unknown Source)

Внимательное чтение доки и гугление по этому поводу наводят на мысль, что у кучи народа похожие траблы с подключением класса, даже не под лотусом. Воркэраунд наводит на воспоминания, что как-то джава лотусиная была требовательна к местоположению джаров. В переменную JavaUserClasses путь к папке с драйвером указан...

Есть ли какие-то ньюансы ещё, чтобы помочь подключить этот класс?
Добрый день прошу помочь в следующей проблеме, возможно это глюк Lotus
...
Добрый день прошу помочь в следующей проблеме, возможно это глюк Lotus
...
Интересные скриншоты на 30 и 31 слайдах.
Презентация
Неужели они сделают нормальный java редактор в лотус....
Собственно так как обитаю только в этом разделе и занимаюсь только лотусом, плюс кризис в стране и отдел кадров повсюду находится в совращенном варианте то и пишу сюда.
Вообщем суть такая:
Мне нужен опытный руководитель проектов/аналитик/внедренец, можно всё в одном или по отдельности с наличием хотя бы поверхносного знания лотуса.
Работа связанна с собственной разработки СЭД на лотусе - http://www.bkc.com.ua/catalog_25
Клиентов много, перспектив развития тоже.
Только Киев, ЗП - руководитель -1000у.е., аналитик/внедрегнец - 600у.е.
Резюме посылать на toxarat@gmail.com, spirina@bkc.com.ua
Если вдруг у вас есть знакомые друзья сообщиете им.
В общем помогите мне кто как может wink.gif
Всем доброго дня!!!
Народ подскажите где можно скачать:
IBM WORKPLACE COLLABORATIVE LEARNING VERSION 2.7 MULTIPLATFORM MULTILINGUAL CD ROM MEDIA PACK
Пробовал гуглить ссылки на скачку не нашёл, если у кого есть поделитесь!!
Заранее спасибо!!!
Здравствуйте!

Помогите пожалуйста решить следующую проблему.
На AIX 5.3 стоят Domino Server 7 и WebSphere MQ 5.3.
По расписанию на сервере Domino запускается java агент, который принимает сообщение xml из очереди MQ и создает на его основе документ Lotus.
Проблема:
при приеме сообщения из mq стандартным Java кодом
MQQueueConnectionFactory cf = new MQQueueConnectionFactory();
cf.setHostName("test_host");
cf.setPort(1414);
cf.setTransportType(JMSC.MQJMS_TP_CLIENT_MQ_TCPIP);
cf.setQueueManager("test_qm");
cf.setChannel("test_channel");
cf.setCCSID(1208);
              
MQQueueConnection connection = (MQQueueConnection) cf.createQueueConnection();
MQQueueSession session = (MQQueueSession) connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
MQQueue queue = (MQQueue) session.createQueue("test_queue");
MQQueueReceiver receiver = (MQQueueReceiver) session.createReceiver(queue);      

connection.start();

JMSMessage receivedMessage = null;
int messageCount = 0;
receivedMessage = (JMSMessage) receiver.receiveNoWait();
if(receivedMessage instanceof TextMessage ) {
String msgText = ((TextMessage)receivedMessage).getText(); // вытащить xml
}


и при выводе msgText сообщение xml выходит урезанным, т.е. как будто метод getText урезает xml при приеме из MQ в нескольких местах, кусками. получается битый xml файл.

Если Domino стоит на Windows, а MQ на AIX, то агент отрабатывает нормально, сообщение не урезается.
Приветствую!

Встала задача хостировать сайты PHP. Сервер один, стоит на колокейшн. На этом серваке уже стоит Домино и хостируются несколько сайтов (Domino, HTML). Теперь нужно как-то хостировать сайты на PHP
Вопрос:
Возможно ли поставить на этот сервер апач и будет ли он корректно работать с Домино?

ОС на сервере Win2003 X64 Standart Edition
народ такой вопрос как мне настроить Lotus 4.61 чтобы через браузер с другого компьютера можно было открыть???
Просто серьёзные темы подняты а этой я не нашёл!!!
Только я начинающий USER так что как для чайника!!!
Жду!!! Спасибо.
Интересные темы:
Список форумов:

Tips. Советы

Jake Howlett posted a demo of this process sometime back. Now he's offering an explanation, including screen shots, of how it works.

Read | Permalink


PISTOLSTAR: LOTUS NOTES AUTHENTICATION THAT BREAKS THE STATUS QUO
Password Power's complete integration with the Microsoft Active Directory password enables Notes client access, ends time-consuming Notes ID password recovery and addresses known issues with Notes 8.5:
  • Passwords are encrypted in volatile memory - not stored on user's hard drive
  • Notes roaming capabilities are fully functional - not limited
  • Password checking is honored - no decreased security or failed compliance
  • All Notes ID file copies are synched automatically with Active Directory password - no remembering old passwords or restoring ID files


Learn more about Password Power's powerful, advanced functionality.

Ulrich Krause got this error message on his server console with a reference to a user mailfile. So he ran the usual repairs. And he still had an error. Though he's now gotten rid of the error, he's wondering what happened.

Read | Permalink
Jake Ochs has posted, Part 1: Objectives and Overview, in what he expects to be a continuing series. This article covers rearranging database info, moving items in a table, adding a little Ajax, and more.

Read | Permalink
Bernd Hort says it only takes a simple change of where the OnChange event field looks for answers to use it under LotusScript. Bernd provides a screen shot to show how it works.

Read | Permalink


POWER TOOLS 4.0 - GET THE MOST OUT OF NOTES AND DOMINO
Tap here to learn more about this set of 73 administrative utilities for Lotus Notes & Domino.

Chris Sparshott has posted a 5-minute video showing off a number of features of WebSphere Portal.

Read | Permalink
Someone asked Andre Guirard why it was taking almost 90 seconds to load images in documents when they were accessed across the WAN. He provides some ideas for improving load times.

Read | Permalink
Vlad Tatarincevs has posted the fix list for the new version of Traveler and provided a link to the downloads on Fix Central.

Read | Permalink

Gregg Eldred has provided a set of links to different articles to help you get SSL set up on your Domino Server.

Read | Permalink
By Mick Moignard

Many years ago, when I was a mainframe developer, I looked after the application system that we used to put changes to other applications into production.

We were in an IBM MVS environment, where an application tended to be made up of a large number of moving parts, all of which needed to be properly coordinated to be sure that the system would continue to function. We'd have Cobol and PL/1 programs, usually from a number of separate source files, IMS database description elements, display screen formats, Job Control Language and so forth.

These applications basically ran the company -- stock controls, parts ordering, you get the picture. Getting such implementations right first time was important. I had more than a few late nights and callouts when things went wrong, and the odd one or two overnight shifts when large and extra-important implementations were happening.


"And you don't have applications that send email to hard-coded people names, do you?"

Some of these might have had upwards of 500 things to be compiled, linked, assembled, or just syntax checked along the way, and a single failure would abort the whole process. While this process might have seemed onerous and complex, it actually made life a lot easier for us, because it defined a set of rules as to what could and could not be done, and because it all went through a testing environment, helped to ensure that components didn't get forgotten, and steps didn't get overlooked.

It's a big job. Tap here to learn all about it.

Volker Weber provides links to a new tool from Ziad: NAB Search. There are both free and "un-free" versions available to let you search your Domino Directory from you iPhone. The links will try to open iTunes to download the applications.

Read | Permalink


PISTOLSTAR: LOTUS NOTES AUTHENTICATION THAT BREAKS THE STATUS QUO
Password Power's complete integration with the Microsoft Active Directory password enables Notes client access, ends time-consuming Notes ID password recovery and addresses known issues with Notes 8.5:
  • Passwords are encrypted in volatile memory - not stored on user's hard drive
  • Notes roaming capabilities are fully functional - not limited
  • Password checking is honored - no decreased security or failed compliance
  • All Notes ID file copies are synched automatically with Active Directory password - no remembering old passwords or restoring ID files


Learn more about Password Power's powerful, advanced functionality.

Niklas Heidloff says there is a new library on OpenNTF devoted to widgets. He provides links to five widgets to get you started and a link the library.

Read | Permalink
Marie L Scott calls TDI "The Best Free Domino Tool You've Never Heard Of". In this first article, of a proposed series, Marie explains a bit about the product and tells you where to get the software.

Read | Permalink
Mary Beth Raven says the Inbox will refresh automatically and there will be a count of unread messages, just like the full client.

Read | Permalink


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

Mark Gargan had an application that needed to be fast, down to the millisecond, so he pushed XPages memory usage and performance to the max. Now he's provided a list of ways to help you streamline your code.

Read | Permalink
Thomas Bahn offers a way to display design elements instead of documents using $FormulaClass. He provides some code, directions, and ideas on what you can do with the information.

Read | Permalink
In honor of Yellow Day Adam Gartenberg shows you how to autoreplace text in Sametime making those mind (and finger) numbing acronyms easier to type.

Read | Permalink


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

Bilal Jaffery reminds us - Lotus Knows IdeaJam opens at 8:00am EDT on August 19. Lotus is asking you to share your ideas and experiences. Registration is required.

Read | Permalink

Over the past couple of months I've written a JavaScript file that weighs in at just under 3,000 lines of code and just shy of 90kb.

Knowing the file would end up this size from the outset I coded it all with the notion that it would end up being "minified"/packed to reduce the filesize.

With this in mind I wrote the code in a packer-friendly way. By that I mean I followed certain rules that meant it would be safe to minify the whole code.

Following Convention

As an example, instead of writing this:

if ( this == that ) doThis();

I'd be sure to always write:

if ( this == that ) { doThis();
}

A simple example of something that's a good habit to get in to. Apart from laziness I can't see a reason to omit the curly braces.

There are other rules to follow, such as putting comments on their own line, being careful where line breaks in long strings occur are split etc etc. To get an idea of how good your JavaScript code is you can paste it in to the big box on this page for a summary of the "errors" in your ways.

Tidy As You Go

Copy/pasting between your editor and a browser window isn't a nice way to code. What you need is to be told of the badness of your code as you code it. You can do this!

If you haven't already then get the brilliant Domino plugin for Aptana Studio! If you're coding JavaScript for Domino without then you're a loon.

Now, open Aptana and open the Preferences area, like below:

ScreenShot006

Drill down to Aptana > Editors > JavaScript > Validation and tick the "JSLint JavaScript Validator" option.

Now, from the menu choose Window > Show View > Validation, as below:

ScreenShot006
You should now see the Validation pane at the bottom of the main area of the screen, as below:

ScreenShot006 

To the right of the Validation area you have the option toggle warnings on and off. Make sure they're on.

Above you can see I have 19 warnings. You can work your way through each one by double clicking it in the list to be taken to the line with the issue. Or you can scroll through the editor looking for little warning icons next to each line, as below, hovering over the icons tells you what the problem is:

ScreenShot002

Code Away

So, there you go. You're all set. JSLint will now help you whilst you write code. You can now write tidy, formatted and well-crafted JavaScript directly within your NSF!!

Click here to post a response

Setting up multiple Lotus Notes clients for in-house developers and testers can help them work more efficiently. The steps may vary depending on your organization, but the setup works with all versions of Notes.


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

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

Author: Jim Fink
Tags: Message Recall
Idea:
When trying to recall a message that was sent to a large group or
recipients an error pops up. The errors has to do with 32k or 64k field
size limit.
Message recall extracts all of the group members. If the size is over
the field size limit that error will occur.
It would be nice if Recall did not extract all of the group members
and just listed the group it was sent to. Perhaps that would alleviate
the field size limitation?
There is an SPR for this, MKIA7K9H6H.   But support says it needs some more weight (customers complaining) to move this up the chain.
Please vote.
Thanks.

Author: Richard Schwartz
Tags: font sizes
Idea:
The Notes client allows me to set a preference for Normal, Large, or Extra Large fonts.  Unfortunately, this change is global.  It magnifies all fonts -- even the ones that are already large enough for me to see.
 
I suggest giving users the ability to set a minumum size.  When the client renders a form, view, etc. or rich text field within a form, it would determine whether any of the fonts necessary for display is below the minimum.  If yes, then it scales up all the fonts before displaying that particular item.  If no, it leaves them alone and displays as-is. 
 
Note: my hope is that if the rich text contains tiny fonts, but the form does not, then only the rich text is scaled up, not both.  But if it had to done such that the form text is also scaled up, so be it.  This would lead to inconsistency as some documents would scale up the form and some others wouldn't, but I could live with it.
 
 

Author: Lori Lozzi
Tags: quickr
Idea:
Include biweekly and monthly repeat options in a calendar entry.

Author: Abraham Herrera
Tags: Size of Attachments Individual Policy
Idea:
Is posible created a policy to limit the size of atttachment to individual user or group of users ?

OpenNTF are pleased to announce new members that have been accepted into the Alliance at todays "special" Yellow Day Steering Committee meeting: Assono Conxsys Czarnowski Sherpa Software The Turtle ...
I've posted five new widgets in the Widget Library project. Widget for IBM Sametime Unyte Widget for Google Mail Widget for RFC Editor Widget for Geo Twitter Widget for ...
Еще записи:
Интересные блоги специалистов:

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

This white paper explains how to set up, manage, and monitor an IBM Lotus Domino server cluster.
The underscore is removed from an email address when sending a Notes encrypted message to the Internet
Users cannot add signatures to mail documents.
The Internet Explorer error page is displayed instead of a custom error page to be displayed when requests for non Notes database resources fail over HTTP.
Enhancement request: Encryption needs to be set if creating a local replica from desktop settings.
After installing the Domino Polish language using a Global Domain document, all messages sent to an Internet address with a domain considered local will be sent over the Internet using SMTP.
Since Release ND6, if you have more than 50 rooms, only 50 will appear when a user tries to schedule a room.You can increase that limit, but remember two things:Modifications to the standard mail temp
*No information for this parameter available*DEBUG_LOGGER_BUF_FULL_WAIT=5
IBM® Lotus® Quickr™ services for WebSphere® Portal provides a team collaboration platform that enables the team to exchange information in the form of documents, ideas, and knowledge. Lotus Quickr provides ready-to-use components, such as document library, blogs, and wikis, that provide the required collaboration capabilities. This article explains in simple terms how to deploy Lotus Quickr in an organization, in just 10 steps, to achieve the goal of team collaboration. All aspects of deployment are covered: from easy consumability in terms of installation and configuration, through choosing functional components and providing access control, to the extension of Lotus Quickr to suit the requirements.
Setting fonts in Notes to extra large in preferences will not stay enabled after a client restart. After restarting Notes, the font size reduces to normal if set to large or extra large.
A user enabled with the Domino Full access administrator privilege cannot access the design of a database unless they are present in the ACL.
In Lotus Domino, when used within a table, the "text hide" paragraph property ("Hide paragraph when document is...") is ignored in a database's "About This Database" and "Using This Database" documents.
Notes client 8.5 Russian and Italian does not create full text index and ntaskldr.exe spikes the CPU up to 100%.
Также почитатай:
Найти документацию можно на сайтах:

В избранное