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

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

  Все выпуски  

LO48896: DOMINO SERVER DOWN BY WEB SERVICE


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

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

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

comp.soft.prog.lotuscodesrore

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

See the updated version of this database, here: http://openntf.org/Projects/codebin/codebin.nsf/CodeByDate/AAB7457D7B8A88F3862576CB0066F84C The UnicodeData.nsf database contains one document for each Unicode code point that is documented in the standard UnicodeData.txt file on the Unicode Consortium web site. Each document contains the decimal and hex values of a Unicode code point, and a text field populated with the actual LMBCS character that corresponds to that code point, along with the Unicode name for the code point and several other values. The database has a view containing all the separate code point documents that is conveniently sorted by the decimal Unicode code point. There is also another view containing several additional useful documents: a document with the original UnicodeData.txt file as an attachment, a document containing all the code points rendered 16 per line as LMBCS characters in a Notes rich text field, and a document containing all the code points rendered 1 per line as LMBCS code points. All scripts used in creation of the documents are included in the database.
Еще примеры:
Больше кодов на сайтах:

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

И еще дополнение. Как избавиться от такой ошибки?

http://pixs.ru/showimage/11JPG_8424580_503373.jpg
И еще дополнение. Как избавиться от такой ошибки?

http://pixs.ru/showimage/11JPG_8424580_503373.jpg
Здраствуйте.
...
Здраствуйте.
...
Удалили документ из БАЗЫ, заметили уже поздно, срок мягкого удаления прошел. И много еще документов в базе поменяли.
...
Удалили документ из БАЗЫ, заметили уже поздно, срок мягкого удаления прошел. И много еще документов в базе поменяли.
...
Невозможно отправить письма с одного Домино на другой, и репликация тоже не идет - ошибка:
Цитата
10.03.2010 10:20:52 Server OTH/DOM/ORG reported the following problem causing authentication to fail: Your certificate has expired
10.03.2010 10:20:52 Error connecting to server OTH/DOM/ORG: Server error: Your certificate has expired
10.03.2010 10:20:52 Unable to replicate with server oth: Your certificate has expired on remote server
.......
10.03.2010 10:22:59 Server SRV2/DOM/ORG reported the following problem causing authentication to fail: Your certificate has expired
10.03.2010 10:22:59 Error connecting to server SRV2/DOM/ORG: Server error: Your certificate has expired

В первом случае - это с филиальным сервером, во втором - с кластерным.
Для всех трех серверов выпустил серификаты, прописал соответствующие kyr в серверном документе на вкладках Ports-Internet ports-SSL keyfile name b Server tasks - Internet cluster Manager-ICM SSL keyfile, рестартанул по очереди все серверы, ошибка не пропадает. Как узнать какой именно сертификат просрочен? Вкладка Configuration-Security-Certificates-Certificates Expirations показывает только сертификаты юзеров

Интересные темы:
Список форумов:

Tips. Советы

Here's a simple tip that everyone should know about. You can change the background and text colors of the messages in your Inbox to add visibility to messages that need immediate attention. We all g
Kevin Pettitt is looking for a way to permanently decrypt messages without involving the user logging into a Notes client. Not only that, he'd like to "automate" the process. If you have any ideas, he'd like to hear them.

Read | Permalink
Rob Novak has posted some information on what the March 11 webinar from Collaboration University will include. There are still a few spaces available.

Read | Permalink
Paul Mooney would like to remind you - if you use Windows permissions to share a directory, Domino security is no longer active. If you want to keep Domino secure NSF files need to be accessed through Domino.

Read | Permalink
The Lotus Information Development Center will host a "BlackBerry Jam" on Tuesday, March 30. BlackBerry users are invited to share tips, trick, and best practices for using Lotus products on BlackBerrys.

Read | Permalink


STRUGGLING WITH EXPORTING NOTES DATA TO SPREADSHEETS? NO MORE!
Try IntelliPRINT, The world's leading Reporting, Dashboards, and Analysis solution for Notes & Domino

  • Don't spend unproductive time maintaining different versions of the same spreadsheet
  • Preserve data integrity and security in multi-user environments
  • Create reports in minutes INSIDE Notes
  • Get freedom from iterative report requests, deliver self-serve capabilities

Experience Reporting, Dashboards, and Analysis INSIDE Notes!

Try IntelliPRINT NOW!

Marc Champoux got a call from a user wanting the photo associated with his name removed. Marc discovered an interesting quirk in how Sametime finds those photos.

Read | Permalink
Mary Beth Raven has posted step-by-step directions for changing default fonts - both as a designer in the template and as a user.

Read | Permalink


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

Adding even more functionality to Flex "view" I've been building I've now added a "toggle column" to the list of available column types:

image

The idea is simple. You click the icon in the column to toggle a field value on the back end document. The icon in the view is either on or off and is dictated by the value stored in the field. It's an idea I've mentioned before which I've now made into a re-usable and customizable component.

In this example I'm using the idea of being able to mark certain contacts as favourites and you can see a working example in the Contact Manager app. The component itself can be re-used in almost any scenario though.

Adding a toggle column to a View is as simple as adding one line of XML to the View's configuration, which is specified in the backend Domino database, as discussed previously.

The XML looks like this:

image

As you can see it's fairly easy to configure and customize. You can easily change the icon, field name and what the "on"/"off" values should be for the field. You can also add a tooltip for the column.

The Column value of "starred" refers to the name of the XML node of each document which holds the field value we're interested. When the grid is first loaded it will show the icon as on or off depending on the value in the "starred" node.

Clicking on the toggle column on sets the value of the field called "Favourite" to "1". Clicking it again sets the value to "".

To see the XML used in the demo open the Contacts view as XML. This is the XML format that defines the structure and data of the View component. Simple, no?

Taking It Further

If you want to go further than simply modifying a single field at a time and want to perform a more involved action then you can do what I tend to always do and add a self-referencing "computed for display" field to the backend Domino form called something like "Action". In the WQS agent you can then check the value of this field. If the value is something like "Approve" then you can run a set of actions against the document.

In this scenario the XML data for each row just needs to define a true/false value to let Flex know whether to show the icon as on or off depending on whether it's approved or not. The value for the fieldValueOn would be "Approve" and for fieldValueOff it would be "Unapprove". The actual XML data for approved documents would be "Unapproved" and for unapproved documents the column value would be "Approve". If that makes sense.

Summary

It's the simple little components like this that show how powerful Flex can be once you get going with it. With the View component and the components I'm adding to it I feel like this is getting to the point where it's a viable product that can be re-used in live applications. In fact I already am using it in live applications for paying customers.

In the next couple of days I'll update the downloadable version of the app with updated Flex source code. Before I do I want to blog about another addition to the code -- the ability to store a user's choice of columns across sessions using the Flash/Flex equivalent of cookies - the SharedObject. Give me a day or three.

Click here to post a response

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

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

Author: Karen Keeter
Tags: views
Idea:
Right now, I can easily find ideas which are in progress, completed, rejected etc, but not ones which are just Open. So if I want to quickly see all ideas which have not moved from the original Open status, I have to go to Advance search and filter by all Open ideas. It would be helpful to  be able to just click on a link like you can do for the other status and see the list of all "Open".

OpenNTF Steering Committee Meeting February 23rd, 2010 In attendance: John Head ,Justin Hill, Ludwig Nastansky, Bruce Elgort, Niklas Heidloff, Mike Wetherbee (for Scott Johnsen), Corey Davis Niklas Heidloff, Steve Castledine Not in ...
Author: Bruce Lill
Tags: ACL
Idea:
If you edit a database acl, your have to enter manually or select all the groups and set the type, lefevl etc.
 
Add a acl profile to the Domino directory, the profile has a name and a list of users/groups with the type and acl level for each one. In the database acl dialog you then can select the profile to apply.
 
From the admin client s file view, select a group of fiiles and the profile to use for them.
 
It would add the names in the profile to the acls of the selected dtabases.

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

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

We launched the specific Agent and Web service, their Domino server crashed with the following stack trace,
Customer understanding of the process for publishing a third-party CA's SSL
Problem description Customer has designed a custom application in version 6.5.x. He
Need an otion or parameter for hiding the DIIOP connection information on console
Steps to reproduce:
Steps to reproduce: 1. UserA open the mail database owned by UserA.
The Mail database has the function which mail threaded displays view.
When DAOS configuration settings are changed in the Server document, you must restart the Domino server to put the changes into effect. In some cases, the changes will still not take effect unless the Domino API is also shut down and restarted.
After DAOS has been enabled on a Domino server, if the virus scanner has not been configured properly to avoid .NLO files, "File is in use" errors may occur.
This article reports IBM® Lotus® Notes® Traveler 8.5.1 performance results for Microsoft® Windows® 64-bit operating systems. In addition, it compares the performances of Lotus Notes Traveler 8.5 (64-bit) server and IBM Lotus Notes Traveler 8.5.1 (64-bit) server. Lotus Notes Traveler 8.5.1 for IBM Lotus Domino® 32-bit servers was not tested because large deployments of Lotus Notes Traveler server are preferred on Lotus Domino 64-bit servers.
Randomly, when sending a file using Send To -> As Attachment from Windows Explorer, text that should be placed in the body of the new memo is placed in the To field.
After performing a clean install of Notes where the installation writes a new notes.ini (or Notes Preferences file on Mac) to the file system, the user must open the Calendar and To Do > Alarms preferences and Select OK to write the Meeting Alert Sound ini variable to the new notes.ini file.
Domino server crashes on the function NLSCCSTR.RuleBasedCollator::safeClone with HTTP and AMGR tasks. These types of crashes have been reported on Domino 6 and 7.
Browser support notes Microsoft Windows users using Microsoft Internet Explorer, it is recommended that you use Internet Explorer 7 when interacting with the wiki. Apple Safari is not supported. Contributing to the wiki To add, edit, or comment on an article, you must have a developerWorks ...
IBM Lotus Domino Server 8.5 Fix Pack 1 Interim Fix 1 for W32/ Type: Incremental Installer / Release Date: 9 March 2010. See 'More Information' link above for additional information.
Также почитатай:
Найти документацию можно на сайтах:

В избранное