http://www.openntf.org/Internal/home.nsf
Новости о ПО Lotus Notes1. EMC: покоряйте вершины в сложных условиях - CIO
2. ОТП Банк модернизирует технологическую основу розничного бизнеса - PC Week
3. RISK выпустит третью версию Системы электронного документооборота - Azerbaijan Business Center
4. Lotus Notes 8.5.1 с поддержкой iPhone - Компьютерный журнал F1CD
Статьи. Публикации. Пресс-релизы1. Совместная работа Lotus Sametime и DB2 pureXML в сценарии медицинского обслуживанияВ данной статье рассказывается, как можно использовать прототип плагина Sametime для клиентских программ системы мгновенного обмена сообщениями для доступа и отображения XML-данных пациента, сохраненных в базе.2. Разработка составного приложения в программе IBM Lotus Notes для интеграции Lotus Notes с календарями GoogleЭта статья описывает разработку составного приложения в программе IBM® Lotus® Notes® 8.0, которое интегрирует календари Google и Lotus Notes, основанные на Atom API и XSLT-технологиях. Компания ПУЛ - разработка приложений на Lotus Notes/Domino CodeStore. Коды Примеры Шаблоны1. Simple Domino With Gears Demo / Download | BlogAs promised last week here's a simple demo of Gears working with Domino. And when I say simple... How To Test ItThe proof of any pudding is, as they say, in the tasting. So, err, let's eat. If you visit the demo page and don't have Gears installed you should see a prompt to install it. Either do it that way or just go here and do it. Come back to the demo page and you should see a security warning from Gears asking for permission for the site to use it. Just click on the trust box and press Allow. Go on, you know you trust me.
With the warning gone you'll see the "No documents found" message we've all come to know and love. That's because the page only shows documents created from your IP address. I did this so that other people don't work offline on the same data and not produce odd results when testing. Click Add New Row and create a few documents in the view.
While you remain online the Update buttons simply use Ajax to update the document directly on the server. Now press the Go Offline button. The "view" should be replaced by a message about downloading the data. This message remains while Ajax fetches all your documents and stores them in a local database (SQLite) on your PC. The green online box should turn red to signify offline status.
Pressing the Update button while offline will just update the field value directly to the local SQL database. When you've made some changes and are ready to go back online just press the button to do so and an Ajax requests sends details of all the modified documents back to the server where they're updated. How Do I Know It's Really Offline!For the sceptics there's an easy way to test this really is working offline. Press the Go Offline button again. Once the local view appears and the box turns red you can put your browser in offline mode too by choosing Work Offline from the File menu. If you don't trust that then pull you network cable out or turn your router off. Trust me though - it does work. Just remember to re-enable your connection and/or browser before trying to put the app back online. How Does it All Work?When you press the Go Offline button Ajax fetches all the latest documents from the server. Some JavaScript calls to the Gears Database API then stored details of each document in a SQL table. Once the data is stored offline Gears then fetches the files that make up the application. It does this by referring to a manifest file. Here's the contents of the manifest file for the demo app { "betaManifestVersion": 1, "version": "v1.0", // URLs to be cached (relative to the manifest URL) "entries": [ { "url": "demos.gears", "src": "demos.gears?Open&offline=true" }, { "url": "gears/init.js" }, { "url": "gears/GGD.js" }, { "url": "css/gears.css" }, { "url": "images/gears/logo.gif" }, { "url": "tools/gearsquery.html?open&dbinfo=domino" } ] } In it is a list of the files that Gears downloads to your PC and stores in a special folder, where it serves them from in offline mode. Gears is not using the browser's cache! To prove it go offline and then clear the browser's cache. Revisit the URL you were at when you went offline and it's still there! Notice one key trick in the manifest file. The first entry is to the main page "demo.gears" but we've told Gears to "cache" the page at "demos.gears?Open&offline=true". With this parameter passed the Domino form can be told not to send the view as part of the page (we build then with JavaScript in offline mode) and to make the status area default to red for offline. View the source of the page in online and offline mode to compare. When you go back online this local store of files is removed to make sure you're not using the "cache" from then on. SummaryIt's a very simple demo but hopefully it proves the concept. What I didn't mention is that it works on handhelds devices too. If you want to try this out but don't have one to hand, try an emulator.
Obviously this demo can't be taken and used as is for most projects. It would be nigh on impossible to produce a solution that's fits all scenarios. Whether Gears can be of any use to you or not depends on lots of things... What about the download? I'll make that available tomorrow once you've had chance to debug it for me. 2. Ensure maximum performance from virtualized Lotus Domino serversGet tips on server placement, monitoring and more, ensuring optimum performance from your virtualized Domino servers, in this tutorial from contributor Eric Seibert..3. Server Upgrade and Smartphone Advice | BlogOn Monday I asked Prominic.NET if they'd upgrade codestore.net to Domino 8.5. The next day I woke up and it was done! Hi Jake, You just can't beat Prominic for service! Now I have no excuses not to talk about XPages on this site. The bit in the email about Blackberries follows another request -- that they add Blackberry support, which they kindly said they would. To Buy a Blackberry or Not?I'm in the market for a smartphone and my mind is all but set on getting a Blackberry (in particular the Storm 9500). Although I'm not completely sold on them/it yet. I'm feeling very tempted by the HTC Magic and having to resist the urge to just get an iPhone? Despite "going full circle" last year and buying the most basic phone I could, having owned a P910i and then a Nokia N73, I finally think I'm ready for a smartphone. Or rather smartphones are ready for me. From what I've seen smarthphones are actually really good nowadays and something I could use on a regular basis. What's prompted me has been the increasing number of times recently where I've thought to myself "If only I had an 'iPhone'". Normally because I'm a bit lost or need a phone number or something. As well as web access on the move I could really do with keeping in touch with my email and hence my customers while I'm OoO. Hence the lean towards a Blackberry. So what I'm looking for is:
The one thing that puts me off the Storm is lack of Wi-Fi support. But then, if it has support for HDSPA, 3G and GPRS, so should I even need Wi-Fi? Especially as the Vodafone price plans I'll move to all have unlimited internet use. If I'm in a place with Wi-Fi then it follows that I'd also have "3G" coverage or some kind? Any help and advice gratefully received! 4. Using the IBM Lotus Sametime Java toolkit from within a Lotus Sametime Connect toolkit plug-inLearn how to use the full power of the low-level IBM® Lotus® Sametime® Protocol API exposed by the Java™ toolkit from within the easier development environment of the Lotus Sametime Connect toolkit. By extending the BuddyNote plug-in, which is one of the sample plug-ins provided with the Lotus Sametime software development kit (SDK), you can use the Server Storage API to store the notes about your buddies on the Lotus Sametime server rather than in a local configuration file.5. The Administrator's Guide to Notes and Domino Password CheckingServer password checking is vital to a secure Notes and Domino environment, and it gives administrators a good measure of control over the security of user passwords. To ensure that you use this feature correctly and get the results you want, take this guided tour that covers everything you need to know about server password checking. Форумы о Lotus Notes/Domino:
Интенет эфир о Lotus Notes. Блоги и форумы1. Cache2. Без заголовкаИ с IBM с их Lotus Notes.3. Сохраним Workspace при переустановке Lotus NotesТак сложилось, что с Lotus Notes я познакомился недавно. Основные задачи на мне это установка настройка самого клиента и помощь пользователям в его освоении. Итак записывайте Перед тем как переустановить Лотус скопируйте файл desktop6.ndk который находится в папке C:\Program Files\lotus\notes\data.4. Re: Работа с Lotus из внешних приложений используя OLEНу почему никак.... 5. Глюки с репликациейСобственно делаю скриптом реплику шаблонов локально и периодически напариваюсь на глюк, что в реплике отсутствует дефаултовый вид. Баз много и этот глюк проявляет себя рандомно в разных базах.Никто не сталкивался с таким? 6. Block_LookupID7. Ещё один пример инфернально-инопланетного интерфейса - это интерфейс Lotus Notes ...Ещё один пример инфернально-инопланетного интерфейса - это интерфейс Lotus Notes ...8. Иду к клиенту настраивать почту на Lotus Notes.Доброе утро! Сегодня столько планов. Иду к клиенту настраивать почту на Lotus ...9. Странное поведение TravelerКак то странно он стал себя вести, в почтовой базе стали помечаться письма на удаление, и это на одном девайсе из 15 нашли там вирь, вроде вычистилино опять же все повторилось. Кто нить с этим сталкиваться с таким? 10. Backup_Timeout11. Акция от NovellКомпания Novell сейчас проводит акцию по обмену лицензий Exchange, Lotus Notes на GroupWise8 всего за 36 долларов.12. Db2 Access Set FailedВсем доброй ночи, а кому то и утра...Как системный администратор UNIX систем, администраторам LOTUS, БД, программистам, прошу откликнуться на мой вопрос. Тут уже писали мои коллеги по работе много раз об этой проблеме. Но как я понимаю дело в другом и придется решать проблему мне. Перечитав многие ветки форума, сделал вывод, что есть люди у которых работает связка LOTUS+DB2. Испытывал эту связку, ставив сервак LOTUS с DB2Server строго по манам администратора LOTUS. Попыток было сделано 10 и 1 оказалась удачной, все пошаговые действия были записаны на бумажку ) не дай бог что-то перепутать. И вот по этой бумажке решил ставить уже на рабочий. И проблема повторялась все равно. Не пойму в чем дело. Погуглив нашел 2 решения: 1. |#^#]>http://www-01.ibm.com/support/docview.wss?...;rss=ct463lotus|#^#]> 2. |#^#]>http://www-10.lotus.com/ldd/nd6forum.nsf/5...75?OpenDocument|#^#]> 1ое решение отпадает, так как если DB2 не был запущен перед запуском LOTUS, LOTUS не может соединиться с базой DB2 и соответственно вкладка в администраторе Test DB2Access не активна, а Enable DB2Server активна. Остается иди по второму пути. Предлагается добавить в настройки след. директиву: Option Public Uselsx "*lsxodbc" %INCLUDE "LSCONST.LSS" Вот и вопрос - где это прописывать в каком файле? В параметрах LOTUS, DB2AccessServer? А может это и не решение, в общем жду ваших предложений ) Заранее спасибо 13. Lotus Notes?Ой! Lotus Notes? МЫ тоже это г... грандиозное изобретение используем..14. IBM Lotus Domino 8.5 + Lotus SameTime 8.0.2 + Windows 2008Устанавливаются - настраиваются - ошибок не выдают - но Sametime не подключает ...15. lotus domino 8.5 и SMTP HELOИнтересно, умеет ли сабж менять HELO в зависимости от внешнего события? Или ...16. Backup_No_Timeout17. Организация рассылкиДобрый день!Проблема следующего характера.... В нашей организации есть секретарь и ей требуется делать рассылки рекламного и не только характера на определенные адреса...... Адресов штук 500......ей , мягко говоря, надоело их набивать в ручную и она донесла это до руководства.... Оно, естественно, поставило задачу....УПРОСТИТЬ Есть Домино 8.0.2, есть шлюз на Postfix, несколько интернет доменов..... Рассылать с основного рабочего домена не АЙС, указывать в поле КОМУ большое количество получателей тоже - сразу в блэк листы занесут или заблокируют получение.....c этим что то надо делать......хоть заказывай рассылку на стороне Собственно вопрос: Кто чем пользуется для решения подобных задач? 18. Настройка количества RULESМаксимальное количество почтовых правил - 100, но оно может быть настроено переменной в Notes.ini.Может кто знает, что эта за переменная? Заранее спасибо. 19. BackgroundPrinting20. DEBUG_FIXUP_RESET_ACLExplanation: notes.ini DEBUG_FIXUP_RESET_ACL should only be used when it is determined that the ACL on a database is damaged. The setting should only be used temporarily. Default: This setting is21. INOTESDISABLEXPAGECMDExplanation: notes.ini INOTESDISABLEXPAGECMD disables the XPages feature introduced in Domino 8.5. Default: By default this setting is absent from the server's notes.ini. Recommendation: Remove t22. Using the IBM Lotus Sametime Java toolkit from within a Lotus Sametime Connect toolkit plug-inLearn how to use the full power of the low-level IBM® Lotus® Sametime® Protocol API exposed by the Java™ toolkit from within the easier development environment of the Lotus Sametime Connect toolkit. By extending the BuddyNote plug-in, which is one of the sample plug-ins provided with the Lotus Sametime software development kit (SDK), you can use the Server Storage API to store the notes about your buddies on the Lotus Sametime server rather than in a local configuration file.23. Что такое Unified CommunicationsAD + Exchange + Office + OCS против Lotus Domino + Lotus Notes + Lotus Samtime.24. Smart Upgrade KitВопрос можно ли вообще обновить клиента с помощью SmartUpgrade с Release 6.5 или 6.5.6 до 8.5 ?При попытке обновления выдает вот такую ошибку: http://forum.sysfaq.ru/index.php?act=attach&type=post&id=9235 Настройки http://forum.sysfaq.ru/index.php?act=attach&type=post&id=9236 Что я не так делаю? обсуждалось тут Server 8.5 Clients 6.5 6.5.6 25. Кодировка Java в виде квадратиков в WebmailЗдравствуйте.Видел похожую тему |#^#]>http://forum.codeby.net/topic30004.html|#^#]>, но ответа на вопрос так и не нашел. Стоит Lotus 7.0.3 сервер, доступ снаружи локальной сети осуществляется через WebMail ( служба HTTP Server). На клиентах для корректного отображения почты через IE или Mozilla нужен JRE ява апплет. При первой установке на клиентских XP Sp2 и Sp3 станциях всё отображается правильно. Но т. к. на станциях стоял McAfee антивир, то удаленная установка jre не заработала, поэтому я удалил jre удаленно, выключив Маккафи. После повторной установки jre6u13 при загрузке отображает квадраты вместо кириллицы, причем только на самих кнопках, остальные надписи и выпдающие менюшки отображаются корректно на русском. Пробовал изменять региональные опции, применять reg патчи и программы из темы |#^#]>http://www.nowa.cc/showthread.php?t=33486|#^#]>. Поставил опцию в Server -> Current Server Document ->Internet Protocols->Domino Web Engine Use UTF-8 for output в Enabled. Ничего не помогло Как я понял проблема со шрифтами в jre. Может кто-то решил эту проблему? Помогите плз 26. Auto_Save_User27. Lotus Notes/Domino 8丛书Lotus Notes/Domino 使用 设计 管理如何订购?IBM 员工可以直接联系编辑订阅丛书,内部价 ¥69.00 RMB.联系人: 高洪霞 ( Gao, hong xia)电话: 86-10-51260888 - 821 邮箱:hxgao@phei.com.cn非IBM员工订阅方式:电子工业出版社网站 ( Publishing house of electronics Industry28. Lotus Notes 8.5.1 с поддержкой iPhoneIBM выпустила бета-версию Lotus Notes and Domino 8.5.1, включая планы по поддержке Microsoft Exchange ActiveSync в приложении Lotus Notes Traveler 8.5.1. Эта функция распространит возможности автоматической синхронизации данных служб электронной почты и календаря на платформу Apple iPhone. В Lotus Notes 8.5.1 расширены возможности редактирования сообщений, работы с виджетами (графическими инструментами управления) и календарем,29. Auto_Save_Interval30. Oracle анонсировала два новых продукта для бизнесаили IBM Lotus Notes.31. Best practices for database maintenanceTo keep a specific database in good working order, perform these tasks regularly. Task Frequency Monitor replication, if a database replicates Daily Check for and consolidate replication or s32. Re: Работа с Lotus из внешних приложений используя OLEНу, вы же сами видите, что UI классы COM не поддерживаются, только background. А по сему ответ - через COM никак.33. Cisco Telepresence ManagerПрограммное обеспечение Cisco TelePresence Manager тесно интегрируется с корпоративной системой планирования совещаний (MS Exchange, Lotus Domino), службой каталога (MS Active Directory) и корпоративной системой унифицированных коммуникаций (корпоративной IP-телефонией) Cisco Unified CallManager.34. DXL frameset workaroundI noticed this morning, while writing a utility that uses DXL to reverse the order of left and right frames in a frameset (for BIDI) that the representation for complex framesets, though it "round tri ...35. IT->Lotus Notes->разработка и консалтингДоделаю, исправлю, разработаю "с нуля" любую "базу" на платформе Lotus Notes Domino.36. Misunderstanding - A Yullen FicNotes:(Added June 1, 1898) Basically Kanda"s lotus withered during a battle and it turned out that he was a actually an akuma turned to exorcist by the Science Department and now that his lotus was withering, he was going back to being an akuma.37. PhoneAlarm 2.20Добавлена поддержка напоминаний о новой почте в Lotus Notes Traveler38. Вопрос по LNОтвете плз на вопрос. Если человек работает в LN по средствам "толстого" клиента, например 7ой версии, предположим в базе.nsf, отражаются ли в лог-файле (в каком на локальной машине или на сервере где база лежит??) изменения производимые с документами в данной базе. и какая вообще информация отражается в логе (id пользователя, ip компа за которым работает юзер) ???? и еще если два пользователя работают одновременно по одной учеткой в лотусе, с разных компов, то что оражается в логе ..?39. Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...Roland Reddekop) * Sanity Check * The History of Notes and Domino < IBM DeveloperWorks * notes.ini Reference - by category * IBM Software Access Catalog * ImageField of gridview - .NET and Java EE Interop Forums * What's new in IBM Lotus Notes 8.5 * Installing the Lotus Notes 7.01 Linux Client * Lotus Meldungen und Events * Stefan Pfeiffer * IBM Lotus Domino and Notes Information Center * Senior Project Manager Migration from Exchange to Lotus Notes * Lotus Notes Administrator - CC233 * Lotus Notes Domino/Java Developer * Lotus Notes Domino Developer * Lotus Notes Support * Lotus Notes Domino/Java Developer * Lotus Notes Domino Developer * Lotus Notes Domino Admin * Lotus Notes Domino Developer * Lotus Notes Domino/Java Developer * Lotus Notes Developer * РкСгР°РѭРѬ СГРїРѭС*иаиСГС" РїРѭ Lotus Notes * Auto_Save_Enable * Р§Сгвак, Р° С Блиц-опрос
Вакансии для специалистов1. Senior Project Manager Migration from Exchange to Lotus NotesReference # : 09-00096 Title : Senior Project Manager Migration from Exchange to Lotus Notes Location : Pittsburgh, PA Experience Level : 3 Years Start Date / End Date : Thu, Feb 19, 2009 / Wed, Sep 3...2. Lotus Notes Developer/AdministratorThis position is responsible for the support of existing Lotus application as well as the potential design, creation, testing, deployment and security of future applications. · Resolve service ticket...3. Lotus Notes Programmer/Admin--Description--Our client in Augusta, GA is looking for a Lotus Notes Administrator for a contract position. This person will be converting the client from Lotus Notes to Microsoft Exchange Outlook.--...4. Lotus Notes Programmer/Admin--Description--Our client in Augusta, GA is looking for a Lotus Notes Administrator for a contract position. This person will be converting the client from Lotus Notes to Microsoft Exchange Outlook.--...5. Lotus Notes Admin--Description--Job Description Provide daily advanced support for a very large Domino environment using AIX for mail and Wintel for app and role serversProvide daily advanced support for Lotus Sametim...6. Lotus Notes Domino Developer--Description--LOTUS DOMINO DEVELOPERDevelop Lotus Domino SolutionDesign Lotus Notes/Domino SolutionImplement Lotus Domino SolutionsPerform Code Unit TestDevelop Program Specifications(2)Develop Lotus...7. Lotus Notes Domino Developer--Description--LOTUS DOMINO DEVELOPERDevelop Lotus Domino SolutionDesign Lotus Notes/Domino SolutionImplement Lotus Domino SolutionsPerform Code Unit TestDevelop Program Specifications(2)Develop Lotus...8. Lotus Notes Domino/Java Developer--Description--Domino/Java development in support of the Team Lead and Call Center for Learning & Development (CLD) tools development projects.Duties & TasksCreate software tools using Lotus Script/Lo...9. Lotus Notes Domino/Java Developer--Description--Domino/Java development in support of the Team Lead and Call Center for Learning & Development (CLD) tools development projects.Duties & TasksCreate software tools using Lotus Script/Lo...10. Lotus Notes to MOSSMigration Architect - Lotus Notes to MOSSPrime Team Partners is searching for a SharePoint / MOSS Architect who has experience migrating clients from Lotus Notes to SharePoint / MOSS.Our Microsoft Gol...11. Lotus Notes AdministratorOur client is seeking a Lotus Notes Administrator on a contract basis at their offices in Chicago. The expected duration of the contract is one year with the possibility of becoming a permanent positi...Закладки о Lotus Notes1. http://www.openntf.org/Internal/home.nsf2. Resources for Interoperability and Migration from Lotus Domino3. HTML Email and Lotus Notes4. http://www.templatekit.com/lotusnotes1.php5. IBM - Word wrap fails in embedded Sametime client used with Internet Explorer 86. developerWorks : Lotus trial downloads7. PocketMac GoBetween for Lotus Notes - "Now, Sync Your Lotus Notes Contacts, Calendars, & Tasks To Any Device Supported By Apple..."Stuck with Lotus Notes at my work. Looking for any way to make it less painful8. VB and VBA - Lotus Notes Send Email from VB or VBA9. Using Lotus Notes: Excel VBA to Lotus Notes, lotus notes mailbox, lotus notes user10. The History of Notes and Domino11. In Theory...12. eProductivity™ - The Ultimate Personal Productivity System for Lotus Notes™13. Lotus Domino Administration in a Nutshell: Chapter 13: Domino Server ...14. Creating Mail policies in Lotus Notes/Domino 7With Domino policies, you can centrally control many of the features and functions of the Notes client for your users, including mail and calendar features. Lotus Notes and Domino first introduced policies in release 6, and Lotus Domino 7 not only enhances this functionality, but also introduces the new Mail Settings policy. This article starts with a brief, high-level review of Domino 6 policies15. http://www.openntf.org/Internal/home.nsfOpenNTF 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.16. IBM - Using a Desktop Policy to set notes.ini and Location parametersDetailed steps on how to create a custom Desktop Policy to change a Location document setting17. The History of Notes and Domino18. Domino Blog19. PLANET LOTUS.org20. IBM - Error: 'Cannot save bitmap to disk' when trying to Forward or Reply with History to message21. BleedYellow22. Restrict Users to Server Mail Files23. Lotus Notes Quick Reference Guide - TutorialИсточники знаний. Сайты с книгами
По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes |
В избранное | ||