329 Lotus blogs updated hourly. Who will post next? Home | Downloads | Events | Jobs | Twitter | Bookmarks | Pods | Blogs | Search | myPL | About 
 
Latest 7 Posts
The classic recycle design pattern is flawed in some document iterations
Fri, Apr 26th 2013 140
Using Solid-State Drives in your servers? Beware research show risk of massive data loss
Tue, Mar 12th 2013 233
Has Sharepoint interest peaked?
Tue, Feb 5th 2013 241
Why your Notes directory suddenly grows several Gigabytes
Mon, Sep 24th 2012 462
When the order is crucial - use of both compression and encryption on data.
Mon, May 7th 2012 265
Mail "slide in a summary" pop-up feature in Lotus Notes 8.5.3 - was this ever tested at IBM?
Fri, Apr 13th 2012 540
Flaw in popular mobile apps exposes users to identity theft - storing passwords in plain text files
Mon, Apr 9th 2012 167
Top 10
Importing Holidays into the Lotus Notes Calendar
Thu, Mar 15th 2012 1019
Windows 7, if your wireless connection is REALLY SLOW this is most likely why..
Thu, Jul 21st 2011 814
How to install the new XPages Extension Library with the Eclipse Update Site database (it is easy)
Fri, Oct 21st 2011 802
How to use the Pidgin IM instead of the Notes 8.5.3 embeddded Sametime, when the client does not behave well
Tue, Dec 6th 2011 782
Domino and XPages error messages are basically.. just riddles
Fri, Oct 7th 2011 547
Mail "slide in a summary" pop-up feature in Lotus Notes 8.5.3 - was this ever tested at IBM?
Fri, Apr 13th 2012 540
Could not upgrade to 8.5.2 FP1 from 8.5.2 "Error - version mismatch"
Sun, Dec 19th 2010 486
Lotus Domino 8.5.3 is using Dojo 1.6.1 as default (it seems)
Thu, Oct 13th 2011 476
Why your Notes directory suddenly grows several Gigabytes
Mon, Sep 24th 2012 462
New XPages forum...not impressed
Fri, Feb 18th 2011 451


How to install the new XPages Extension Library with the Eclipse Update Site database (it is easy)
Jesper B. Kiær    

The new XPages Extension Library should be installed using the Eclipse Update Site database. It is easy and this is how. (The Domino server and the Domino Designer is version 8.5.3!) The Server: - Download the XPages Extension Library from openNTF - Unzip it - Unzip the file: "updateSiteOpenNTF-designer.zip" - On the server create the UpdateSite.nsf database from the Eclipse Update Site template. - Change the ACL to whatever needed , I believe anonymous must have reader access. - Open the database - Click "Import Local Update Site" Select the "site.xml" file from the unzipped updateSiteOpenNTF-designer file. - You will need to edit the notes.ini file on the server.The easy way to do this is to open the webadmin.nsf admin database from a browser - Goto the configuration tab, edit the notes.ini file - Add the line above to the notes.ini file - Save - Restart the HTTP task Server is done :-) For multiple servers, just make replicas of the database, edit notes.ini and restart HTTP The Domino Designer - Open the Domino Designer - Goto File/Application/Install - If you do not have the Install menu entry then - Open File/Preferences goto the Domino Designer category and enable "Eclipse plug-in install" - In the install dialog select "Search for new featues to install" - Click next - Click "Add Remote Location" - Fill in with the URL for the UpdateSite database on the server. -Click finish and restart the Domino Designer You are done! :-) (I told you it was easy)

---------------------
http://nevermind.dk/nevermind/blog.nsf/subject/how-to-install-the-new-xpages-extension-library-with-the-eclipse-update-site-database-(it-is-easy)
Oct 20, 2011
803 hits



Recent Blog Posts
140


The classic recycle design pattern is flawed in some document iterations
Fri, Apr 26th 2013 7:57a   Jesper Kiaer
As we all know you need to recycle your Domino Objects in Java to free up the back-end C++ objects, or your server will crash in the end. People in general use the same pattern when iterating through documents. Something like this: Document doc = view.getFirstDocument(); while (doc != null) { Document tmpdoc = view.getNextDocument(doc); doc.recycle(); doc = tmpdoc; } This will work in must situations, but in at least one situation you will get a serious NotesException: "Object has been [read] Keywords: domino bug database java server
233


Using Solid-State Drives in your servers? Beware research show risk of massive data loss
Tue, Mar 12th 2013 4:46p   Jesper Kiaer
If you like me are using Solid-State Drives (SSD) in servers because of the great performance ...beware! New research show that 13 out of 15 Solid-State drives will suffer data loss or worse when they lose power. That is really scary numbers! ... so maybe it is time to check the UPS again? ;-) See more at http://www.infoworld.com/t/solid-state-drives/test-your-ssds-or-risk-massive-data-loss-researchers-warn-213715 [read] Keywords:
241


Has Sharepoint interest peaked?
Tue, Feb 5th 2013 4:00p   Jesper Kiaer
[read] Keywords: sharepoint
462


Why your Notes directory suddenly grows several Gigabytes
Mon, Sep 24th 2012 3:08p   Jesper Kiaer
Today I was cleaning up they hardrive containing my Lotus Notes installation. It is installed on a Solid State Disk and it had only 5 Gigs left. It is known fact that a SSD must have plenty of free space otherwise it is going to crash and burn way too soon. I was looking to clean up my Notes installation a bit, but first I needed take a backup of it and I noticed it was very large. During the backup, which was actually a simple copy, I saw it took a long time to copy several files, hence they h [read] Keywords: lotus notes workspace
265


When the order is crucial - use of both compression and encryption on data.
Mon, May 7th 2012 6:46a   Jesper Kiaer
Sometimes the order in which things are done is really crucial. An example to this is the mix of encrypted and compressed data. Should you: Compress encrypted data ? or Encrypt compressed data? Due to the nature of encryption and compression the answer is of course very obvious, but I will anyhow back it with a small example. I have created some simple Java code which does the following: 1. Takes an XML file with domain names and creates an DES encrypted file from it. 2. Creates a compress [read] Keywords: java xml
540


Mail "slide in a summary" pop-up feature in Lotus Notes 8.5.3 - was this ever tested at IBM?
Fri, Apr 13th 2012 5:13a   Jesper Kiaer
Several times I have wondered, does IBM really have a team of testers in connection with Lotus Notes development? ..or are things just tested á la "this seems to work OK, ..next" ? I have come to the conclusion the later is sometimes the case. If you have used the new "slide in a summary" pop-up feature in Lotus Notes 8.5.3, which shows a window when new mails have arrived, you may know what I mean By analyzing the behavior of the pop-up it seems to pop-up when a new mail has arrived to [read] Keywords: ibm lotus notes database development




167


Flaw in popular mobile apps exposes users to identity theft - storing passwords in plain text files
Mon, Apr 9th 2012 1:47p   Jesper Kiaer
Storing passwords in plain text files on an iPhone?? You would think it would be very obvious that this a very bad idea, right?. But NO! ..Facebook, LinkedIn, Dropbox (again?) and others thinks this is a great idea...well at least until Security researcher Gareth Wright revealed how they handles security in their iPhone Apps (and most likely Android too he says). Again this makes you think...when such a fundamental security rule is broken, which other are broken too? Outsourcing anyone? Li [read] Keywords: facebook iphone linkedin mobile security
221


The old joke of making somebody read complex names out loud in an airport, which actually means something very different, (still funny)
Tue, Mar 27th 2012 1:43p   Jesper Kiaer
Found this joke in an very old mail... This is an absolute classic. you must read the story first. Its a bit complicated the story, but basically they wait for a flight from a far away place and then write down names to give to the announcer at the airport and then go near a speaker and record what they say This is his story..... "We'd go and sit on the balcony at Terminal 3 at Heathrow, directly under one of the speakers as the roof is low. We put the tape machine in our bag with the microp [read] Keywords: mobile
1019


Importing Holidays into the Lotus Notes Calendar
Thu, Mar 15th 2012 5:34a   Jesper Kiaer
There are a few simple steps to update a Lotus Notes Calendar with holidays for your country or religion. The administrator: Open up the administrator client and go to the "Configuration" tab. Go down to the "Miscellaneous" section and open up "Holidays". You will see entries for each country or religion. They may look old but they are actually repeats so they could be quite valid. My old entries here are good for 10 years. The newest Holiday entries are kept in the NAB template. To [read] Keywords: lotus notes
296


Youporn.com handles over 300.000 queries per second with Redis NoSQL database cluster
Thu, Feb 23rd 2012 2:49p   Jesper Kiaer
If you really want to stress test your hardware and software solutions nothing does it better than a free porn site. Youporn.com runs Redis as their primary database, which of course is a NoSQL database. A cluster of Redis databases handles over 300.000 queries per second!!. and over 100 million page views per day. That is a hole lot of queries and page views... You can read some of the technical background for youporn.com here and if you have not bookmarked it already you can access the bu [read] Keywords: database




Created and Maintained by Yancy Lent - About - Blog Submission - Suggestions - Change Log - Blog Widget - Advertising - Mobile Edition