<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en-US" xml:base="http://per.lausten.dk/blog/wp-atom.php">
	<title type="text">Per Henrik Lausten</title>
	<subtitle type="text">A blog on IBM Notes, IBM Domino, IBM XWork Server, XPages and more</subtitle>

	<updated>2013-05-28T21:30:33Z</updated>

	<link rel="alternate" type="text/html" href="http://per.lausten.dk/blog" />
	<id>http://per.lausten.dk/blog/feed/atom</id>
	

	<generator uri="http://wordpress.org/">WordPress</generator>
		<feedburner:info uri="per_henrik_lausten" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><logo>http://per.lausten.dk/i/per-lausten-button.png</logo><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://per.lausten.dk/blog/atom.xml" /><feedburner:emailServiceId>Per_Henrik_Lausten</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly>A blog on Lotus Domino, IT Architecture, technology and other IT stuff</feedburner:browserFriendly><entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[How to recycle Notes objects in XPages and Java]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/I0-Hbx1xUaU/how-to-recycle-notes-objects-in-xpages-and-java.html" />
		<id>http://per.lausten.dk/blog/?p=1146</id>
		<updated>2013-05-28T21:30:33Z</updated>
		<published>2013-05-28T20:34:37Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="Java" /><category scheme="http://per.lausten.dk/blog" term="Javascript" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Using Notes objects in XPages and in Java require that you recycle those objects in order to avoid memory leaks and backend out of memory issues. Here I will summarize how to do proper recycling in XPages for server-side javascript, Java and Java using the new OpenNTF project org.openntf.domino. Server-side JavaScript With server-side JavaScript you [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html' rel='bookmark' title='Notes/Domino 8.5.3 Upgrade Pack 1: Great news for XPages'>Notes/Domino 8.5.3 Upgrade Pack 1: Great news for XPages</a></li>
<li><a href='http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html' rel='bookmark' title='XPages Extension Library on OpenNTF updated to match Upgrade Pack 1'>XPages Extension Library on OpenNTF updated to match Upgrade Pack 1</a></li>
<li><a href='http://per.lausten.dk/blog/2012/09/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html' rel='bookmark' title='I am now an IBM Certified Advanced Application Developer &#8211; Lotus Notes and Domino 8.5'>I am now an IBM Certified Advanced Application Developer &#8211; Lotus Notes and Domino 8.5</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/05/how-to-recycle-notes-objects-in-xpages-and-java.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-recycle-notes-objects-in-xpages-and-java">&lt;p&gt;Using Notes objects in XPages and in Java &lt;a href="http://www-01.ibm.com/support/docview.wss?uid=swg21097861"&gt;require that you recycle&lt;/a&gt; those objects in order to avoid memory leaks and &lt;a href="http://www-01.ibm.com/support/docview.wss?uid=swg21438386"&gt;backend out of memory issues&lt;/a&gt;. Here I will summarize how to do proper recycling in XPages for server-side javascript, Java and Java using the new OpenNTF project &lt;a href="http://www.openntf.org/p/OpenNTF%20Domino%20API"&gt;org.openntf.domino&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Server-side JavaScript&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;With server-side JavaScript you have to use the recycle method available on Notes objects &lt;span style="text-decoration: underline;"&gt;and&lt;/span&gt; you have to "nullify" your server-side JavaScript variables. Thank you, &lt;a href="http://tonymcguckin.wordpress.com/"&gt;Tony McGuckin&lt;/a&gt;, for clarifying this.&lt;/p&gt;
&lt;p&gt;Here's a very simple example that assumes that the variable doc has been initialized elsewhere:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
doc.recycle();
doc = null;
&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Java&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In Java you have to use the recycle method available on Notes objects. So for looping through a document collection you have to do this:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
try {
	Database dbCurrent = ExtLibUtil.getCurrentDatabase();
	DocumentCollection dc = db.getAllDocuments();
	Document doc = dc.getFirstDocument();
	While (doc != null) {
		// process doc
		tmp = dc.getNextDocument(doc);
		doc.recycle();
		doc = tmp;
	}
	dc.recycle();
} catch (NotesException e) {
	e.printStackTrace();
}
&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;org.openntf.domino&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;With org.openntf.domino you do &lt;a href="http://www.timtripcony.com/blog.nsf/d6plinks/TTRY-95Z8MX"&gt;nothing&lt;/a&gt; with regards to recycling! So when looping through a document collection you can concentrate on your business logic:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
Database db = Factory.getSession().getCurrentDatabase();
for (Document doc : db.getAllDocuments())
	// process doc
}
&lt;/pre&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html' rel='bookmark' title='Notes/Domino 8.5.3 Upgrade Pack 1: Great news for XPages'&gt;Notes/Domino 8.5.3 Upgrade Pack 1: Great news for XPages&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html' rel='bookmark' title='XPages Extension Library on OpenNTF updated to match Upgrade Pack 1'&gt;XPages Extension Library on OpenNTF updated to match Upgrade Pack 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/09/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html' rel='bookmark' title='I am now an IBM Certified Advanced Application Developer &amp;#8211; Lotus Notes and Domino 8.5'&gt;I am now an IBM Certified Advanced Application Developer &amp;#8211; Lotus Notes and Domino 8.5&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=I0-Hbx1xUaU:cHeAltxnHy8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=I0-Hbx1xUaU:cHeAltxnHy8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=I0-Hbx1xUaU:cHeAltxnHy8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=I0-Hbx1xUaU:cHeAltxnHy8:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/I0-Hbx1xUaU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/05/how-to-recycle-notes-objects-in-xpages-and-java.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-recycle-notes-objects-in-xpages-and-java#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/05/how-to-recycle-notes-objects-in-xpages-and-java.html/feed/atom" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/05/how-to-recycle-notes-objects-in-xpages-and-java.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-recycle-notes-objects-in-xpages-and-java</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[OpenNTF webinars for the open source community]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/JjjAu6VyKJs/opennt-webinars-for-the-open-source-community.html" />
		<id>http://per.lausten.dk/blog/?p=1138</id>
		<updated>2013-05-06T06:46:58Z</updated>
		<published>2013-05-06T06:45:19Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM Connections" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="open source" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[OpenNTF has announced a new initiative called OpenNTF Webinars. The first webinar takes place tomorrow, Tuesday May 7, and is all about OpenNTF. Join the web meeting and hear Bruce Elgort, Serdar Basegmez, Jesse Gallagher, Niklas Heidloff, Peter Tanner and me talk about OpenNTF and about what OpenNTF can offer the open source community. Future webinars [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html' rel='bookmark' title='PHL Consult supports OpenNTF and open source'>PHL Consult supports OpenNTF and open source</a></li>
<li><a href='http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html' rel='bookmark' title='I am a member director on the OpenNTF board of directors'>I am a member director on the OpenNTF board of directors</a></li>
<li><a href='http://per.lausten.dk/blog/2011/06/xpages-seo-custom-control-on-openntf.html' rel='bookmark' title='XPages SEO custom control on OpenNTF'>XPages SEO custom control on OpenNTF</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/05/opennt-webinars-for-the-open-source-community.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=opennt-webinars-for-the-open-source-community">&lt;p&gt;&lt;a href="http://www.openntf.org"&gt;&lt;img class="alignright" alt="logo" src="http://per.lausten.dk/blog/wp-content/uploads/2013/05/logo.jpeg" width="239" height="86" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;OpenNTF has announced &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/NHEF-97493G"&gt;a new initiative called OpenNTF Webinars&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/NHEF-97F9BK"&gt;The first webinar&lt;/a&gt; takes place tomorrow, Tuesday May 7, and is all about OpenNTF. Join the web meeting and hear &lt;a href="https://twitter.com/belgort"&gt;Bruce Elgort&lt;/a&gt;, &lt;a href="https://twitter.com/sbasegmez"&gt;Serdar Basegmez&lt;/a&gt;, &lt;a href="https://twitter.com/Gidgerby"&gt;Jesse Gallagher&lt;/a&gt;, &lt;a href="https://twitter.com/nheidloff"&gt;Niklas Heidloff&lt;/a&gt;, Peter Tanner and me talk about OpenNTF and about what OpenNTF can offer the open source community.&lt;/p&gt;
&lt;p&gt;Future webinars will be announced at the &lt;a href="http://webinars.openntf.org/"&gt;webinar landing page&lt;/a&gt;.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html' rel='bookmark' title='PHL Consult supports OpenNTF and open source'&gt;PHL Consult supports OpenNTF and open source&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html' rel='bookmark' title='I am a member director on the OpenNTF board of directors'&gt;I am a member director on the OpenNTF board of directors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/06/xpages-seo-custom-control-on-openntf.html' rel='bookmark' title='XPages SEO custom control on OpenNTF'&gt;XPages SEO custom control on OpenNTF&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=JjjAu6VyKJs:L3iCSXRufOQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=JjjAu6VyKJs:L3iCSXRufOQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=JjjAu6VyKJs:L3iCSXRufOQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=JjjAu6VyKJs:L3iCSXRufOQ:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/JjjAu6VyKJs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/05/opennt-webinars-for-the-open-source-community.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=opennt-webinars-for-the-open-source-community#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/05/opennt-webinars-for-the-open-source-community.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/05/opennt-webinars-for-the-open-source-community.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=opennt-webinars-for-the-open-source-community</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Using an existing SSL certificate on IBM Domino]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/avRnamrnS7Q/using-an-existing-ssl-certificate-on-ibm-domino.html" />
		<id>http://per.lausten.dk/blog/?p=1136</id>
		<updated>2013-05-02T20:21:18Z</updated>
		<published>2013-05-02T20:21:18Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="SSL" />		<summary type="html"><![CDATA[A customer of mine had an existing wild card SSL certificate running on IIS. They wanted to use this wild card SSL certificate for their IBM Domino server. I had all the SSL certificate files available (the trusted root CA, the certificate and the private key). So I quickly found the guide from Gab Davis and did [...]<div class='yarpp-related-rss yarpp-related-none'>
<hr />
No related posts (automatically generated).
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/05/using-an-existing-ssl-certificate-on-ibm-domino.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-an-existing-ssl-certificate-on-ibm-domino">&lt;p&gt;A customer of mine had an existing wild card SSL certificate running on IIS. They wanted to use this wild card SSL certificate for their IBM Domino server.&lt;/p&gt;
&lt;p&gt;I had all the SSL certificate files available (the trusted root CA, the certificate and the private key). So I quickly found &lt;a href="http://www.turtleweb.com/turtleblog.nsf/dx/11022009232215GDAVGR.htm"&gt;the guide from Gab Davis&lt;/a&gt; and did something similar: I created a key ring using the Server Certificate application on the Domino server and installed the trusted root certificate into the key ring. I then opened the key ring file in &lt;a href="ftp://ftp.software.ibm.com/software/lotus/tools/Domino/gsk5-ikeyman.zip"&gt;the gsk5 version of iKeyman&lt;/a&gt; (on Windows XP in order for it to run) but ran into the issue that I was unable to import the private key (.pfx).&lt;/p&gt;
&lt;p&gt;The solution was to import the private key file in the Certificates program (certmgr.msc) by opening the private key file (and providing the password for the file and selecting the option to mark the key as exportable). Once imported I then exported the same private key as PKCS#12 (.pfx) and I was now able to import the private key as a personal certificate in the gsk5 version of iKeyman.&lt;/p&gt;
&lt;p&gt;I saved the updated key file, added it to the IBM Domino server, and HTTPS was then working as expected.&lt;/p&gt;
&lt;div class='yarpp-related-rss yarpp-related-none'&gt;
&lt;hr /&gt;&lt;p&gt;No related posts (automatically generated).&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=avRnamrnS7Q:ttAZAQgk1jI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=avRnamrnS7Q:ttAZAQgk1jI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=avRnamrnS7Q:ttAZAQgk1jI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=avRnamrnS7Q:ttAZAQgk1jI:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/avRnamrnS7Q" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/05/using-an-existing-ssl-certificate-on-ibm-domino.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-an-existing-ssl-certificate-on-ibm-domino#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/05/using-an-existing-ssl-certificate-on-ibm-domino.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/05/using-an-existing-ssl-certificate-on-ibm-domino.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-an-existing-ssl-certificate-on-ibm-domino</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[How to force a reload of JS and CSS files when changed]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/pVMoeaJqf4w/how-to-force-a-reload-of-js-and-css-files-when-changed.html" />
		<id>http://per.lausten.dk/blog/?p=1121</id>
		<updated>2013-04-11T12:06:01Z</updated>
		<published>2013-04-10T08:14:58Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM XWork Server" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Caching of Javascript and CSS files is great and really improves performance in the browser. But caching also means that changes to the files are not picked up. So how do you get the browser to automatically reload the files when you have updated them because of new requirements, bug fixed etc.? There are several [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/02/xpages-2-very-easy-performance-optimization-tricks.html' rel='bookmark' title='XPages: 2 very easy performance optimization tricks'>XPages: 2 very easy performance optimization tricks</a></li>
<li><a href='http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html' rel='bookmark' title='Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here'>Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here</a></li>
<li><a href='http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html' rel='bookmark' title='XPages Extension Library on OpenNTF updated to match Upgrade Pack 1'>XPages Extension Library on OpenNTF updated to match Upgrade Pack 1</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/04/how-to-force-a-reload-of-js-and-css-files-when-changed.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-force-a-reload-of-js-and-css-files-when-changed">&lt;p&gt;Caching of Javascript and CSS files is great and really improves performance in the browser. But caching also means that changes to the files are not picked up. So how do you get the browser to automatically reload the files when you have updated them because of new requirements, bug fixed etc.?&lt;/p&gt;
&lt;p&gt;There are several ways to achieve this. On Apache you can for instance use &lt;a href="https://code.google.com/p/modpagespeed/"&gt;the modpagespeed module&lt;/a&gt; that automatically changes links to resources when the backend resource files change. Other ways include manually adding a version number to your resources (?version=1234), and changing the file name of the resource.&lt;/p&gt;
&lt;p&gt;For IBM Domino, IBM XWork Server and XPages you can of course manually change the file name of your resources when content changes (and remember to update references to those files in your code). A better method is to create your own versioning system for your resources based on the idea of adding a unique id to the link to the resources. The following describes this method.&lt;/p&gt;
&lt;p&gt;You can add a version number to an application scoped bean and then update that version number whenever you want the browser to reload your resources. Here's a code snippet for such a version number bean (this is only some of the stuff needed for a bean - see &lt;a href="http://per.lausten.dk/blog/2012/02/creating-your-first-managed-bean-for-xpages.html"&gt;my blog post about creating a bean&lt;/a&gt; for more details) :&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
public class Config implements Serializable {
	private static final long serialVersionUID = 6469339826789980362L;
	private static final String version = &amp;quot;20130410&amp;quot;;

	public static String getVersion() {
		return version;
	}
}
&lt;/pre&gt;
&lt;p&gt;Using this bean I can then create links to my Javascript and CSS files like this:&lt;/p&gt;
&lt;pre class="brush: xml; title: ; notranslate"&gt;
&amp;lt;xp:this.resources&amp;gt;
	&amp;lt;xp:script clientSide=&amp;quot;true&amp;quot;&amp;gt;
		&amp;lt;xp:this.src&amp;gt;&amp;lt;![CDATA[${javascript:&amp;quot;/jsCommon?open&amp;amp;v=&amp;quot; + config.getVersion()}]]&amp;gt;&amp;lt;/xp:this.src&amp;gt;
	&amp;lt;/xp:script&amp;gt;
	&amp;lt;xp:styleSheet&amp;gt;
		&amp;lt;xp:this.href&amp;gt;&amp;lt;![CDATA[${javascript:&amp;quot;/custom.css?open&amp;amp;v=&amp;quot; + config.getVersion()}]]&amp;gt;&amp;lt;/xp:this.href&amp;gt;
	&amp;lt;/xp:styleSheet&amp;gt;
&amp;lt;/xp:this.resources&amp;gt;
&lt;/pre&gt;
&lt;p&gt;The links then look like this in the browser:&lt;/p&gt;
&lt;pre class="brush: xml; title: ; notranslate"&gt;
db.nsf/custom.css?open&amp;amp;amp;v=20130410
db.nsf/jsCommon?open&amp;amp;amp;v=20130410
&lt;/pre&gt;
&lt;p&gt;Whenever I want to force a reload, I then update the version string in my Config bean. The resources are then reloaded.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/02/xpages-2-very-easy-performance-optimization-tricks.html' rel='bookmark' title='XPages: 2 very easy performance optimization tricks'&gt;XPages: 2 very easy performance optimization tricks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html' rel='bookmark' title='Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here'&gt;Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html' rel='bookmark' title='XPages Extension Library on OpenNTF updated to match Upgrade Pack 1'&gt;XPages Extension Library on OpenNTF updated to match Upgrade Pack 1&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=pVMoeaJqf4w:WL0JGfejYIs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=pVMoeaJqf4w:WL0JGfejYIs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=pVMoeaJqf4w:WL0JGfejYIs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=pVMoeaJqf4w:WL0JGfejYIs:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/pVMoeaJqf4w" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/04/how-to-force-a-reload-of-js-and-css-files-when-changed.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-force-a-reload-of-js-and-css-files-when-changed#comments" thr:count="8" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/04/how-to-force-a-reload-of-js-and-css-files-when-changed.html/feed/atom" thr:count="8" />
		<thr:total>8</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/04/how-to-force-a-reload-of-js-and-css-files-when-changed.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-force-a-reload-of-js-and-css-files-when-changed</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Free 1-day seminar on April 24 hosted by Notesnet.dk]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/owYMeXIkWbs/free-1-day-seminar-on-april-24-hosted-by-notesnet-dk.html" />
		<id>http://per.lausten.dk/blog/?p=1116</id>
		<updated>2013-03-20T21:52:31Z</updated>
		<published>2013-03-20T21:52:31Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="conference" /><category scheme="http://per.lausten.dk/blog" term="IBM Connections" /><category scheme="http://per.lausten.dk/blog" term="IBM Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="IBM Notes 9" /><category scheme="http://per.lausten.dk/blog" term="IBM XWork Server" /><category scheme="http://per.lausten.dk/blog" term="Notesnet" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[I am proud to announce a free 1-day seminar hosted by Notesnet.dk. The purpose of the seminar is to show companies the powerful features of IBM Notes 9, IBM Domino 9, IBM XWork Server 9, IBM Connections 4.5, XPages and much more - including case stories. The seminar is for existing IBM Domino customers and [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/04/i-am-now-chairman-of-the-board-at-notesnet-dk.html' rel='bookmark' title='I am now chairman of the board at NotesNet.dk'>I am now chairman of the board at NotesNet.dk</a></li>
<li><a href='http://per.lausten.dk/blog/2012/05/sherlock-web-a-qhse-management-system-based-on-xpages-and-ibm-xwork-server.html' rel='bookmark' title='Sherlock Web: a QHSE management system (based on XPages and IBM XWork Server)'>Sherlock Web: a QHSE management system (based on XPages and IBM XWork Server)</a></li>
<li><a href='http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html' rel='bookmark' title='My impressions from IBM Connect 2013'>My impressions from IBM Connect 2013</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/03/free-1-day-seminar-on-april-24-hosted-by-notesnet-dk.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=free-1-day-seminar-on-april-24-hosted-by-notesnet-dk">&lt;p&gt;&lt;img class="aligncenter size-full wp-image-655" alt="Notesnet" src="http://per.lausten.dk/blog/wp-content/uploads/2010/09/notesnet.jpg" width="400" height="64" /&gt;&lt;br /&gt;
I am proud to announce a &lt;a href="http://notesnet.dk/seminar"&gt;free 1-day seminar hosted by Notesnet.dk&lt;/a&gt;. The purpose of the seminar is to show companies the powerful features of IBM Notes 9, IBM Domino 9, IBM XWork Server 9, IBM Connections 4.5, XPages and much more - including case stories. The seminar is for existing IBM Domino customers and for potential IBM Domino customers, and takes place on April 24.&lt;/p&gt;
&lt;p&gt;Have a look at &lt;a href="http://notesnet.dk/seminar-agenda"&gt;the agenda&lt;/a&gt; and &lt;a href="http://notesnet.dk/seminar"&gt;sign up to attend&lt;/a&gt; if the seminar is of interest to you. The seminar and online content is in Danish.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/04/i-am-now-chairman-of-the-board-at-notesnet-dk.html' rel='bookmark' title='I am now chairman of the board at NotesNet.dk'&gt;I am now chairman of the board at NotesNet.dk&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/05/sherlock-web-a-qhse-management-system-based-on-xpages-and-ibm-xwork-server.html' rel='bookmark' title='Sherlock Web: a QHSE management system (based on XPages and IBM XWork Server)'&gt;Sherlock Web: a QHSE management system (based on XPages and IBM XWork Server)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html' rel='bookmark' title='My impressions from IBM Connect 2013'&gt;My impressions from IBM Connect 2013&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=owYMeXIkWbs:hp-rsBkMOJU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=owYMeXIkWbs:hp-rsBkMOJU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=owYMeXIkWbs:hp-rsBkMOJU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=owYMeXIkWbs:hp-rsBkMOJU:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/owYMeXIkWbs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/03/free-1-day-seminar-on-april-24-hosted-by-notesnet-dk.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=free-1-day-seminar-on-april-24-hosted-by-notesnet-dk#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/03/free-1-day-seminar-on-april-24-hosted-by-notesnet-dk.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/03/free-1-day-seminar-on-april-24-hosted-by-notesnet-dk.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=free-1-day-seminar-on-april-24-hosted-by-notesnet-dk</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[IBM Connect 2013 Update with Intravision]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/5sXAUR74bXo/ibm-connect-2013-update-with-intravision.html" />
		<id>http://per.lausten.dk/blog/?p=1111</id>
		<updated>2013-02-19T12:31:02Z</updated>
		<published>2013-02-19T12:31:02Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM Connect 2013" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Intravision is hosting two IBM Connect 2013 Update seminars in Copenhagen on February 25 and in Århus March 6 where speakers from Intravision and from IBM will share news from IBM Connect 2013. I am happy to have been invited by Intravision to speak about news from IBM Connect around XPages. I will be speaking about the IBM [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html' rel='bookmark' title='My impressions from IBM Connect 2013'>My impressions from IBM Connect 2013</a></li>
<li><a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&#8217;m speaking at IBM Connect 2013'>I&#8217;m speaking at IBM Connect 2013</a></li>
<li><a href='http://per.lausten.dk/blog/2012/12/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html' rel='bookmark' title='I have been nominated as IBM Champion for IBM Collaboration Solutions for 2013'>I have been nominated as IBM Champion for IBM Collaboration Solutions for 2013</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/02/ibm-connect-2013-update-with-intravision.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-connect-2013-update-with-intravision">&lt;p&gt;&lt;a href="http://www.intravision.dk/"&gt;Intravision&lt;/a&gt; is hosting two IBM Connect 2013 Update seminars in &lt;a href="http://www.intravision.dk/index.php/component/ohanah/ibm-connect-2013-update-med-intravision"&gt;Copenhagen on February 25&lt;/a&gt; and &lt;a href="http://www.intravision.dk/index.php/component/ohanah/copy-of-ibm-connect-2013-update-med-intravision-1"&gt;in Århus March 6&lt;/a&gt; where speakers from Intravision and from IBM will share news from IBM Connect 2013.&lt;/p&gt;
&lt;p&gt;I am happy to have been invited by Intravision to speak about news from IBM Connect around XPages. I will be speaking about the IBM Social Business Toolkit, integration between XPages and IBM Connections, Embedded Experiences and more.&lt;/p&gt;
&lt;p&gt;Remember to register if you are interested in attending one of the seminars.&lt;/p&gt;
&lt;p&gt;&lt;em id="__mceDel"&gt; &lt;img class="aligncenter" alt="" src="http://per.lausten.dk/blog/wp-content/uploads/2012/12/connect2013.png" width="423" height="152" /&gt;&lt;/em&gt;&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html' rel='bookmark' title='My impressions from IBM Connect 2013'&gt;My impressions from IBM Connect 2013&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&amp;#8217;m speaking at IBM Connect 2013'&gt;I&amp;#8217;m speaking at IBM Connect 2013&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/12/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html' rel='bookmark' title='I have been nominated as IBM Champion for IBM Collaboration Solutions for 2013'&gt;I have been nominated as IBM Champion for IBM Collaboration Solutions for 2013&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=5sXAUR74bXo:VHtk6D8Y7aE:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=5sXAUR74bXo:VHtk6D8Y7aE:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=5sXAUR74bXo:VHtk6D8Y7aE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=5sXAUR74bXo:VHtk6D8Y7aE:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/5sXAUR74bXo" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/02/ibm-connect-2013-update-with-intravision.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-connect-2013-update-with-intravision#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/02/ibm-connect-2013-update-with-intravision.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/02/ibm-connect-2013-update-with-intravision.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-connect-2013-update-with-intravision</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[My impressions from IBM Connect 2013]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/NOmhFaLcTqg/my-impressions-from-ibm-connect-2013.html" />
		<id>http://per.lausten.dk/blog/?p=1098</id>
		<updated>2013-02-10T08:05:04Z</updated>
		<published>2013-02-09T09:35:58Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="Cloud" /><category scheme="http://per.lausten.dk/blog" term="IBM Connect 2013" /><category scheme="http://per.lausten.dk/blog" term="IBM Connections" /><category scheme="http://per.lausten.dk/blog" term="IBM Notes 9" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Notes" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" />		<summary type="html"><![CDATA[Here are my impressions from the IBM Connect 2013 conference that I attended last week. Social collaboration IBM connections 4.5 is coming this March and is improved in many areas such as the new file sync feature. Customers with a valid IBM Domino entitlement can continue to use IBM Connections Files and Profiles features for [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&#8217;m speaking at IBM Connect 2013'>I&#8217;m speaking at IBM Connect 2013</a></li>
<li><a href='http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html' rel='bookmark' title='Thoughts from Lotusphere 2012: IBM Connections 4 (&#8220;Next&#8221;)'>Thoughts from Lotusphere 2012: IBM Connections 4 (&#8220;Next&#8221;)</a></li>
<li><a href='http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html' rel='bookmark' title='Thoughts from Lotusphere 2012: Lotus Notes Social Edition'>Thoughts from Lotusphere 2012: Lotus Notes Social Edition</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-impressions-from-ibm-connect-2013">&lt;p&gt;Here are my impressions from the &lt;a href="http://ibm.com/connect"&gt;IBM Connect 2013 conference&lt;/a&gt; that I attended last week.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Social collaboration&lt;/strong&gt;&lt;br /&gt;
IBM connections 4.5 is coming this March and is improved in many areas such as the new file sync feature.&lt;/p&gt;
&lt;p&gt;Customers with a valid IBM Domino entitlement can continue to use IBM Connections Files and Profiles features for free.&lt;/p&gt;
&lt;p&gt;Embedded applications in IBM Notes, IBM iNotes (web mail) and IBM Connections activity streams make it possible to act on business applications directly within the context of your mail or your activity stream.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Business applications&lt;br /&gt;
&lt;/strong&gt;The IBM platform for building powerful business web applications for the IBM Collaboration Solutions platform across desktop, tablets and smartphones is XPages running on IBM Domino 9.0 or IBM XWork Server 9.0.&lt;/p&gt;
&lt;p&gt;The platform contains many improvements such as including the XPages Extension Library in the default server and client install. XPages Extension LIbrary makes development and deployment of modern business applications faster and more powerful.&lt;/p&gt;
&lt;p&gt;The license for IBM XWork Server 9.0 is now $1,000 per 8 databases which further makes the IBM XWork Server a very competitive platform for business web applications.&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.ibm.com/cloud-computing/social/us/en/toolkit/"&gt;IBM Social Business Toolkit&lt;/a&gt; (IBM SBT) allows you to integrate the different IBM Collaboration Solutions products. You can as an example use  the SBT to create embedded experiences in XPages that runs in the activity stream of IBM Connections. You can check out the features of IBM SBT in the &lt;a href="https://greenhouse.lotus.com/sbt/SBTPlayground.nsf/Home.xsp"&gt;Social Business Toolkit Playground&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Mail&lt;/strong&gt;&lt;br /&gt;
IBM Domino 9.0, IBM Notes 9.0 and IBM iNotes 9.0 continues to be the center of mail and messaging.&lt;/p&gt;
&lt;p&gt;IBM Domino 9.0 makes it easy to migrate from Microsoft Exchange by using the Domino Migration Utility which is part of the 9.0 installation.&lt;/p&gt;
&lt;p&gt;IBM Connections Mail makes it possible to use mail directly within the context of IBM Connections.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;IBM Notes and IBM Domino&lt;br /&gt;
&lt;/strong&gt;IBM Notes 9.0 Social Edition and IBM Domino 9.0 arrives in March 2013. The &lt;a href="http://www.slideshare.net/edbrill/ibm-connect-2013-messaging-and-collaboration-roadmap"&gt;roadmap for IBM Domino&lt;/a&gt; has detailed plans until 2015 - showing a strong commitment from IBM towards IBM Notes and Domino.&lt;/p&gt;
&lt;p&gt;The IBM Notes 9.0 client comes with &lt;a href="http://per.lausten.dk/blog/2013/02/experience-ibm-notes-9-0-social-edition.html"&gt;many improvements&lt;/a&gt; in areas such as usability, productivity, and social collaboration - including a browser-based version of IBM Notes (Notes browser plugin) for use in combination with for example iNotes to be able to access applications that do not have a web frontend. IBM Notes 9.0 Social Edition also provides an activity stream for your IBM Connections updates and for embedded experiences for custom-built business applications.&lt;/p&gt;
&lt;p&gt;The IBM Domino 9.0 server adds lots of improvements to security (such as the option to run IBM Notes with no need for a local ID file!), OS support (Domino is finally available in a 64-bit version for Linux), maintenance, serviceability and performance.&lt;/p&gt;
&lt;p&gt;IBM can help you double check your investment in IBM Notes and Domino. Contact IBM for a free engagement where IBM will analyze your Domino environment and give you facts that you can use when comparing Domino with alternative solutions. IBM uses &lt;a href="http://www.trust-factory.com/24/about-trust-factory/"&gt;DNA by Trust Factory&lt;/a&gt; for this analysis. This offering is now called IBM Domino DoubleCheck - Powered by Trust Factory.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Cloud&lt;br /&gt;
&lt;/strong&gt;IBM does &lt;a href="https://www.ibm.com/cloud-computing/social/us/en/"&gt;cloud&lt;/a&gt; too (and at a &lt;a href="https://www.ibm.com/cloud-computing/social/us/en/planspricing/"&gt;great price&lt;/a&gt;) - whether it's about moving your &lt;a href="http://www.ibm.com/cloud-computing/social/us/en/emailcalendar/"&gt;mail&lt;/a&gt; to the cloud, adding &lt;a href="http://www.ibm.com/cloud-computing/social/us/en/collaborationim/"&gt;social collaboration&lt;/a&gt; including &lt;a href="http://www.ibm.com/cloud-computing/social/us/en/ibmdocs/"&gt;collaborative editing of documents&lt;/a&gt; and instant messaging or going hybrid (cloud and on-premises servers).&lt;/p&gt;
&lt;p&gt;With the before metioned &lt;a href="http://www.ibm.com/cloud-computing/social/us/en/toolkit/"&gt;IBM Social Business Toolkit&lt;/a&gt; you can extend your on-premises business applications in the cloud.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Chat&lt;br /&gt;
&lt;/strong&gt;The IBM Sametime product family will be enhanced with version 9 which is expected in the second half of 2013.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Final thoughts&lt;/strong&gt;&lt;br /&gt;
Overall it's a very impressive product family.&lt;/p&gt;
&lt;p&gt;Personally, I look forward to continue to build great business applications based on XPages for my customers.&lt;/p&gt;
&lt;p&gt;All presentations from the sessions at IBM Connect 2013 are available for registered attendees. Some of the presentations from the sessions are also &lt;a href="http://list.ly/list/37H-ibm-connect2013-sessions-on-slideshare"&gt;available publicly&lt;/a&gt;. Furthermore, some sessions have been recorded and are &lt;a href="http://www.livestream.com/ibmsoftware/folder?dirId=895a4e66-c690-4dbe-ba98-801b7d43a76b"&gt;available as video&lt;/a&gt; including the &lt;a href="http://livestre.am/4jNev"&gt;Opening General Session&lt;/a&gt;.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&amp;#8217;m speaking at IBM Connect 2013'&gt;I&amp;#8217;m speaking at IBM Connect 2013&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html' rel='bookmark' title='Thoughts from Lotusphere 2012: IBM Connections 4 (&amp;#8220;Next&amp;#8221;)'&gt;Thoughts from Lotusphere 2012: IBM Connections 4 (&amp;#8220;Next&amp;#8221;)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html' rel='bookmark' title='Thoughts from Lotusphere 2012: Lotus Notes Social Edition'&gt;Thoughts from Lotusphere 2012: Lotus Notes Social Edition&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=NOmhFaLcTqg:8qlm9mymK2g:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=NOmhFaLcTqg:8qlm9mymK2g:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=NOmhFaLcTqg:8qlm9mymK2g:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=NOmhFaLcTqg:8qlm9mymK2g:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/NOmhFaLcTqg" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-impressions-from-ibm-connect-2013#comments" thr:count="7" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html/feed/atom" thr:count="7" />
		<thr:total>7</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/02/my-impressions-from-ibm-connect-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-impressions-from-ibm-connect-2013</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Experience IBM Notes 9.0 Social Edition]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/qt33Jw3N47Y/experience-ibm-notes-9-0-social-edition.html" />
		<id>http://per.lausten.dk/blog/?p=1091</id>
		<updated>2013-02-05T19:10:44Z</updated>
		<published>2013-02-05T19:05:41Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM Notes 9" />		<summary type="html"><![CDATA[IBM Notes 9.0 Social Edition is coming in March 2013. Read all about the new features and download reference sheets with more detailed info at the updated Experience IBM Notes site.<div class='yarpp-related-rss yarpp-related-none'>
<hr />
No related posts (automatically generated).
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/02/experience-ibm-notes-9-0-social-edition.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=experience-ibm-notes-9-0-social-edition">&lt;p&gt;&lt;img class="aligncenter size-full wp-image-1095" alt="Experience Notes 9" src="http://per.lausten.dk/blog/wp-content/uploads/2013/02/Experience-Notes-9.png" width="615" height="134" /&gt;&lt;/p&gt;
&lt;p&gt;IBM Notes 9.0 Social Edition is coming in March 2013. Read all about the new features and download reference sheets with more detailed info at the updated &lt;a href="http://infolib.lotus.com/resources/experience/notes/"&gt;Experience IBM Notes site&lt;/a&gt;.&lt;/p&gt;
&lt;div class='yarpp-related-rss yarpp-related-none'&gt;
&lt;hr /&gt;&lt;p&gt;No related posts (automatically generated).&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=qt33Jw3N47Y:9hh7HdH8EKY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=qt33Jw3N47Y:9hh7HdH8EKY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=qt33Jw3N47Y:9hh7HdH8EKY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=qt33Jw3N47Y:9hh7HdH8EKY:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/qt33Jw3N47Y" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/02/experience-ibm-notes-9-0-social-edition.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=experience-ibm-notes-9-0-social-edition#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/02/experience-ibm-notes-9-0-social-edition.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/02/experience-ibm-notes-9-0-social-edition.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=experience-ibm-notes-9-0-social-edition</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Slides from SPOT104 &#8220;How We Built CollaborationToday.info in a Matter of Weeks&#8221;]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/o8Fgm8NymXg/slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks.html" />
		<id>http://per.lausten.dk/blog/?p=1089</id>
		<updated>2013-01-31T22:19:11Z</updated>
		<published>2013-01-31T22:19:11Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM Connect 2013" /><category scheme="http://per.lausten.dk/blog" term="open source" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" />		<summary type="html"><![CDATA[Here is the presentation that Bruce Elgort and I used for our IBM Connect 2013 session called "How We Built CollaborationToday.info in a Matter of Weeks". How We Built CollaborationToday.info in a Matter of Weeks from Per Henrik Lausten Thanks to all that attended our session. It was a great experience for me as a [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&#8217;m speaking at IBM Connect 2013'>I&#8217;m speaking at IBM Connect 2013</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2013/02/slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks">&lt;p&gt;Here is the presentation that Bruce Elgort and I used for our IBM Connect 2013 session called "How We Built &lt;a href="http://collaborationtoday.info/"&gt;CollaborationToday.info&lt;/a&gt; in a Matter of Weeks".&lt;/p&gt;
&lt;p&gt;&lt;iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://www.slideshare.net/slideshow/embed_code/16282831" height="356" width="427" allowfullscreen="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;div style="margin-bottom: 5px;"&gt;&lt;strong&gt; &lt;a title="How We Built CollaborationToday.info in a Matter of Weeks" href="http://www.slideshare.net/perlausten/spot104" target="_blank"&gt;How We Built CollaborationToday.info in a Matter of Weeks&lt;/a&gt; &lt;/strong&gt; from &lt;strong&gt;&lt;a href="http://www.slideshare.net/perlausten" target="_blank"&gt;Per Henrik Lausten&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;p&gt;Thanks to all that attended our session. It was a great experience for me as a 1st time speaker at IBM Connect/Lotusphere.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&amp;#8217;m speaking at IBM Connect 2013'&gt;I&amp;#8217;m speaking at IBM Connect 2013&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=o8Fgm8NymXg:CjEzoxDi9D4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=o8Fgm8NymXg:CjEzoxDi9D4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=o8Fgm8NymXg:CjEzoxDi9D4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=o8Fgm8NymXg:CjEzoxDi9D4:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/o8Fgm8NymXg" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2013/02/slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2013/02/slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2013/02/slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=slides-from-spot104-how-we-built-collaborationtoday-info-in-a-matter-of-weeks</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I have been nominated as IBM Champion for IBM Collaboration Solutions for 2013]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/ryymYI855r4/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html" />
		<id>http://per.lausten.dk/blog/?p=1077</id>
		<updated>2013-01-04T07:59:16Z</updated>
		<published>2012-12-17T19:09:51Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="community" /><category scheme="http://per.lausten.dk/blog" term="DanNotes" /><category scheme="http://per.lausten.dk/blog" term="IBM Champion" /><category scheme="http://per.lausten.dk/blog" term="Notesnet" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[I am truly honored to have been nominated as IBM Champion for IBM Collaboration Solutions for 2013. Thanks! I look forward to seeing a lot of them at IBM Connect 2013.<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&#8217;m speaking at IBM Connect 2013'>I&#8217;m speaking at IBM Connect 2013</a></li>
<li><a href='http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html' rel='bookmark' title='I have been re-elected for the OpenNTF board of directors'>I have been re-elected for the OpenNTF board of directors</a></li>
<li><a href='http://per.lausten.dk/blog/2011/10/my-1st-year-as-self-employed-consultant-at-phl-consult.html' rel='bookmark' title='My 1st year as self-employed consultant at PHL Consult'>My 1st year as self-employed consultant at PHL Consult</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/12/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013">&lt;p&gt;I am truly honored to have been nominated as &lt;a href="https://www-304.ibm.com/connections/blogs/socialbusiness/entry/2013_ibm_champions_for_collaboration_solutions"&gt;IBM Champion for IBM Collaboration Solutions for 2013&lt;/a&gt;. Thanks!&lt;/p&gt;
&lt;p&gt;&lt;img class="aligncenter size-full wp-image-1082" alt="d-mp-xm-ibmchampion" src="http://per.lausten.dk/blog/wp-content/uploads/2012/12/d-mp-xm-ibmchampion.jpg" width="930" height="160" /&gt;&lt;/p&gt;
&lt;p&gt;I look forward to seeing a lot of them at &lt;a href="http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html"&gt;IBM Connect 2013&lt;/a&gt;.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html' rel='bookmark' title='I&amp;#8217;m speaking at IBM Connect 2013'&gt;I&amp;#8217;m speaking at IBM Connect 2013&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html' rel='bookmark' title='I have been re-elected for the OpenNTF board of directors'&gt;I have been re-elected for the OpenNTF board of directors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/my-1st-year-as-self-employed-consultant-at-phl-consult.html' rel='bookmark' title='My 1st year as self-employed consultant at PHL Consult'&gt;My 1st year as self-employed consultant at PHL Consult&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ryymYI855r4:LbSaDv_cNL8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=ryymYI855r4:LbSaDv_cNL8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ryymYI855r4:LbSaDv_cNL8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ryymYI855r4:LbSaDv_cNL8:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/ryymYI855r4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/12/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/12/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/12/i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-have-been-nominated-as-ibm-champion-for-ibm-collaboration-solutions-for-2013</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[IBM Notes and Domino 9.0 Social Edition beta now available]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/kwcD044jfcc/ibm-notes-and-domino-9-0-social-edition-beta-now-available.html" />
		<id>http://per.lausten.dk/blog/?p=1068</id>
		<updated>2012-12-13T21:47:06Z</updated>
		<published>2012-12-13T21:38:35Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="IBM Notes 9" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="Lotus Notes" />		<summary type="html"><![CDATA[Ed Brill just announed that the IBM Notes and Domino 9.0 Social Edition betas are now available for download. The beta program is open for everyone so go ahead and sign up and try the new IBM Notes 9.0 Use the 9.0 beta forum for feedback. Here's the beautiful IBM Notes 9.0 (Mac) client: I have [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html' rel='bookmark' title='Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here'>Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/12/ibm-notes-and-domino-9-0-social-edition-beta-now-available.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-notes-and-domino-9-0-social-edition-beta-now-available">&lt;p&gt;&lt;a href="http://www.edbrill.com/ebrill/edbrill.nsf/dx/ibm-notes-and-domino-9.0-social-edition-public-beta-now-available"&gt;Ed Brill just announed&lt;/a&gt; that the IBM Notes and Domino 9.0 Social Edition betas are now &lt;a href="https://www14.software.ibm.com/webapp/iwm/web/reg/signup.do?source=swg-beta-nodoso&amp;amp;S_PKG=dl"&gt;available for download&lt;/a&gt;. The beta program is open for everyone so go ahead and sign up and try the new IBM Notes 9.0 &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt;  Use the &lt;a href="http://www-10.lotus.com/ldd/ndsebetaforum.nsf"&gt;9.0 beta forum&lt;/a&gt; for feedback.&lt;/p&gt;
&lt;p&gt;Here's the beautiful IBM Notes 9.0 (Mac) client:&lt;br /&gt;
&lt;img class="aligncenter size-full wp-image-1072" alt="IBM Notes 9" src="http://per.lausten.dk/blog/wp-content/uploads/2012/12/IBM-Notes-9.png" width="772" height="311" /&gt;&lt;/p&gt;
&lt;p&gt;I have upgraded my developer environment to 9.0 and look forward to &lt;a href="http://notesin9.com/index.php/2012/12/12/notesin9-099-domino-designer-9-social-edition-beta/"&gt;lots of improvements to IBM Domino Designer&lt;/a&gt;.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html' rel='bookmark' title='Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here'&gt;Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=kwcD044jfcc:M3SAaABw5Us:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=kwcD044jfcc:M3SAaABw5Us:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=kwcD044jfcc:M3SAaABw5Us:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=kwcD044jfcc:M3SAaABw5Us:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/kwcD044jfcc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/12/ibm-notes-and-domino-9-0-social-edition-beta-now-available.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-notes-and-domino-9-0-social-edition-beta-now-available#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/12/ibm-notes-and-domino-9-0-social-edition-beta-now-available.html/feed/atom" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/12/ibm-notes-and-domino-9-0-social-edition-beta-now-available.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-notes-and-domino-9-0-social-edition-beta-now-available</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I&#8217;m speaking at IBM Connect 2013]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/B1rNuQd41qA/im-speaking-at-ibm-connect-2013.html" />
		<id>http://per.lausten.dk/blog/?p=1057</id>
		<updated>2012-12-07T13:27:29Z</updated>
		<published>2012-12-07T08:52:57Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="IBM Connect 2013" /><category scheme="http://per.lausten.dk/blog" term="Lotusphere2013" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" />		<summary type="html"><![CDATA[Session abstract notifications for the IBM Connect 2013 conference were sent out yesterday (the conference previously known as Lotusphere). I submitted two session abstracts with Bruce Elgort and I am proud to say that we had one of the session abstracts accepted! Bruce and I will be speaking about "How We Built CollaborationToday.info in a Matter [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html' rel='bookmark' title='I am attending the IBM Connect/Lotusphere 2013 conference'>I am attending the IBM Connect/Lotusphere 2013 conference</a></li>
<li><a href='http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html' rel='bookmark' title='I am a member director on the OpenNTF board of directors'>I am a member director on the OpenNTF board of directors</a></li>
<li><a href='http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html' rel='bookmark' title='I have been re-elected for the OpenNTF board of directors'>I have been re-elected for the OpenNTF board of directors</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=im-speaking-at-ibm-connect-2013">&lt;p&gt;Session abstract notifications for the &lt;a href="http://ibm.com/connect"&gt;IBM Connect 2013 conference&lt;/a&gt; were sent out yesterday (the conference previously known as Lotusphere). I submitted two session abstracts with &lt;a href="http://bruceelgort.com/"&gt;Bruce Elgort&lt;/a&gt; and I am proud to say that we had one of the session abstracts accepted!&lt;/p&gt;
&lt;p&gt;Bruce and I will be speaking about "&lt;em&gt;How We Built CollaborationToday.info in a Matter of Weeks&lt;/em&gt;" on the new Spotlight on IBM Business Partners track.&lt;/p&gt;
&lt;p&gt;This is the session abstract:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;In this session, we will show you how we developed a great-looking, user-driven community news site called "Collaboration Today". We will walk you through how we developed the site's user experience and architecture. We will dive into how we made the app scalable, quick and accessible on all mobile devices and web browsers using responsive design. Best of all, this app is built with open-source components and is itself an open-source app available for you to download and use today. We will show you how other apps can utilize and present the content from Collaboration Today using the app's API.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The session focuses on the &lt;a href="http://collaborationtoday.info/"&gt;Collaboration Today news site&lt;/a&gt; that was &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/NHEF-8XZ9BK"&gt;released by OpenNTF in September 2012&lt;/a&gt; and recently &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/NHEF-8ZJC2F"&gt;released as open source&lt;/a&gt; too.&lt;/p&gt;
&lt;p&gt;This will be my first appearance as speaker at Lotusphere and IBM Connect. I am really looking forward to it! See you there &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;&lt;img class="aligncenter" src="http://per.lausten.dk/blog/wp-content/uploads/2012/12/connect2013.png" alt="" width="423" height="152" /&gt;&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html' rel='bookmark' title='I am attending the IBM Connect/Lotusphere 2013 conference'&gt;I am attending the IBM Connect/Lotusphere 2013 conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html' rel='bookmark' title='I am a member director on the OpenNTF board of directors'&gt;I am a member director on the OpenNTF board of directors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html' rel='bookmark' title='I have been re-elected for the OpenNTF board of directors'&gt;I have been re-elected for the OpenNTF board of directors&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=B1rNuQd41qA:Osv3F4Eok0g:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=B1rNuQd41qA:Osv3F4Eok0g:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=B1rNuQd41qA:Osv3F4Eok0g:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=B1rNuQd41qA:Osv3F4Eok0g:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/B1rNuQd41qA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=im-speaking-at-ibm-connect-2013#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html/feed/atom" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/12/im-speaking-at-ibm-connect-2013.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=im-speaking-at-ibm-connect-2013</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[XPages: dynamically updating rich text content in a CKEditor]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/ZwjaX8Mn-24/xpages-dynamically-updating-rich-text-content-in-a-ckeditor.html" />
		<id>http://per.lausten.dk/blog/?p=1048</id>
		<updated>2013-03-01T20:46:33Z</updated>
		<published>2012-12-05T10:01:54Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[For the Sherlock Web solution I had a need to be able to update rich text content in a CKEditor with rich text content from backend document templates. These backend document templates can be created and edited with the Lotus Notes client and will in some cases contain rich text content of type Rich Text [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/07/xpages-only-show-content-for-authorized-users.html' rel='bookmark' title='XPages: only show content for authorized users'>XPages: only show content for authorized users</a></li>
<li><a href='http://per.lausten.dk/blog/2012/04/presentation-create-an-app-in-1-hour-almost-with-xpages-extension-library.html' rel='bookmark' title='Presentation: Create an app in 1 hour (almost) with XPages Extension Library'>Presentation: Create an app in 1 hour (almost) with XPages Extension Library</a></li>
<li><a href='http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html' rel='bookmark' title='Intro to XPages for Administrators (my talk at DanNotes, November 2012)'>Intro to XPages for Administrators (my talk at DanNotes, November 2012)</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/12/xpages-dynamically-updating-rich-text-content-in-a-ckeditor.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-dynamically-updating-rich-text-content-in-a-ckeditor">&lt;p&gt;For the &lt;a href="http://per.lausten.dk/blog/2012/05/sherlock-web-a-qhse-management-system-based-on-xpages-and-ibm-xwork-server.html"&gt;Sherlock Web solution&lt;/a&gt; I had a need to be able to update rich text content in a CKEditor with rich text content from backend document templates. These backend document templates can be created and edited with the Lotus Notes client and will in some cases contain rich text content of type Rich Text (and not MIME). I can not change these backend document templates to be stored as MIME, so in order to be able to update the rich text content in a CKEditor, I thought I had to wrestle with conversion of Rich Text to MIME.&lt;/p&gt;
&lt;p&gt;I spent a lot of time getting Rich Text to MIME conversion to work in order to add the backend document templates to the rich text content in the CKEditor. I ended up with a clumsy solution that involved saving the XPages backend document in order for the updated content to appear. I had a lot of inspiration from the answers to &lt;a href="http://stackoverflow.com/questions/12318235/xpages-how-to-append-prepend-text-to-a-richtext-field"&gt;this Stack Overflow question on appending and prepending text to a rich text field&lt;/a&gt;. It worked, but...&lt;/p&gt;
&lt;p&gt;A couple of good XPages guys suggested I took a look at using the datasource getValue() and setValue() methods instead. This turned out to be right way to go.&lt;/p&gt;
&lt;p&gt;Part of trick is that I use the &lt;a href="http://openntf.org/XSnippets.nsf/snippet.xsp?id=wrap-notesdocument-into-notesxspdocument"&gt;wrapDocument() function from XSnippet&lt;/a&gt;  to get a NotesXspDocument representation of the backend document template. I can then just use getValue("body") on that NotesXspDocument followed by getHTML() to get a HTML representation of the content. Brilliant!&lt;/p&gt;
&lt;p&gt;The setValue method on the inputRichText control expects MIME and not text, so I use an XPages supplied method that converts from HTML to MIME. This is necessary in order to save the document at all.&lt;/p&gt;
&lt;p&gt;So here is the important part of my code that reads content from the target field and updates it with a backend document field contaning Notes Rich Text, and ends up saving it as MIME:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
if (templateDoc != null) {
   // Insert contents into existing field
   if (templateDoc.hasItem(&amp;quot;body&amp;quot;)) {
      var orgValue = document.getValue(bodyFieldName);
      var origValue;
      if (orgValue != null) {
         // The target field already has content
         origValue = ((typeof orgValue == &amp;quot;string&amp;quot;)? orgValue : orgValue.getHTML()) + &amp;quot;&amp;quot;;
      } else {
         // The target field is empty
         origValue = &amp;quot;&amp;quot;;
      }

      var templateField = wrapDocument(templateDoc).getValue(&amp;quot;body&amp;quot;);
      importPackage(com.ibm.xsp.http);
      document.setValue(bodyFieldName, com.ibm.xsp.http.MimeMultipart.fromHTML(origValue + templateField.getHTML()));
   }
}
&lt;/pre&gt;
&lt;p&gt;I also used an answer from &lt;a href="http://hasselba.ch/blog/"&gt;Sven Hasselbach&lt;/a&gt; on &lt;a href="http://stackoverflow.com/questions/13588879/richtext-control-doesnt-store-the-input-content"&gt;partially refreshing contents in a CKEditor&lt;/a&gt; to put my inputRichText control inside a div control in order to partially refresh the div control when the above logic runs.&lt;/p&gt;
&lt;p&gt;Using this method I am completely rid of the need to save the backend document. This just works! &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;I have added the part about &lt;a href="http://openntf.org/XSnippets.nsf/snippet.xsp?id=add-content-to-inputrichtext-control-ckeditor"&gt;updating the inputRichText control with MIME&lt;/a&gt; to the OpenNTF XSnippets catalog.&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Notice:&lt;/strong&gt; this code snippet does not work with embedded images and attachments.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/07/xpages-only-show-content-for-authorized-users.html' rel='bookmark' title='XPages: only show content for authorized users'&gt;XPages: only show content for authorized users&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/04/presentation-create-an-app-in-1-hour-almost-with-xpages-extension-library.html' rel='bookmark' title='Presentation: Create an app in 1 hour (almost) with XPages Extension Library'&gt;Presentation: Create an app in 1 hour (almost) with XPages Extension Library&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html' rel='bookmark' title='Intro to XPages for Administrators (my talk at DanNotes, November 2012)'&gt;Intro to XPages for Administrators (my talk at DanNotes, November 2012)&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ZwjaX8Mn-24:edlbcRPVE_E:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=ZwjaX8Mn-24:edlbcRPVE_E:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ZwjaX8Mn-24:edlbcRPVE_E:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ZwjaX8Mn-24:edlbcRPVE_E:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/ZwjaX8Mn-24" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/12/xpages-dynamically-updating-rich-text-content-in-a-ckeditor.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-dynamically-updating-rich-text-content-in-a-ckeditor#comments" thr:count="13" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/12/xpages-dynamically-updating-rich-text-content-in-a-ckeditor.html/feed/atom" thr:count="13" />
		<thr:total>13</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/12/xpages-dynamically-updating-rich-text-content-in-a-ckeditor.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-dynamically-updating-rich-text-content-in-a-ckeditor</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Source Control with Domino Designer 8.5.3 and Git (my talk at DanNotes, November 2012)]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/P0Ou4rNxiKM/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html" />
		<id>http://per.lausten.dk/blog/?p=1042</id>
		<updated>2012-11-29T20:58:34Z</updated>
		<published>2012-11-29T20:58:34Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="DanNotes" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[The 48th DanNotes conference took place yesterday and today. I had 2 sessions. My first session was on the subject of XPages for administrators. My second session was on the topic of source control with Domino Designer 8.5.3 and Git. Here is my presention from that session: Source Control with Domino Designer 8.5.3 and Git (DanNotes, November [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html' rel='bookmark' title='Intro to XPages for Administrators (my talk at DanNotes, November 2012)'>Intro to XPages for Administrators (my talk at DanNotes, November 2012)</a></li>
<li><a href='http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html' rel='bookmark' title='DanNotes 48th conference in November'>DanNotes 48th conference in November</a></li>
<li><a href='http://per.lausten.dk/blog/2012/05/dannotes-47th-conference-links-to-presentations.html' rel='bookmark' title='DanNotes 47th conference: links to presentations'>DanNotes 47th conference: links to presentations</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012">&lt;p&gt;The &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/B3167227417E3F8BC1257A370033222A?open"&gt;48th DanNotes conference&lt;/a&gt; took place yesterday and today.&lt;br /&gt;
I had 2 sessions. My first session was on the subject of &lt;a href="http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html"&gt;XPages for administrators&lt;/a&gt;. My second session was on the topic of source control with Domino Designer 8.5.3 and Git. Here is my presention from that session:&lt;/p&gt;
&lt;p&gt;&lt;iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://www.slideshare.net/slideshow/embed_code/15387508" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="427" height="356"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;div style="margin-bottom: 5px;"&gt;&lt;strong&gt; &lt;a title="Source Control with Domino Designer 8.5.3 and Git (DanNotes, November 28, 2012)" href="http://www.slideshare.net/perlausten/source-control-with-domino-designer-853-and-git-dan-notes-november-28-2012" target="_blank"&gt;Source Control with Domino Designer 8.5.3 and Git (DanNotes, November 28, 2012)&lt;/a&gt; &lt;/strong&gt; from &lt;strong&gt;&lt;a href="http://www.slideshare.net/perlausten" target="_blank"&gt;Per Henrik Lausten&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html' rel='bookmark' title='Intro to XPages for Administrators (my talk at DanNotes, November 2012)'&gt;Intro to XPages for Administrators (my talk at DanNotes, November 2012)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html' rel='bookmark' title='DanNotes 48th conference in November'&gt;DanNotes 48th conference in November&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/05/dannotes-47th-conference-links-to-presentations.html' rel='bookmark' title='DanNotes 47th conference: links to presentations'&gt;DanNotes 47th conference: links to presentations&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=P0Ou4rNxiKM:-NkRxjkPYTo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=P0Ou4rNxiKM:-NkRxjkPYTo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=P0Ou4rNxiKM:-NkRxjkPYTo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=P0Ou4rNxiKM:-NkRxjkPYTo:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/P0Ou4rNxiKM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Intro to XPages for Administrators (my talk at DanNotes, November 2012)]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/1qB3WWyB51A/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html" />
		<id>http://per.lausten.dk/blog/?p=1039</id>
		<updated>2012-11-29T21:00:33Z</updated>
		<published>2012-11-29T20:52:05Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="DanNotes" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[The 48th DanNotes conference took place yesterday and today. It was 2 days filled with lots of interesting sessions. I had 2 sessions. My first session was on the subject of XPages for administrators. My second session was on the topic of source control with Domino Designer 8.5.3 and Git. Here is my presentation from [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html' rel='bookmark' title='Source Control with Domino Designer 8.5.3 and Git (my talk at DanNotes, November 2012)'>Source Control with Domino Designer 8.5.3 and Git (my talk at DanNotes, November 2012)</a></li>
<li><a href='http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html' rel='bookmark' title='DanNotes 48th conference in November'>DanNotes 48th conference in November</a></li>
<li><a href='http://per.lausten.dk/blog/2012/05/dannotes-47th-conference-links-to-presentations.html' rel='bookmark' title='DanNotes 47th conference: links to presentations'>DanNotes 47th conference: links to presentations</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012">&lt;p&gt;The &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/B3167227417E3F8BC1257A370033222A?open"&gt;48th DanNotes conference&lt;/a&gt; took place yesterday and today. It was 2 days filled with lots of interesting sessions.&lt;/p&gt;
&lt;p&gt;I had 2 sessions. My first session was on the subject of XPages for administrators. My second session was on the topic of &lt;a href="http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html"&gt;source control with Domino Designer 8.5.3 and Git&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Here is my presentation from my XPages for Administrators session:&lt;/p&gt;
&lt;p&gt;&lt;iframe style="border: 1px solid #CCC; border-width: 1px 1px 0; margin-bottom: 5px;" src="http://www.slideshare.net/slideshow/embed_code/15386274" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="427" height="356"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;div style="margin-bottom: 5px;"&gt;&lt;strong&gt; &lt;a title="Intro to XPages for Administrators (DanNotes, November 28, 2012)" href="http://www.slideshare.net/perlausten/intro-to-xpages-for-administrators-dannotes-november-28-2012" target="_blank"&gt;Intro to XPages for Administrators (DanNotes, November 28, 2012)&lt;/a&gt; &lt;/strong&gt; from &lt;strong&gt;&lt;a href="http://www.slideshare.net/perlausten" target="_blank"&gt;Per Henrik Lausten&lt;/a&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/11/source-control-with-domino-designer-8-5-3-and-git-my-talk-at-dannotes-november-2012.html' rel='bookmark' title='Source Control with Domino Designer 8.5.3 and Git (my talk at DanNotes, November 2012)'&gt;Source Control with Domino Designer 8.5.3 and Git (my talk at DanNotes, November 2012)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html' rel='bookmark' title='DanNotes 48th conference in November'&gt;DanNotes 48th conference in November&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/05/dannotes-47th-conference-links-to-presentations.html' rel='bookmark' title='DanNotes 47th conference: links to presentations'&gt;DanNotes 47th conference: links to presentations&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=1qB3WWyB51A:74w17Jk3KS8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=1qB3WWyB51A:74w17Jk3KS8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=1qB3WWyB51A:74w17Jk3KS8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=1qB3WWyB51A:74w17Jk3KS8:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/1qB3WWyB51A" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/11/intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=intro-to-xpages-for-administrators-my-talk-at-dannotes-november-2012</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[DanNotes 48th conference in November]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/6SwnSYEJ5ww/dannotes-48th-conference-in-november.html" />
		<id>http://per.lausten.dk/blog/?p=1030</id>
		<updated>2012-11-21T07:59:34Z</updated>
		<published>2012-10-27T06:39:34Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="conference" /><category scheme="http://per.lausten.dk/blog" term="DanNotes" /><category scheme="http://per.lausten.dk/blog" term="IBM Connections" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[The DanNotes 48th conference takes place on November 28 and 29. We have lots of interesting sessions and speakers: Ed Brill: keynote speaker Frank van der Linden: activity streams, embedded apps and XPages John Foldager: HTML5 Abigail Roberts: Teamstudio Unplugged Paul Mooney: Lotus Notes Traveler High Availability Christian Dencker: iNotes 8.5.4 infrastructure, SAML and SUT-lite Mat Newman with his [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html' rel='bookmark' title='DanNotes: The 46th Danish LUG conference is in November'>DanNotes: The 46th Danish LUG conference is in November</a></li>
<li><a href='http://per.lausten.dk/blog/2011/12/the-46th-conference-is-a-wrap.html' rel='bookmark' title='The 46th DanNotes conference is a wrap'>The 46th DanNotes conference is a wrap</a></li>
<li><a href='http://per.lausten.dk/blog/2012/05/dannotes-47th-conference-links-to-presentations.html' rel='bookmark' title='DanNotes 47th conference: links to presentations'>DanNotes 47th conference: links to presentations</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dannotes-48th-conference-in-november">&lt;p style="text-align: center;"&gt;&lt;a href="http://per.lausten.dk/blog/wp-content/uploads/2012/10/dannotes-logo-500x48.png"&gt;&lt;img class="aligncenter size-full wp-image-1032" title="DanNotes" src="http://per.lausten.dk/blog/wp-content/uploads/2012/10/dannotes-logo-500x48.png" alt="" width="500" height="48" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The&lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/B3167227417E3F8BC1257A370033222A?open"&gt; DanNotes 48th conference&lt;/a&gt; takes place on November 28 and 29. We have lots of interesting sessions and speakers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.edbrill.com"&gt;Ed Brill&lt;/a&gt;: keynote speaker&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.e-office.com/corporate/index/homepage"&gt;Frank van der Linden&lt;/a&gt;: activity streams, embedded apps and XPages&lt;/li&gt;
&lt;li&gt;&lt;a href="http://izone.dk/"&gt;John Foldager&lt;/a&gt;: HTML5&lt;/li&gt;
&lt;li&gt;Abigail Roberts: &lt;a href="http://unplugged.teamstudio.com/"&gt;Teamstudio Unplugged&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pmooney.net/"&gt;Paul Mooney&lt;/a&gt;: Lotus Notes Traveler High Availability&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.performance-peek.com/"&gt;Christian Dencker&lt;/a&gt;: iNotes 8.5.4 infrastructure, SAML and SUT-lite&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.matnewman.com/"&gt;Mat Newman&lt;/a&gt; with his popular User Blast session and also a session on Lotus Notes 8.5.4 Social Edition&lt;/li&gt;
&lt;li&gt;&lt;a href="http://becomesocial.dk/"&gt;Mona Håkansson&lt;/a&gt; and &lt;a href="http://lekkimworld.com/"&gt;Mikkel Heisterberg&lt;/a&gt;: IBM Connections 4&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I will also be speaking at the conference on the subject of XPages for administrators. The purpose of the session is to introduce administrators to XPages and to lots of useful tips and tools that can improve the use of XPages within their organizations. I am looking forward to this as it is my first speaking engagement at a Lotus user group conference.&lt;/p&gt;
&lt;p&gt;If you are interested in joining the conference, then head over to the DanNotes website and &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/91E8EDD938B91F1EC12578B2002E1055?open"&gt;register.&lt;/a&gt; There is &lt;a href="https://www.facebook.com/events/479026738778915/"&gt;a Facebook event&lt;/a&gt;, &lt;a href="http://linkd.in/Or5rA4"&gt;a LinkedIn event&lt;/a&gt; and &lt;a href="http://lanyrd.com/2012/dannotes-november/"&gt;a Lanyrd event&lt;/a&gt; for the conference if you are interested in tracking the conference using social tools.&lt;/p&gt;
&lt;p&gt;I hope to see you at the conference &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update November 21:&lt;/strong&gt; I will also be speaking about source control with Domino Designer 8.5.3.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html' rel='bookmark' title='DanNotes: The 46th Danish LUG conference is in November'&gt;DanNotes: The 46th Danish LUG conference is in November&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/12/the-46th-conference-is-a-wrap.html' rel='bookmark' title='The 46th DanNotes conference is a wrap'&gt;The 46th DanNotes conference is a wrap&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/05/dannotes-47th-conference-links-to-presentations.html' rel='bookmark' title='DanNotes 47th conference: links to presentations'&gt;DanNotes 47th conference: links to presentations&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=6SwnSYEJ5ww:ohxL5x5NA08:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=6SwnSYEJ5ww:ohxL5x5NA08:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=6SwnSYEJ5ww:ohxL5x5NA08:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=6SwnSYEJ5ww:ohxL5x5NA08:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/6SwnSYEJ5ww" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dannotes-48th-conference-in-november#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html/feed/atom" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/10/dannotes-48th-conference-in-november.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dannotes-48th-conference-in-november</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I have been re-elected for the OpenNTF board of directors]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/RBbQ-bBnLE4/i-have-been-re-elected-for-the-openntf-board-of-directors.html" />
		<id>http://per.lausten.dk/blog/?p=1023</id>
		<updated>2012-10-09T21:43:54Z</updated>
		<published>2012-10-09T21:43:54Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="open source" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" />		<summary type="html"><![CDATA[My term on the OpenNTF board of directors expired after 1 year, and I am happy to have been re-elected for a 2 year term service. My 1st year on the board was an exciting year where I among many things helped with the judging of several contests (including the 1st XSnippets contest), helped setup [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html' rel='bookmark' title='I am a member director on the OpenNTF board of directors'>I am a member director on the OpenNTF board of directors</a></li>
<li><a href='http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html' rel='bookmark' title='PHL Consult supports OpenNTF and open source'>PHL Consult supports OpenNTF and open source</a></li>
<li><a href='http://per.lausten.dk/blog/2011/06/xpages-web-analytics-custom-control-on-openntf.html' rel='bookmark' title='XPages Web Analytics custom control on OpenNTF'>XPages Web Analytics custom control on OpenNTF</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-have-been-re-elected-for-the-openntf-board-of-directors">&lt;p&gt;My term on the &lt;a href="http://www.openntf.org/"&gt;OpenNTF&lt;/a&gt; board of directors &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/BELT-8XN4HN"&gt;expired&lt;/a&gt; after 1 year, and I am happy to have been &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/BELT-8YVW43"&gt;re-elected&lt;/a&gt; for a 2 year term service.&lt;/p&gt;
&lt;p&gt;My 1st year on the board was an exciting year where I among many things helped with the judging of several &lt;a href="http://contest.openntf.org/"&gt;contests&lt;/a&gt; (including &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/BELT-8W28CJ"&gt;the 1st XSnippets contest&lt;/a&gt;), helped setup &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/PHLN-8VPH7M"&gt;even more demos&lt;/a&gt;, and &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/NHEF-8XZ9BK"&gt;was part of the team&lt;/a&gt; that implemented &lt;a href="http://collaborationtoday.info/"&gt;Collaboration Today&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I look forward to continue to help OpenNTF spread the use and knowledge of open source for the IBM Collaboration Solutions community.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html' rel='bookmark' title='I am a member director on the OpenNTF board of directors'&gt;I am a member director on the OpenNTF board of directors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html' rel='bookmark' title='PHL Consult supports OpenNTF and open source'&gt;PHL Consult supports OpenNTF and open source&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/06/xpages-web-analytics-custom-control-on-openntf.html' rel='bookmark' title='XPages Web Analytics custom control on OpenNTF'&gt;XPages Web Analytics custom control on OpenNTF&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=RBbQ-bBnLE4:54n6hgmyhio:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=RBbQ-bBnLE4:54n6hgmyhio:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=RBbQ-bBnLE4:54n6hgmyhio:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=RBbQ-bBnLE4:54n6hgmyhio:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/RBbQ-bBnLE4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-have-been-re-elected-for-the-openntf-board-of-directors#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html/feed/atom" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/10/i-have-been-re-elected-for-the-openntf-board-of-directors.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-have-been-re-elected-for-the-openntf-board-of-directors</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I am attending the IBM Connect/Lotusphere 2013 conference]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/RlzkrVUneQU/i-am-attending-the-ibm-connectlotusphere-2013-conference.html" />
		<id>http://per.lausten.dk/blog/?p=1020</id>
		<updated>2012-10-01T10:52:38Z</updated>
		<published>2012-10-01T10:52:38Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="conference" /><category scheme="http://per.lausten.dk/blog" term="Lotusphere" /><category scheme="http://per.lausten.dk/blog" term="Lotusphere2013" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" />		<summary type="html"><![CDATA[The IBM Connect 2013 (including Lotusphere 2013) conference takes place in January 2013. I am going once again and really look forward to the atmosphere and the sessions, and most importantly the people. I arrive Friday evening January 25th and leave again Friday February 1st. I will be staying at the Disney's Yacht Club Resort. See you there?<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html' rel='bookmark' title='Going to Lotusphere 2012'>Going to Lotusphere 2012</a></li>
<li><a href='http://per.lausten.dk/blog/2012/01/my-plans-for-lotusphere-2012.html' rel='bookmark' title='My plans for Lotusphere 2012'>My plans for Lotusphere 2012</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-attending-the-ibm-connectlotusphere-2013-conference">&lt;p&gt;The &lt;a href="http://www-01.ibm.com/software/lotus/events/conference/"&gt;IBM Connect 2013 (including Lotusphere 2013) conference&lt;/a&gt; takes place in January 2013. I am going &lt;a href="http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html"&gt;once again&lt;/a&gt; and really look forward to the atmosphere and the sessions, and most importantly the people.&lt;/p&gt;
&lt;p&gt;I arrive Friday evening January 25th and leave again Friday February 1st. I will be staying at the Disney's Yacht Club Resort.&lt;/p&gt;
&lt;p&gt;See you there?&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html' rel='bookmark' title='Going to Lotusphere 2012'&gt;Going to Lotusphere 2012&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/01/my-plans-for-lotusphere-2012.html' rel='bookmark' title='My plans for Lotusphere 2012'&gt;My plans for Lotusphere 2012&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=RlzkrVUneQU:SBneIxx3ot0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=RlzkrVUneQU:SBneIxx3ot0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=RlzkrVUneQU:SBneIxx3ot0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=RlzkrVUneQU:SBneIxx3ot0:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/RlzkrVUneQU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-attending-the-ibm-connectlotusphere-2013-conference#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/10/i-am-attending-the-ibm-connectlotusphere-2013-conference.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-attending-the-ibm-connectlotusphere-2013-conference</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I am now an IBM Certified Advanced Application Developer &#8211; Lotus Notes and Domino 8.5]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/ErJSnYqT9tY/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html" />
		<id>http://per.lausten.dk/blog/?p=1010</id>
		<updated>2012-09-21T06:58:23Z</updated>
		<published>2012-09-21T06:56:50Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="certification" /><category scheme="http://per.lausten.dk/blog" term="Java" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[I recently passed the LOT-922 certification test (Developing IBM Lotus Domino 8.5.2 Applications: Advanced XPage Design). The test is a multiple choice test with 32 questions and a required passing score of 75%- I scored 90%. Since I was already an IBM Certified Application Developer on Notes/Domino 8.5 the passing of the test upgraded my [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html' rel='bookmark' title='IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.5'>IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.5</a></li>
<li><a href='http://per.lausten.dk/blog/2011/09/integrating-a-lotus-notes-application-with-exchange.html' rel='bookmark' title='Integrating a Lotus Notes application with Exchange'>Integrating a Lotus Notes application with Exchange</a></li>
<li><a href='http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html' rel='bookmark' title='Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here'>Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/09/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5">&lt;p&gt;I recently passed the &lt;a href="http://www-03.ibm.com/certify/tests/ovrL922.shtml"&gt;LOT-922 certification test (Developing IBM Lotus Domino 8.5.2 Applications: Advanced XPage Design)&lt;/a&gt;. The test is a multiple choice test with 32 questions and a required passing score of 75%- I scored 90%.&lt;/p&gt;
&lt;p&gt;Since I was already an IBM Certified Application Developer on Notes/Domino 8.5 the passing of the test upgraded my certification level to &lt;a href="http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html"&gt;IBM Certified Advanced Application Developer - Lotus Notes and Domino 8.5&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img class="aligncenter" title="IBM Certified Advanced Application Developer" src="http://per.lausten.dk/blog/wp-content/uploads/2012/09/IBM%20Certified%20Advanced%20Application%20Developer.jpg" alt="" width="559" height="424" /&gt;&lt;/p&gt;
&lt;p&gt;I prepared for the test by reading the test objectives and by practicing using a &lt;a href="http://certfx.com/p-257-lot-922-developing-ibm-lotus-domino-852-applications-advanced-xpage-design.aspx"&gt;practice test from CertFX&lt;/a&gt;. The test focuses on advanced XPages programming and covers the following areas:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Building themes&lt;/li&gt;
&lt;li&gt;Extending the data sources&lt;/li&gt;
&lt;li&gt;Optimizing, troubleshooting and localization&lt;/li&gt;
&lt;li&gt;Using advanced Dojo controls&lt;/li&gt;
&lt;li&gt;Using Server-side JavaScript&lt;/li&gt;
&lt;li&gt;Using XPages for mobile user interfaces&lt;/li&gt;
&lt;li&gt;Working with Java&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Unfortunately, the test is already somewhat outdated in its focus on Domino Designer 8.5.2. So be prepared for that if you plan to take the test.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html' rel='bookmark' title='IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.5'&gt;IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/09/integrating-a-lotus-notes-application-with-exchange.html' rel='bookmark' title='Integrating a Lotus Notes application with Exchange'&gt;Integrating a Lotus Notes application with Exchange&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html' rel='bookmark' title='Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here'&gt;Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ErJSnYqT9tY:EIn_-ctYB8M:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=ErJSnYqT9tY:EIn_-ctYB8M:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ErJSnYqT9tY:EIn_-ctYB8M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ErJSnYqT9tY:EIn_-ctYB8M:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/ErJSnYqT9tY" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/09/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5#comments" thr:count="20" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/09/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html/feed/atom" thr:count="20" />
		<thr:total>20</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/09/i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-now-an-ibm-certified-advanced-application-developer-lotus-notes-and-domino-8-5</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Have a question on XPages?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/st1jBgS75zA/have-a-question-on-xpages.html" />
		<id>http://per.lausten.dk/blog/?p=1004</id>
		<updated>2012-08-18T08:12:23Z</updated>
		<published>2012-08-18T08:12:23Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Stack Overflow is a programming Q&#38;A site for developers with more than 3.5 million questions and even more anwers on every programming language you can image. On Stack Overflow you can also find questions and answers related to XPages. At the time of writing this blog post there are 597 questions tagged XPages on Stack Overflow [...]<div class='yarpp-related-rss'>
<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2012/02/learning-xpages-available-resources.html' rel='bookmark' title='Learning XPages: available resources'>Learning XPages: available resources</a></li>
<li><a href='http://per.lausten.dk/blog/2012/02/xpages-2-very-easy-performance-optimization-tricks.html' rel='bookmark' title='XPages: 2 very easy performance optimization tricks'>XPages: 2 very easy performance optimization tricks</a></li>
<li><a href='http://per.lausten.dk/blog/2011/11/xsnippets-code-snippets-for-xpages.html' rel='bookmark' title='XSnippets: code snippets for XPages'>XSnippets: code snippets for XPages</a></li>
</ol>
<img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/>
</div>
]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/08/have-a-question-on-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=have-a-question-on-xpages">&lt;p&gt;Stack Overflow is a programming Q&amp;amp;A site for developers with more than 3.5 million questions and even more anwers &lt;a href="http://stackoverflow.com/tags"&gt;on every programming language you can image&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;On Stack Overflow you can also find &lt;a href="http://stackoverflow.com/questions/tagged/xpages"&gt;questions and answers related to XPages&lt;/a&gt;. At the time of writing this blog post there are 597 questions tagged XPages on Stack Overflow with questions and answers coming in every day. If you have a question on XPages then have a look at some of the already asked questions and  their answers and see if that helps you. If not, then go ahead and ask a question.&lt;/p&gt;
&lt;p&gt;I will also encourage you to help the community by answering questions and also upvoting great answers and downvoting misleading answers. This will improve the quality of Stack Overflow as a Q&amp;amp;A site for XPages.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://xpages.info/"&gt;XPages.info&lt;/a&gt; always lists the latest questions tagged XPages and also the top users for the XPages tag &lt;a href="http://xpages.info/so"&gt;on the Stack Overflow tab&lt;/a&gt;.&lt;/p&gt;
&lt;div class='yarpp-related-rss'&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/02/learning-xpages-available-resources.html' rel='bookmark' title='Learning XPages: available resources'&gt;Learning XPages: available resources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2012/02/xpages-2-very-easy-performance-optimization-tricks.html' rel='bookmark' title='XPages: 2 very easy performance optimization tricks'&gt;XPages: 2 very easy performance optimization tricks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/11/xsnippets-code-snippets-for-xpages.html' rel='bookmark' title='XSnippets: code snippets for XPages'&gt;XSnippets: code snippets for XPages&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;img src='http://yarpp.org/pixels/f5522dcf0fbf189c9ec5d8f06e3ca790'/&gt;
&lt;/div&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=st1jBgS75zA:GMH846SlDZo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=st1jBgS75zA:GMH846SlDZo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=st1jBgS75zA:GMH846SlDZo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=st1jBgS75zA:GMH846SlDZo:I9og5sOYxJI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?d=I9og5sOYxJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Per_Henrik_Lausten/~4/st1jBgS75zA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/08/have-a-question-on-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=have-a-question-on-xpages#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/08/have-a-question-on-xpages.html/feed/atom" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/08/have-a-question-on-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=have-a-question-on-xpages</feedburner:origLink></entry>
	</feed>
