In my quest to find a way to automatically wrap commit messsages in the Subclipse SVN plug-in for Eclipse I found a description of some of the properties that are used to control the commit message dialog. Unfortunately it looks like there is no way to wrap the lines in the commit message dialog although no linebreaks are inserted. Bummer!
Java in Notes/Domino Explained: Stacktraces

Not much information on Java in Notes/Domino per say in this post but simply a pointer to a nice article on reading stack and tread dumps which is a must for all programming in Java.
Remember that as of Java 1.4 (Notes/Domino 7.x) you can use Java classes access the elements of a stacktrace. You can use this to further diagnose the trace and make a more intelligent decision on how to handle it. Look for the StackTraceElement class in the javadocs.
Link to article: Of Thread dumps and stack traces ….
Sametime 7.5.1 tabbed interface is loosing messages!
Well let’s say I was shocked when I found this out… After upgrading to Sametime 7.5.1 on the client as well on the server we have been been using the tabbed interface to handle the chats. While I like the interface a lot, my coworkers and I have stopped using it since we are experiencing that some chat messages simply dosn’t show up the Sametime Connect client and are “lost”.
We became aware of the problem when one of my coworkers told me that his Connect client was “dinging” but no new chat message appeared. I discounted the idea but as he kept telling me about this and I started experiencing it myself I started to get curious. Yesterday we decided to do a systematic test and have been able to consistently reproduced the issue. The issue is only visible when using the tabbed chat interface.
It doesn’t seem to be a problem with the server or client per say but the interface as the messages are showing the chat history.
Symptoms
The chat window flashes and “dings” but no new message is showing in the chat window. If you close the chat window and reopen it the full chat exchange, incl. all messages, are showing up – also the “lost” ones.
The issue occurs both for text messages, emoticons (which is simply text) and for graphics
System configuration
- Server: Sametime 7.5.1, US English, on IBM Lotus Domino 7.0.2 on Windows 2003 Server
- Client(s): Sametime 7.5.1 Connect client on Windows XP Prof. SP2 using the tabbed chat interface
Steps to reproduce
- User 1 and user 2 configures their Connect client to use the tabbed chat interface
- User 1 sends user 2 series of messages using an ascending messaging scheme (e.g. a, b, c)
- User 2 sends user 1 series of messages using an ascending messaging scheme (e.g. 1, 2, 3)
At some point you’ll discover that some messages are missing when looking at the ascending numbers or letters. Below is a couple of screenshots from a chat exchange from the office. The first screenshot is from my computer and I’m simply sending letters to my chat partner who is responding with numbers.
The second screenshot shows my chat partners Connect client after I have sent my third message (“c”). As you can see the second message (“b”) has been lost and isn’t showing. Also the name isn’t showing in front of my third message (“c”).
The third and final screenshot is of my chat partners chat history dialog. As you see all 6 messages (“1”, “2”, “3”, “a”, “b” and “c”) is showing here and is correctly prefixed.
As previously stated we have been able to consistently reproduce the issue on multiple occasions. I would be very much interested to hear if anyone else has been experiencing similar issues with the tabbed interface.
Service pack installation
Just found this nice tip from a friend of mine on installing service packs in VMWare images. When installing for example service pack 2 in a Windows XP image you can use the “/n” parameter to avoid saving backup files which might not be worth the diskspace in an image. Also using “/u” will make the installation program simply install the service pack and reboot the machine and not prompt you for approval.
Todays links to the composite blog
Joost
Got an invitation to Joost from Per Henrik Lausten – thanks!! I definitely looking forward to trying it out after having heard so much about it.
That’s a new one. Unknown LotusScript error.
Anyone how knows the LotusScript error “Duplicate option”? I have been unable to find anything on developerWorks or on Google. Nothing fancy being done – vanilla LotusScript in a shared action with reference to a script library.

New Kids on the Blog… :-)
I too (like Ed) am noticing the explosion of IBM’ers bloggin’ and the explosion of IBM Lotus product blogs. It’s getting hard to follow along on all the subjects!
Deploying your plug-ins in Notes 8 and Sametime 7.5.x
This document discusses the Notes 8 "shelfViews" programming model, and explicitly explains how to contribute a shelf view to the Notes 8 sidebar. There are basically two steps: 1. Create a view and add a contribution to the org.eclipse.ui.views extension point. 2. Contribute the view to the com.ibm.rcp.ui.shelfViews extension point to have it appear in the sidebar. Following these descriptions, we compare the Notes 8 "shelfViews" programming model to the Sametime "miniApps" programming models, such that developers will know how to migrate a plugin from the Sametime client to the Notes 8 client.
Documentation — Sidebar Contribution Design Pattern and Migrating a Sametime 7.5 plugin over to Notes 8 via the Composite Application blog.