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

Learning Lotus Notes clients


Lotus Notes/Domino -- продукт и инструмент. Выпуск: 534

2012-04-27
Поиск по сайтам о Lotus Notes

Содержание:

CodeStore. Коды Примеры Шаблоны (1)

SharePoint: Lists Based on Domino Views With CRUD | Blog

Интенет эфир о Lotus Notes. Блоги и форумы (30)

Менеджер по работе с клиентами
Заместитель главного бухгалтера
Выполняли верстку, интеграцию на Lotus Domino и разрабатывали дополнительные сервисы.
Синхронизация контактов Nokia телефона и Android планшетов и телефонов
Weird behavior with lotus notes client 6.5:
С завтрашнего дня прощай, Lotus Notes; велкам, MS Exchange!
Менеджер по продажам региональный
Доска объявлений ∙ Просмотр темы - Lotus Notes Recovery Toolbox
Ассистент по работе с персоналом; психолог
Directory Preparation for Lotus Notes Migrations goo.gl/fb/eBSNq #virtualization
Configuring and testing the IBM Lotus Domino DAOS feature:
Инженер технической поддержки
Я добавил новую бесплатную программу - Mobile Master 7.9.14
Выпущена Linux-версия антивируса Dr.Web 6.0 для почтовых серверов Kerio
Разработчик Lotus notes domino, Москва, 100000руб. - job-interview.ru/vacancy/543015
Программист Lotus
Lotus Notesから、現金同 ... たのが90年代に ... うので
Руководитель службы безопасности
Специалист кредитного отдела
slurok lotus notes
Системный администратор
Программист Lotus Notes Domino, Москва, 75000руб. - job-interview.ru/vacancy/541997
Программист Lotus Notes, Москва - job-interview.ru/vacancy/542023 #job_interview_ru
Coming Soon – Lotus Notes Support goo.gl/fb/fVTF9 #cloud #featuresservices #lotusnotes
Announcing Email Migration #Support for Lotus Notes goo.gl/fb/3XRFo #cloud #featuresservices
Lotus NotesにIE6だし。
tru_emiko lotus notes настраивали? :о
Требования к системе резервного копирования
Администратор Lotus Domino / СУБД, Москва, 100000руб. - job-interview.ru/vacancy/541832
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 526" от 23 ...

Закладки о Lotus Notes (10)

Learning Lotus Notes clients
Removing Enforce Consistent ACL
IBM Lotus Domino and Notes Information Center
Aplicaciones Web, Aplicaciones para Móviles, Sharepoint, Marketing Online, Sistemas IT, Consultoría ITIL, proyectos llaves en mano, TIC, Internet, Web 2.0, Smartphones | ASM Web Services | ASM Mobile Apps | ASM ITIL Consulting | ASM Web Services
Working with groups in LotusScript
VB and VBA - Lotus Notes Send Email from VB or VBA
unknown
How do you turn off the welcome page in Lotus Notes? - Yahoo! Answers
Tutorial: Introduction to XPages
Dec's Dom Blog :: Learning XPages : Table Of Contents
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















Блиц опрос
Материалы на английском
(голосование возможно только из письма рассылки)
  • Нормально. Могу читать
  • Не годиться. Хочу только на русском
  • Компания ПУЛ - разработка приложений на Lotus Notes/Domino

    CodeStore. Коды Примеры Шаблоны

    1. SharePoint: Lists Based on Domino Views With CRUD | Blog

    Here's an example of a typical SharePoint List:

    image

     

    What's different about this List is that it's displaying data from this Lotus Notes View:

    image

    Not only does the List display this data but it also offers full CRUD-like capabilities - you can also create, change and remove the documents from the Notes database using the SharePoint List frontend.

    Here it is creating a new document from within the SharePoint site that will update in to the Notes database.

    image

    All this with very little (as in no) evidence that what the user is looking at is anything other than a simple SharePoint Site.

    How?

    It uses "Business Data Connectivity" to create an External Content Type. This Content Type can then be mapped to a List.

    Remember recently I've been talking about using Domino-based Web Service Providers to show Notes data in ASP.NET. Well this is an extension of that.

    First thing I did was extend the Web Service by adding the methods required to make it CRUD-like. The skeleton code for it looks like this:

    public class DesignerService {
        public FashionDesigner[] getAllDesigners(){
            //return an array of Fashion Designers
        }
    
        public FashionDesigner getDesignerByName(String name){
            //Lookup and return a Fashion Designer object
        }
    
        public void updateDesigner(FashionDesigner designer){
            //Makes changes to and save the Notes documents
        }
    
        public void createDesigner(FashionDesigner designer){
            //Add a new Fashion Designer
        }
    
        public void deleteDesigner(FashionDesigner designer){
            //Delete a document
        }
    }
    

    You can now setup an External Content Type. To do this, open up Microsoft SharePoint Designer 2010, connect to your site and browse to the External Content Types section on the left hand pane.

    The step-by-step process for doing this is too long-winded and I can't be bothered to write it all up. Basically you create a new External Content Type, add a data connection to it (point to your Domino Web Service's URL) and then map each method of the Web Service to the CRUD operation it corresponds to. Doing this is semi-intuitive from within SharePoint Designer.

    In the shot below on the lower right you should be able to see that I've mapped each method to a particular type of operation.

    image

    With the External Content Type configured and saved we can now create a List based on it.

    Still in SharePoint Designer navigate to the Lists and Libraries section, as below, and click on the (new) External List button:

    image

    In the dialog that appears you should see the External Content Type you already created. Select it and continue on to give your list a name. Once done the List will appear on the left have side of the site itself, as in the first screenshot above.

    Why?

    Why might you want to do this? Good question. It seems to me that lots of businesses are migrating from Domino to SharePoint. There's no denying that. It seems unlikely that that migration will happen overnight and that Domino will be switched off the day SharePoint goes live - there's bound to be a period of co-existence. No? If so, then it seems obvious that the two will need to talk to each other in such a way.

    There are of course huge holes in the above solution. It doesn't take any kind of security or permissions in to account. It was merely as a proof of concept that I did it. Don't pull it apart too much.

    Click here to post a response

    By clicking Submit, you agree to the developerWorks terms of use.

    The first time you sign into developerWorks, a profile is created for you. Select information in your developerWorks profile is displayed to the public, but you may edit the information at any time. Your first name, last name (unless you choose to hide them), and display name will accompany the content that you post.

    All information submitted is secure.

    • Close [x]

    The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerworks.

    Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

    By clicking Submit, you agree to the developerWorks terms of use.

    All information submitted is secure.

    • Close [x]

    Lotus Sandbox archived

    The Lotus Sandbox was closed to all new submissions in 2007. Downloads of previous submissions were still available as an archived resource following that closure, but effective September 2010, downloads from the Lotus Sandbox are no longer available.

    If you need to contact us regarding the removal of the Lotus Sandbox, please use our feedback form.

    Resources for samples and templates

    If you are looking for samples and templates for use with Lotus products, please use these resources:

    • IBM Lotus and WebSphere Portal Business Solutions Catalog
      The IBM Lotus and WebSphere Portal Business Solutions Catalog on Lotus Greenhouse is a rich, Web 2.0 style catalog designed to dynamically deliver widgets, plug-ins, portlets, and sample applications across the entire Lotus and WebSphere Portal software portfolio.
    • OpenNTF.org
      OpenNTF is devoted to enabling groups of individuals all over the world to collaborate on IBM Lotus Notes/Domino applications and release them as open source, providing a framework for the community so that open source applications may be freely distributed, using widely accepted licensing terms, and increasing the quality and quantity of templates, applications and samples that are shared by the community.
    Help: Update or add to My dW interests

    What's this?

    This little timesaver lets you update your My developerWorks profile with just one click! The general subject of this content (AIX and UNIX, Information Management, Lotus, Rational, Tivoli, WebSphere, Java, Linux, Open source, SOA and Web services, Web development, or XML) will be added to the interests section of your profile, if it's not there already. You only need to be logged in to My developerWorks.

    And what's the point of adding your interests to your profile? That's how you find other users with the same interests as yours, and see what they're reading and contributing to the community. Your interests also help us recommend relevant developerWorks content to you.

    View your My developerWorks profile

    Return from help

    Help: Remove from My dW interests

    What's this?

    Removing this interest does not alter your profile, but rather removes this piece of content from a list of all content for which you've indicated interest. In a future enhancement to My developerWorks, you'll be able to see a record of that content.

    View your My developerWorks profile

    Return from help

    Интенет эфир о Lotus Notes. Блоги и форумы

    1. Менеджер по работе с клиентами

    Продвинутый пользователь ПК (Excel‚ Word‚ Power Point‚ Access‚ 1С‚ Axapta‚ SPM‚ Oracle Financial Analyzer‚ Business Objects‚ Marketing Analyzer‚ Lotus Notes)

    2. Заместитель главного бухгалтера

    Торговля (7.0)‚ Microsoft Office (Word‚ Excel‚ Access)‚ Outlook‚ Lotus/Notes‚ Comshare - программа автоматизации бюджетного процесса компании‚ Internet‚ информационно-справочная система «Кодекс»‚ «Консультанат+»

    3. Выполняли верстку, интеграцию на Lotus Domino и разрабатывали дополнительные сервисы.

    frost_by Дизайн - корпоративный Сбербанка. Выполняли верстку, интеграцию на Lotus Domino и разрабатывали дополнительные сервисы.

    4. Синхронизация контактов Nokia телефона и Android планшетов и телефонов

    Nokia PC Suite также позволяет создавать мультимедийные сообщения, управлять телефонным календарем на компьютере и синхронизировать данные между телефоном и программами типа Lotus Notes.

    5. Weird behavior with lotus notes client 6.5:

    Weird behavior with lotus notes client 6.5: One of our user wants to send an email to the user " cats " . In the... bit.ly/KdGZQ1

    6. С завтрашнего дня прощай, Lotus Notes; велкам, MS Exchange!

    Yeah! С завтрашнего дня прощай, Lotus Notes; велкам, MS Exchange!

    7. Менеджер по продажам региональный

    Уверенное владение ПК(MS Office:Word‚Excel‚;Internet‚Lotus Notes‚Concorde‚Navision‚1C)‚владение всеми видами оргтехгники.

    8. Доска объявлений ∙ Просмотр темы - Lotus Notes Recovery Toolbox

    Доска объявлений ∙ Просмотр темы - Lotus Notes Recovery Toolbox

    9. Ассистент по работе с персоналом; психолог

    MS Office‚ Podpis‚ Defect‚ SupLogon‚ «Учет и планирование капитальных ремонтов»‚ Lotus Notes‚ СЭД (система электронного делопроизводства)‚ «Аналитика» ‚ AutoCAD‚ КОМПАС‚ 1С:"Зарплата и кадры (8.0)"

    10. Directory Preparation for Lotus Notes Migrations goo.gl/fb/eBSNq #virtualization

    Directory Preparation for Lotus Notes Migrations goo.gl/fb/eBSNq #virtualization #exchange

    11. Configuring and testing the IBM Lotus Domino DAOS feature:

    Configuring and testing the IBM Lotus Domino DAOS feature: Introduction Introduced in IBM® Lotus® Domino® 8.5, t... bit.ly/JSGVJI

    12. Инженер технической поддержки

    знание Lotus Notes приветствуются;

    13. Я добавил новую бесплатную программу - Mobile Master 7.9.14

    С помощью программы можно также создавать резервные копии данных, восстанавливать удаленную из телефона информацию, копировать или перемещать файлы и синхронизировать заметки и контакты с такими программными продуктами, как Outlook, Lotus Notes, The Bat, Eudora, Outlook Express, Google calendar, Palm Desktop, Novell Groupwise, iTunes.

    14. Выпущена Linux-версия антивируса Dr.Web 6.0 для почтовых серверов Kerio

    Unix, MS Exchange, IBM Lotus Domino и Kerio.

    15. Разработчик Lotus notes domino, Москва, 100000руб. - job-interview.ru/vacancy/543015

    Разработчик Lotus notes domino, Москва, 100000руб. - job-interview.ru/vacancy/543015 #job_interview_ru

    16. Программист Lotus

    Необходим опыт разработки web-приложений для IBM Lotus Notes & Domino Обязанности: —

    17. Lotus Notesから、現金同 ... たのが90年代に ... うので

    暗号のパズルで自在に追跡性を管理できるようになったのって、公開鍵暗号の登場以降じゃないかな。それの産業利用がLotus Notesから、現金同様に匿名性を担保した電子マネーとか雨後の筍のように提案されたのが90年代に入ってからと思うので

    18. Руководитель службы безопасности

    Windows‚ Internet‚ Word‚ Lotus Notes.

    19. Специалист кредитного отдела

    Word‚ Excel‚ Internet‚ MS outlook‚ Lotus Notes.

    20. slurok lotus notes

    slurok lotus notes

    21. Системный администратор

    IBM Lotus Notes

    22. Программист Lotus Notes Domino, Москва, 75000руб. - job-interview.ru/vacancy/541997

    Программист Lotus Notes Domino, Москва, 75000руб. - job-interview.ru/vacancy/541997 #job_interview_ru

    23. Программист Lotus Notes, Москва - job-interview.ru/vacancy/542023 #job_interview_ru

    Программист Lotus Notes, Москва - job-interview.ru/vacancy/542023 #job_interview_ru

    24. Coming Soon – Lotus Notes Support goo.gl/fb/fVTF9 #cloud #featuresservices #lotusnotes

    Coming Soon – Lotus Notes Support goo.gl/fb/fVTF9 #cloud #featuresservices #lotusnotes #news #emailmigration

    25. Announcing Email Migration #Support for Lotus Notes goo.gl/fb/3XRFo #cloud #featuresservices

    Announcing Email Migration #Support for Lotus Notes goo.gl/fb/3XRFo #cloud #featuresservices #hostedproviders

    26. Lotus NotesにIE6だし。

    今の会社は未だにLotus NotesにIE6だし。

    27. tru_emiko lotus notes настраивали? :о

    tru_emiko lotus notes настраивали? :о

    28. Требования к системе резервного копирования

    Система резервного копирования должна удовлетворять следующим требованиям: проведение резервного архивирования серверов и станций с заданными операционными системами; возможность резервного архивирования системных данных для различных операционных систем; возможность резервного архивирования различных приложений (таких, как Oracle, MS Exchange, Lotus Notes, MS SQL) в «горячем» режиме, т.е. без прерывания работы этих приложений; возможность резервного архивирования открытых файлов; поддерживать [...]

    29. Администратор Lotus Domino / СУБД, Москва, 100000руб. - job-interview.ru/vacancy/541832

    Администратор Lotus Domino / СУБД, Москва, 100000руб. - job-interview.ru/vacancy/541832 #job_interview_ru

    30. Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 526" от 23 ...

    Дизайнер-верстальщик * Юрисконсульт страховой организации * IBM выпустила Lotus Notes-Domino 8.5 * Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент.
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Источники знаний. Сайты с книгами


    "Красные книги" IBM

    Книги компании IBM по специализированным тематикам о Lotus Software. Основной язык - английский форматы pdf и html

    Книги компании "Интертраст"

    Для администраторов разработчиков и пользователей. Настройка и администрирование, разработка и программирование, пользование системой Lotus Notes
    Документация. YellowBook
    Оригинальная документация по продуктам Lotus Software. Язык англыйский. Форматы pdf html nsf
    IBM Пресс
    Книги от компании IBM. Книги и брошуры на заказ и на бесплатную скачку в формате pdf
    КУДИЦ-ПРЕСС
    Просмотр и заказ книг. Некоторые книги возможно скачать в формате pdf для свободно чтения и просмотра.
    Книги о Lotus Notes в Интернете
    Ссылки на книги и методички находящиеся в свободном пользовании. Ветки форумов обсуждения книг и материалов. Поисковый сервер по хелпам Lotus Notes книги от Google для свободного просмотра

    В избранное о Lotus Notes/Domino В подготовке выпуска использовались материалы и знания
    По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes

    В избранное