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

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

  Все выпуски  

Windows 2008 64bit OS Hangs/Slows Dramatically When Domino Server is Shut Down


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

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

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

comp.soft.prog.lotuscodesrore

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

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

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

Кто нить делал?
Были ли после этого проблемы с коннетом на клиентах.
Народу много просто не хотелось бы что бы отвалились smile.gif
Недавно было замечено, что если в web интерфейсе Яндоксовского почтовика используя IE8 вставить текстовый файл, то в тело письма вставляется содержимое этого файла и сам файл как-то прикрепляется к письму.
При получении такого письма Батом или при просмотре в web интерфейсе проблем не возникает, а вот если получить такое письмо Lotus'ом, то аттача нет, есть только содержимое этого файла. sad.gif

Возможно ли сказать Lotus'у чтоб он полностью получал письма и на экран выводил не "урезанный" вариант письма?

ЗЫ. Причём если к письму прикрепляют не текстовый файл, а например архив, то Lotus всё нормально получает. (видимо яндекс как то криво аттачит текстовые файлы)
Интересные темы:
Список форумов:

Tips. Советы

Maureen Leland's user declared it wasn't possible to filter the contents of the problems view. Since others might be equally confused, Maureen has posted directions on how to filter the view.

Read | Permalink


INTEGRA FOR NOTES - THE AWARD WINNING LOTUS NOTES TO MICROSOFT OFFICE & LOTUS SYMPHONY INTEGRATION SOLUTION
Integra generates Notes data to Microsoft Word, Excel, and Lotus Symphony, allowing end users to analyse and present data using Graphs, Pivot Tables, Filters, etc. Supports Mail Merge and Labels. No installation required, on the end user's workstation.

Through the optional use of Integra's event driven model, it provides a depth of access to data & computational capability, which is unique in the industry.

Tap here for more information.

Jake Ochs has some Java code, written as a Notes agent, that's been moved into Eclipse and... well, yeah. He's posted his method of keeping it running until he can find a better way. If you have suggestions, Jake would like to hear them.

Read | Permalink
Keith Strickland recently found the IBM Lotus User Interface Developer Documentation site with its wealth of information. He even found some code that let him create a sectioned menu. He's posted links and code to help you out.

Read | Permalink
Stephan Wissel says you can count the names in your buddy lists or you can use a tool, such as Epilio, to do the counting for you. Stephan provides directions on how to do it.

Read | Permalink


WHAT'S THE MOST COST-EFFECTIVE & RESPECTED TRAINING RESOURCE FOR LOTUS PROFESSIONALS?
Visit THE VIEW Online Knowledgebase at www.eview.com.

Dave Hay got this message when he was attempting to use Personalization and Lotus Web Content Management together in WebSphere Portal 6.1.0.3. He provides links to the documentation he used to fix the problem.

Read | Permalink

The other day I mentioned Lists in LotusScript. By coincidence yesterday I found myself using them again.

As part of helping a customer migrate from Domino to Exchange I've written them an agent to export all people from their NAB in to a CSV file, which will then be imported to Exchange's address book.

For reasons I'm not entirely clear on they needed an extra column adding to the CSV called "Initial". For most people this would simply be "1". If the export found a name that had already exported for another user then the "Initial" column needed to increment to 2 - even though there was a "unique ID" column in the CSV - and so on.

So the CSV would look like (ignoring lots of missing columns):

First Name, Last Name, Initial
Jake, Howlett, 1
John, Smith, 1
Karen, Howlett, 1
John, Smith, 2
Joe, Taylor, 1
John, Smith, 3
Karen, Howlett, 2

You get the idea, right?

It turned out doing this was really simple in LotusScript using Lists. Here's how:

Dim NameCount List As Integer
Dim NameFull As String 'this bit inside a loop of all Person documents (doc)
NameFull=LCase(Trim(doc.FirstName(0))+" "+Trim(doc.LastName(0)))
If IsElement(NameCount(NameFull)) Then NameCount(NameFull)=NameCount(NameFull)+1
Else NameCount(NameFull)=1
End If Print #fileNum%, doc.FirstName(0)+{,}+doc.LastName(0)+{,}+ CStr(NameCount(NameFull))

In fact it turns out you can simplify that code even further to:

Dim NameCount List As Integer
Dim NameFull As String 'this bit inside a loop of all Person documents (doc)
NameFull=LCase(Trim(doc.FirstName(0))+" "+Trim(doc.LastName(0)))
NameCount(NameFull)=NameCount(NameFull)+1 Print #fileNum%, doc.FirstName(0)+{,}+doc.LastName(0)+{,}+ CStr(NameCount(NameFull))

There you go. LotusScript still standing the test of time...

Click here to post a response

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

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

In the last couple of months we've extended the OpenNTF web site significantly and provided several new services. There is a new project management UI, fixed full text search, more visibility for contributors, carousel component for featured projects, ...
Author: Jeroen Jacobs
Tags: domino server logging log.nsf
Idea:
On a server with a lot of users, the log file can get very big. It's possible to archive the log.nsf file, but it doesn't reduce the file-size, and it's most of the time impossible to compact the log.nsf while the server is running.
 
The solution as proposed by IBM: shutdown the server and compact the log file manually via ncompact.exe
 
I'm proposing a new system for log file archiving, similar to how mail journaling is handled in Domino:
 
After a certain period, or when the log reaches a certain size, move the log to a another location and create a new empty log.nsf file.
 
 

Author: Hendrik Jan van Meerveld
Tags: conflicts replication update fields xpages merge userinterface
Idea:
If an agent, replication, or save action from another user changes the back-end document, then show this in the front-end UI document.
 
This Idea comes from a comment from Bruce Lill in idea "Problems of conflict situations".
Bruce, I like it so much that I made this idea out of it. Credits to you!
 
IBM could actually add this functionality to XPages as well. Use Ajax to update the controls when the documents on the server changes.

Еще записи:
Интересные блоги специалистов:

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

Customers have reported that their Windows 2008 64bit servers have stopped responding at the OS level after shutting down the Domino server or using the Domino Dbcache Flush command.
How can one create a replica of a mail file with only the documents pertaining to a specific meeting or calendar entry?
When a user views meetings using the standard client, they are off by 9 hours. The problem is only seen when accessing Notes using a VMware client.
Some workstations do not have the ability to choose a specific web browser from the location document.
If you check "in views or folders" without selecting a template server and template you get the error "Directory Local!! does not exist". You may get an error or just a blank check box below the "in views or folders" checkbox.
Question This document provides stepbystep instructions for installing Lotus Domino Access for Microsoft Outlook (DAMO) 8.0.2. These instructions also apply to installing interim fixes for DAMO 8.0.2. Answer Before you begin Note the following requirements before you begin: You must be running ...
Также почитатай:
Найти документацию можно на сайтах:

В избранное