<?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" xml:base="http://per.lausten.dk/blog/wp-atom.php">
	<title type="text">Per Henrik Lausten</title>
	<subtitle type="text">A blog on Lotus Notes, Lotus Domino, XPages and more</subtitle>

	<updated>2012-02-08T13:45:32Z</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[Creating your first managed bean for XPages]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/7PUlRnd1OWQ/creating-your-first-managed-bean-for-xpages.html" />
		<id>http://per.lausten.dk/blog/?p=910</id>
		<updated>2012-02-08T11:46:41Z</updated>
		<published>2012-02-08T10:42:00Z</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="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[With Java and managed beans you can make your XPages applications even more powerful. In this blog post I will go through the steps to create and use a managed bean in XPages. I am using Lotus Notes and Domino Designer 8.5.3 and will therefore use the new Java design element for the Java code [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/05/client-project-xpages-cms-for-company-website.html' rel='bookmark' title='Client project: XPages CMS for company website'>Client project: XPages CMS for company website</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>
<li><a href='http://per.lausten.dk/blog/2011/01/presentation-my-view-on-xpages.html' rel='bookmark' title='Presentation: My view on XPages'>Presentation: My view on XPages</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/02/creating-your-first-managed-bean-for-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=creating-your-first-managed-bean-for-xpages">&lt;p&gt;With Java and managed beans you can make your XPages applications even more powerful. In this blog post I will go through the steps to create and use a managed bean in XPages.&lt;/p&gt;
&lt;p&gt;I am using Lotus Notes and Domino Designer 8.5.3 and will therefore use the new Java design element for the Java code located in the Code section.&lt;/p&gt;
&lt;p&gt;In short: use "New Java Class" to create a Java class. Give your new class a package name (e.g. com.company) and a class name (e.g. HelloWorld). Add a local variable and let Eclipse generate getter and setter for it by using Source - Generate Getters and Setters. Also, let Eclipse generate a public no-parameter constructor by using Source - Generate Constructor using Fields and deselect your newly created field and omit call to super().&lt;/p&gt;
&lt;p&gt;You will then have the following basic skeleton for a Java class:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
package com.company;

public class helloworld {

	public helloworld() {
	}

	private String someVariable;

	public String getSomeVariable() {
		return someVariable;
	}

	public void setSomeVariable(String someVariable) {
		someVariable = someVariable;
	}

}
&lt;/pre&gt;
&lt;p&gt;In order to support the XPages server page persistence option "Keep pages on disk", the Java class needs to be serializable. The Java class therefore needs to implement Serializable. Therefore, add "implements Serializable" after your class name (and Eclipse will automatically add the required import). Then use the Eclipse Quick Fix to "Add generated serial version ID". You now have a basic skeleton for a Java class that can be used as a managed bean:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
package com.company;

import java.io.Serializable;

public class helloworld implements Serializable {

	private static final long serialVersionUID = 6469339826789980362L;

	public helloworld() {
	}

	private String someVariable;

	public String getSomeVariable() {
		return someVariable;
	}

	public void setSomeVariable(String someVariable) {
		someVariable = someVariable;
	}

}
&lt;/pre&gt;
&lt;p&gt;Now we need to tell XPages that we would like to use this Java class as a managed bean. First, Add the Package Explorer view to your Eclipse perspective using Window - Show Eclipse Views - Other and select Package Explorer. Now go to the Package Explorer and navigate to the WebContent/WEB-INF folder where you will find a faces-config.xml file. Open the faces-config.xml file and add the following managed bean section in the &amp;lt;faces-config&amp;gt; section:&lt;/p&gt;
&lt;pre class="brush: xml; title: ; notranslate"&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&amp;lt;faces-config&amp;gt;
	&amp;lt;managed-bean&amp;gt;
		&amp;lt;managed-bean-name&amp;gt;helloWorld&amp;lt;/managed-bean-name&amp;gt;
		&amp;lt;managed-bean-class&amp;gt;com.company.helloworld&amp;lt;/managed-bean-class&amp;gt;
		&amp;lt;managed-bean-scope&amp;gt;session&amp;lt;/managed-bean-scope&amp;gt;
	&amp;lt;/managed-bean&amp;gt;
&amp;lt;/faces-config&amp;gt;
&lt;/pre&gt;
&lt;p&gt;You now have a basic faces-config for your HelloWorld Java class. Scope for a bean can be the usual scopes (application, session, view, request).&lt;/p&gt;
&lt;p&gt;With the Java class and the faces-config in place the managed bean can now be used in an XPage. The bean value (both the getter and setter) can be accessed from an XPage using #{helloWorld.someVariable}.&lt;/p&gt;
&lt;p&gt;This very basic example of a bean does not do anything. The Java class would of course have to add values to the someVariable property before that value would be useful in an XPage. I will create a 2nd blog post that shows how to use a bean in a repeat control to display values from the managed bean.&lt;/p&gt;
&lt;p&gt;For more information on XPages and managed beans have a look at:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The Discussion and Teamroom templates in the Extension Library that both use beans&lt;/li&gt;
&lt;li&gt;Mastering XPages page 415 for a Java class example&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.mindoo.de/web/blog.nsf/dx/16.07.2009095816KLEBCY.htm"&gt;Mindoo: XPages series #4: Backing Bean Management with XPages&lt;/a&gt; by Karsten Lehmann&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.mindoo.de/web/blog.nsf/archive?openview&amp;amp;title=XPages&amp;amp;type=cat&amp;amp;cat=XPages"&gt;Mindoo XPages blog series on managed beans (and more)&lt;/a&gt; by Karsten Lehmann&lt;/li&gt;
&lt;li&gt;&lt;a href="http://xpagesblog.com/XPagesHome.nsf/Entry.xsp?documentId=4B1849D9F0F5EDC0852578CB0066BD27"&gt;xpagesblog.com: Writing a Managed Bean to Automate Server Side Functionality in XPages&lt;/a&gt; by Jeremy Hodge&lt;/li&gt;
&lt;li&gt;&lt;a href="http://xpagesblog.com/xpages-blog/2010/8/10/getting-deeper-into-the-managed-bean-creating-a-cached-maste.html"&gt;xpagesblog.com: Getting Deeper into the Managed Bean - Creating a Cached Master/Detail Recordset&lt;/a&gt; by Jeremy Hodge&lt;/li&gt;
&lt;li&gt;&lt;a href="http://xmage.gbs.com/blog.nsf/d6plinks/TTRY-8GK6K7"&gt;What the heck is a bean?&lt;/a&gt; by Tim Tripcony (with this great quote by Tim: "&lt;em&gt;Why is it crucial to understand the nature of beans when developing XPages, even if you're not specifically writing Java code? Because darn near everything in an XPage is a bean.&lt;/em&gt;")&lt;/li&gt;
&lt;li&gt;Tim Tripcony on managed beans and themes (and much more): &lt;a href="http://xmage.gbs.com/blog.nsf/d6plinks/TTRY-8FHVLW"&gt;Taking themes to the next level&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Update: &lt;/strong&gt;Jeremy Hodge has done a 3 part video series on getting started with managed beans for Notesin9. Its called "Intro to Java for XPages developers" and can be found at &lt;a href="http://XPages.TV"&gt;XPages.TV&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/05/client-project-xpages-cms-for-company-website.html' rel='bookmark' title='Client project: XPages CMS for company website'&gt;Client project: XPages CMS for company website&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;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/01/presentation-my-view-on-xpages.html' rel='bookmark' title='Presentation: My view on XPages'&gt;Presentation: My view on XPages&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WCmWvaLoTjypHJFdK7bQ1durnfM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WCmWvaLoTjypHJFdK7bQ1durnfM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WCmWvaLoTjypHJFdK7bQ1durnfM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WCmWvaLoTjypHJFdK7bQ1durnfM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=7PUlRnd1OWQ:PBv1yARm16c:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=7PUlRnd1OWQ:PBv1yARm16c:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=7PUlRnd1OWQ:PBv1yARm16c: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=7PUlRnd1OWQ:PBv1yARm16c: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/7PUlRnd1OWQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/02/creating-your-first-managed-bean-for-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=creating-your-first-managed-bean-for-xpages#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/02/creating-your-first-managed-bean-for-xpages.html/feed/atom" thr:count="5" />
		<thr:total>5</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/02/creating-your-first-managed-bean-for-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=creating-your-first-managed-bean-for-xpages</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Thoughts from Lotusphere 2012: Lotus Notes Social Edition]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/cYX_pW3KoSw/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html" />
		<id>http://per.lausten.dk/blog/?p=901</id>
		<updated>2012-01-23T12:26:54Z</updated>
		<published>2012-01-23T12:26: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 Notes" /><category scheme="http://per.lausten.dk/blog" term="Lotusphere" /><category scheme="http://per.lausten.dk/blog" term="Lotusphere2012" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="OpenSocial" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[One of the highlights from Lotusphere 2012 was the accouncement of the next feature release of Lotus Notes called Lotus Notes Social Edition. Lotus Notes Social Edition features a new homepage with activity streams and embedded apps (embedded experiences) using open standards such as OpenSocial. From the Lotus Notes homepage a user can interact with [...]<hr />
Related posts:<ol>
<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/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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thoughts-from-lotusphere-2012-lotus-notes-social-edition">&lt;p&gt;One of the highlights from Lotusphere 2012 was the accouncement of the next feature release of Lotus Notes called Lotus Notes Social Edition.&lt;/p&gt;
&lt;p&gt;Lotus Notes Social Edition features a new homepage with activity streams and embedded apps (embedded experiences) using open standards such as &lt;a href="http://docs.opensocial.org/display/OS/Home"&gt;OpenSocial&lt;/a&gt;. From the Lotus Notes homepage a user can interact with an external application without leaving the home page (collaboratio in-context). Lotus iNotes (the web mail component for Lotus Notes) will also support activity streams and embedded apps. The new homepage looks similar to the activity streams in the &lt;a href="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html"&gt;upcoming IBM Connections 4.0 release&lt;/a&gt;.&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img class="aligncenter size-full wp-image-906" title="Social Edition - Homepage" src="http://per.lausten.dk/blog/wp-content/uploads/2012/01/Social-Edition-Homepage1.png" alt="" width="700" height="417" /&gt;&lt;/p&gt;
&lt;p&gt;XPages and the Extension Library Social Enabler toolkit can be used to implemenet applications that support activity streams and OpenSocial gadgets in order to create embedded apps. The Social Enabler Toolkit is currently only part of the OpenNTF release and will be part of Upgrade Pack 2.&lt;/p&gt;
&lt;p&gt;Social Edition also features a brand-new and more simple UI for mail (for both the Lotus Notes client and for iNotes webmail):&lt;/p&gt;
&lt;p&gt;&lt;img class="aligncenter size-full wp-image-907" title="Social Edition - Inbox" src="http://per.lausten.dk/blog/wp-content/uploads/2012/01/Social-Edition-Inbox.png" alt="" width="605" height="359" /&gt;&lt;/p&gt;
&lt;p&gt;In between now (8.5.3) and Social Edition we will see a 8.5.4 release with features required to be able to deploy the Social Edition upgrade on top of Lotus Notes and Domino 8.5.4. In 2012 we will also see the release of Upgrade Pack 2 (IBM supported Extension Library with new features currently only available in the experimental part of the &lt;a href="http://extlib.openntf.org/"&gt;OpenNTF Extension Library&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Lotus Domino 8.5.4 is planned to support SAML and oAUTH for authentication. With Domino supporting oAUTH it will be possible to bring XPages applications into the context of other applications.&lt;/p&gt;
&lt;p&gt;Finally, the Lotus Notes app browser plugin for Firefox/Windows was presented at Lotusphere. This plugin is a lightweight Lotus Notes client in the browser that can run Notes client applications. This enables organizations to focus on implementing new XPages web applications and have their existing/old Notes client applications use the plugin.&lt;/p&gt;
&lt;p&gt;Ed Brill from IBM &lt;a href="http://edbrill.com/ebrill/edbrill.nsf/dx/lotusphere-2012-lotus-notesdomino-social-edition"&gt;has blogged about Lotus Notes and Domino Social Edition&lt;/a&gt; and also posted his &lt;a href="http://www.slideshare.net/edbrill/ibm-lotusphere-2012-messaging-and-collaboration-strategy"&gt;"Messaging and Collaboration Strategy" session from Lotusphere on Slideshare&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Chris Reckling from IBM &lt;a href="http://www-10.lotus.com/ldd/insidelotusblog.nsf/dx/ogs-demos-part-4"&gt;has blogged about the Notes and iNotes announcements from the Lotusphere 2012 OGS&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&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/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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/wPnn9-Z-Frkziw8BL5xwRBrys7w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wPnn9-Z-Frkziw8BL5xwRBrys7w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/wPnn9-Z-Frkziw8BL5xwRBrys7w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wPnn9-Z-Frkziw8BL5xwRBrys7w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=cYX_pW3KoSw:Nq0ci6C_f_M:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=cYX_pW3KoSw:Nq0ci6C_f_M:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=cYX_pW3KoSw:Nq0ci6C_f_M: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=cYX_pW3KoSw:Nq0ci6C_f_M: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/cYX_pW3KoSw" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thoughts-from-lotusphere-2012-lotus-notes-social-edition#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html/feed/atom" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-lotus-notes-social-edition.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thoughts-from-lotusphere-2012-lotus-notes-social-edition</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Thoughts from Lotusphere 2012: IBM Connections 4 (&#8220;Next&#8221;)]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/jD2uUtU7s2k/thoughts-from-lotusphere-2012-ibm-connections-4-next.html" />
		<id>http://per.lausten.dk/blog/?p=897</id>
		<updated>2012-01-23T11:55:56Z</updated>
		<published>2012-01-23T11:13:56Z</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="Lotusphere" /><category scheme="http://per.lausten.dk/blog" term="Lotusphere2012" /><category scheme="http://per.lausten.dk/blog" term="Microsoft Exchange" /><category scheme="http://per.lausten.dk/blog" term="OpenSocial" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[At the Lotusphere 2012 Opening General Session (OGS) and throughout the conference IBM showed the next version of IBM Connections (to be called IBM Connections 4.0?). My first impression of the next release of IBM Connections is that it looks really, really great! Among many things it features exciting new elements such as activity streams, [...]<hr />
Related posts:<ol>
<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>
<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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thoughts-from-lotusphere-2012-ibm-connections-4-next">&lt;p&gt;At the Lotusphere 2012 Opening General Session (OGS) and throughout the conference IBM showed the next version of IBM Connections (to be called IBM Connections 4.0?). My first impression of the next release of IBM Connections is that it looks really, really great! Among many things it features exciting new elements such as activity streams, social mail and embedded apps (using open standards such as &lt;a href="http://activitystrea.ms/"&gt;Activity Streams&lt;/a&gt; and &lt;a href="http://docs.opensocial.org/display/OS/Home"&gt;OpenSocial gadgets&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;&lt;img class="aligncenter size-full wp-image-898" title="IBM Connections social mail" src="http://per.lausten.dk/blog/wp-content/uploads/2012/01/socialmail.jpeg" alt="" width="646" height="379" /&gt;&lt;/p&gt;
&lt;p&gt;Embedded apps for activity streams can be created using e.g. XPages. An embedded app makes it possible for the user to take action directly from the invidual post in the activity stream (without leaving IBM Connections).&lt;/p&gt;
&lt;p&gt;The integrated mail and calendar of IBM Connections (social mail) will support Lotus Domino and Microsoft Exchange as backend mail servers. This is an interesting move  that makes the underlying mail server in use irrelevant to the IBM Connections deployment.&lt;/p&gt;
&lt;p&gt;IBM Connections 4 also includes community metrics (to track e.g. adoption rates), optional realtime group video chat using a plugin from &lt;a href="http://www.polycom.com/"&gt;Polycom&lt;/a&gt;, ECM library integration and realtime co-editing of documents, presentations and spreadsheets using IBM Docs (&lt;a href="https://greenhouse.lotus.com/wpsgh/wcm/connect/lotus+greenhouse/lotus+greenhouse+next+site/home/labs/ibm+docs"&gt;IBM Docs is currently in beta on IBM Greenhouse&lt;/a&gt;).&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&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;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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5yPOG29pirDmWrIq3y7OnWvYeyQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5yPOG29pirDmWrIq3y7OnWvYeyQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5yPOG29pirDmWrIq3y7OnWvYeyQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5yPOG29pirDmWrIq3y7OnWvYeyQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=jD2uUtU7s2k:yH_PJ945KEE:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=jD2uUtU7s2k:yH_PJ945KEE:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=jD2uUtU7s2k:yH_PJ945KEE: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=jD2uUtU7s2k:yH_PJ945KEE: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/jD2uUtU7s2k" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thoughts-from-lotusphere-2012-ibm-connections-4-next#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html/feed/atom" thr:count="5" />
		<thr:total>5</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/01/thoughts-from-lotusphere-2012-ibm-connections-4-next.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thoughts-from-lotusphere-2012-ibm-connections-4-next</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[My plans for Lotusphere 2012]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/bacaWxpFmR8/my-plans-for-lotusphere-2012.html" />
		<id>http://per.lausten.dk/blog/?p=887</id>
		<updated>2012-01-10T05:53:37Z</updated>
		<published>2012-01-09T21:00:19Z</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="Lotusphere2012" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" />		<summary type="html"><![CDATA[I am going to Lotusphere 2012 in Orlando - and I look forward to it! Here are some of the things I plan to do and attend: B.A.L.D. (Bloggers and friends Annual Lotusphere Dinner) on Saturday Business Development Day general session on Sunday Welcome Reception on Sunday evening Opening General Session on Monday morning UK [...]<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/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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2012/01/my-plans-for-lotusphere-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-plans-for-lotusphere-2012">&lt;div id="attachment_890" class="wp-caption alignright" style="width: 270px"&gt;&lt;a href="http://per.lausten.dk/blog/wp-content/uploads/2012/01/Per-Henrik-Lausten.jpg"&gt;&lt;img class="size-medium wp-image-890 " title="Per Henrik Lausten" src="http://per.lausten.dk/blog/wp-content/uploads/2012/01/Per-Henrik-Lausten-260x300.jpg" alt="" width="260" height="300" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;This is how I look &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt; &lt;/p&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html"&gt;I am going to Lotusphere 2012 in Orlando&lt;/a&gt; - and I look forward to it!&lt;/p&gt;
&lt;p&gt;Here are some of the things I plan to do and attend:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.joelitton.net/A559B2/home.nsf/d6plinks/8QBV7K"&gt;B.A.L.D. (Bloggers and friends Annual Lotusphere Dinner)&lt;/a&gt; on Saturday&lt;/li&gt;
&lt;li&gt;Business Development Day general session on Sunday&lt;/li&gt;
&lt;li&gt;Welcome Reception on Sunday evening&lt;/li&gt;
&lt;li&gt;Opening General Session on Monday morning&lt;/li&gt;
&lt;li&gt;UK Night on Monday (if I can fake a proper English accent - &lt;em&gt;and&lt;/em&gt; get the necessary UKLUG sticker on my conference badge)&lt;/li&gt;
&lt;li&gt;IBM Nordic dinner on Tuesday evening&lt;/li&gt;
&lt;li&gt;&lt;a href="http://openntf.org/"&gt;OpenNTF&lt;/a&gt; booth duty on Tuesday and Wednesday at booth 516&lt;/li&gt;
&lt;li&gt;The Lotusphere party at Sea World on Wednesday evening&lt;/li&gt;
&lt;li&gt;&lt;a href="http://thisweekinlotus.com"&gt;This Week in Lotus&lt;/a&gt; LIVE on Thursday morning&lt;/li&gt;
&lt;li&gt;Ask the Developers on Thursday&lt;/li&gt;
&lt;li&gt;The (someday famous) Lotusphere basketball game with teams of Lotusphere attendees, speakers and IBMers - arranged by &lt;a href="http://jonmell.co.uk/"&gt;Jon Mell&lt;/a&gt;. Time and place to be determined.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Look for me and let's see who says hi first &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt;  See you there!&lt;/p&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/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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/G5EWa8mBunzNgpGP2Suf-cCreKo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G5EWa8mBunzNgpGP2Suf-cCreKo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/G5EWa8mBunzNgpGP2Suf-cCreKo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G5EWa8mBunzNgpGP2Suf-cCreKo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=bacaWxpFmR8:BGAq66s_pPA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=bacaWxpFmR8:BGAq66s_pPA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=bacaWxpFmR8:BGAq66s_pPA: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=bacaWxpFmR8:BGAq66s_pPA: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/bacaWxpFmR8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2012/01/my-plans-for-lotusphere-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-plans-for-lotusphere-2012#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2012/01/my-plans-for-lotusphere-2012.html/feed/atom" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2012/01/my-plans-for-lotusphere-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-plans-for-lotusphere-2012</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[XPages Extension Library on OpenNTF updated to match Upgrade Pack 1]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/9mH3taGzRTc/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html" />
		<id>http://per.lausten.dk/blog/?p=882</id>
		<updated>2012-01-03T20:43:56Z</updated>
		<published>2011-12-17T22:10:58Z</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="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[The XPages Extension Library project on OpenNTF was updated yesterday to version 853-20111215. This version matches the newly released Domino 8.5.3 Upgrade Pack 1. If you want to use the OpenNTF version (and not Upgrade Pack 1) you can update your servers and clients using the update site method. You can find the installation instructions for the [...]<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/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>
<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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1">&lt;p&gt;The &lt;a href="http://extlib.openntf.org/"&gt;XPages Extension Library project on OpenNTF&lt;/a&gt; was updated yesterday to version 853-20111215. This version matches the &lt;a href="http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html"&gt;newly released Domino 8.5.3 Upgrade Pack 1&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you want to use the OpenNTF version (and not Upgrade Pack 1) you can update your servers and clients using the update site method.&lt;/p&gt;
&lt;p&gt;You can find the &lt;a href="http://www-10.lotus.com/ldd/ddwiki.nsf/dx/Installing_and_administering_the_XPages_Extension_Library_ddxl853"&gt;installation instructions for the OpenNTF version and for Upgrade Pack 1&lt;/a&gt; on the Lotus Notes and Domino Application Development wiki.&lt;/p&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/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;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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GftEpWGvm8hcpw7BbSHzw6AIglQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GftEpWGvm8hcpw7BbSHzw6AIglQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GftEpWGvm8hcpw7BbSHzw6AIglQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GftEpWGvm8hcpw7BbSHzw6AIglQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=9mH3taGzRTc:7yvzh53M0ls:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=9mH3taGzRTc:7yvzh53M0ls:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=9mH3taGzRTc:7yvzh53M0ls: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=9mH3taGzRTc:7yvzh53M0ls: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/9mH3taGzRTc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/12/xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpagesextension-library-on-openntf-updated-to-match-upgrade-pack-1</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Notes/Domino 8.5.3 Upgrade Pack 1: Great news for XPages]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/p1EHJlb6ZVs/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html" />
		<id>http://per.lausten.dk/blog/?p=879</id>
		<updated>2011-12-17T22:11:29Z</updated>
		<published>2011-12-14T17:49:24Z</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="open source" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Great news for XPages today: Notes/Domino 8.5.3 Upgrade Pack 1 has just been released. In short, Upgrade Pack 1 is an IBM supported version of the XPages Extension Library. This should help remove the fear of the Extension Library being open source that some customers have had, and thereby improve the adoption of XPages out [...]<hr />
Related posts:<ol>
<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/2009/07/great-resources-on-xpages.html' rel='bookmark' title='Great resources on XPages'>Great resources on XPages</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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=notesdomino-8-5-3-upgrade-pack-great-news-for-xpage">&lt;p&gt;Great news for XPages today: &lt;a href="http://www.edbrill.com/ebrill/edbrill.nsf/dx/new-releases-week-part-3-notesdomino-8.5.3-upgrade-pack-1"&gt;Notes/Domino 8.5.3 Upgrade Pack 1 has just been released&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In short, Upgrade Pack 1 is an IBM supported version of the XPages Extension Library. This should help remove the fear of the Extension Library being open source that some customers have had, and thereby improve the adoption of XPages out there.&lt;/p&gt;
&lt;p&gt;Upgrade Pack 1 is available on Passport Advantage as part number CI5GIEN.&lt;/p&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/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/2009/07/great-resources-on-xpages.html' rel='bookmark' title='Great resources on XPages'&gt;Great resources on XPages&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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Zl0OV1R4LZSt6cvax0duXhpZEDo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Zl0OV1R4LZSt6cvax0duXhpZEDo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Zl0OV1R4LZSt6cvax0duXhpZEDo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Zl0OV1R4LZSt6cvax0duXhpZEDo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=p1EHJlb6ZVs:a5LAN_azLwY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=p1EHJlb6ZVs:a5LAN_azLwY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=p1EHJlb6ZVs:a5LAN_azLwY: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=p1EHJlb6ZVs:a5LAN_azLwY: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/p1EHJlb6ZVs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=notesdomino-8-5-3-upgrade-pack-great-news-for-xpage#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/12/notesdomino-8-5-3-upgrade-pack-great-news-for-xpage.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=notesdomino-8-5-3-upgrade-pack-great-news-for-xpage</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[The 46th DanNotes conference is a wrap]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/S1PeeCXLu_k/the-46th-conference-is-a-wrap.html" />
		<id>http://per.lausten.dk/blog/?p=868</id>
		<updated>2011-12-01T20:43:12Z</updated>
		<published>2011-12-01T19:23:26Z</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="OpenNTF" />		<summary type="html"><![CDATA[Last week we held the 46th DanNotes conference. We had 80 participants and 7 speakers. Some of the presentations are available now as links on the agenda. Others will be added to the agenda later. We will also publish videos from the event once they have been edited. On the agenda you can find links [...]<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/2010/10/dannotes-danish-lotus-user-group-44-conference.html' rel='bookmark' title='DanNotes &#8211; Danish Lotus User Group &#8211; 44th conference'>DanNotes &#8211; Danish Lotus User Group &#8211; 44th conference</a></li>
<li><a href='http://per.lausten.dk/blog/2011/04/dannotes-danish-lotus-user-group-45th-conference.html' rel='bookmark' title='DanNotes – Danish Lotus User Group – 45th conference'>DanNotes – Danish Lotus User Group – 45th conference</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/12/the-46th-conference-is-a-wrap.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=the-46th-conference-is-a-wrap">&lt;p&gt;Last week we held the &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/91E8EDD938B91F1EC12578B2002E1055?open"&gt;46th DanNotes conference&lt;/a&gt;. We had 80 participants and 7 speakers. Some of the presentations are available now as links on &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/91E8EDD938B91F1EC12578B2002E1055?open"&gt;the agenda&lt;/a&gt;. Others will be added to the agenda later. We will also publish videos from the event once they have been edited.&lt;/p&gt;
&lt;p&gt;On &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/91E8EDD938B91F1EC12578B2002E1055?open"&gt;the agenda&lt;/a&gt; you can find links to the presentations by &lt;a href="http://www.xsptalk.com/"&gt;Chris Connor&lt;/a&gt; on XPages, Java, and Mobile - and links to the presentations by &lt;a href="http://www.eknori.de/"&gt;Ulrich Krause&lt;/a&gt; on compact, compress, DAOS and more. The presentation by Ulrich is also&lt;a href="http://www.slideshare.net/eknori/compact-compress-deduplicate-daos-10311760"&gt; available on Slideshare&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The following presentations held by &lt;a href="http://blog.collaborationmatters.com"&gt;Stuart McIntyre&lt;/a&gt; and &lt;a href="http://heidloff.net/"&gt;Niklas Heidloff&lt;/a&gt; have not yet been added to the agenda:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Stuart McIntyre: &lt;a href="http://www.slideshare.net/stuartmcintyre/ibm-connections-bridging-the-gap-delivered-at-dannotes-nov-2011"&gt;IBM Connections - Bridging the Gap&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Stuart McIntyre: &lt;a href="http://www.slideshare.net/stuartmcintyre/the-ibm-mobile-collaboration-portfolio-delivered-at-dannotes-nov-2011"&gt;The IBM Mobile Collaboration Portfolio&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Niklas Heidloff: &lt;a href="http://www.slideshare.net/niklasheidloff/openntf-overview-dannotes-112311"&gt;OpenNTF Overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Niklas Heidloff: &lt;a href="http://www.slideshare.net/niklasheidloff/xpages-mobile-controls-dannotes-112311"&gt;XPages Mobile Controls&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="http://heidloff.net/home.nsf/dx/11292011030955AMNHEBL9.htm"&gt;Niklas has blogged about the event&lt;/a&gt; - his blog entry contains links to the projects and controls that he showed in his sessions.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blog.collaborationmatters.com/blog/cmblog.nsf/dx/dannotes-an-outsiders-view-of-an-exceptional-lotus-user-group"&gt;Stuart has blogged about his impression of the event&lt;/a&gt;. He even calls DanNotes for "&lt;em&gt;the daddy of all user groups&lt;/em&gt;".&lt;/p&gt;
&lt;p&gt;I look forward to the 47th conference which takes place in May, 2012. Let me know if you are interested in speaking at the event.&lt;/p&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/2010/10/dannotes-danish-lotus-user-group-44-conference.html' rel='bookmark' title='DanNotes &amp;#8211; Danish Lotus User Group &amp;#8211; 44th conference'&gt;DanNotes &amp;#8211; Danish Lotus User Group &amp;#8211; 44th conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/04/dannotes-danish-lotus-user-group-45th-conference.html' rel='bookmark' title='DanNotes – Danish Lotus User Group – 45th conference'&gt;DanNotes – Danish Lotus User Group – 45th conference&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/PkfdknWMqe-YRplpG2IhBXWl9Pc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PkfdknWMqe-YRplpG2IhBXWl9Pc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/PkfdknWMqe-YRplpG2IhBXWl9Pc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PkfdknWMqe-YRplpG2IhBXWl9Pc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=S1PeeCXLu_k:AIYbpTpWJTg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=S1PeeCXLu_k:AIYbpTpWJTg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=S1PeeCXLu_k:AIYbpTpWJTg: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=S1PeeCXLu_k:AIYbpTpWJTg: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/S1PeeCXLu_k" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/12/the-46th-conference-is-a-wrap.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=the-46th-conference-is-a-wrap#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/12/the-46th-conference-is-a-wrap.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/12/the-46th-conference-is-a-wrap.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=the-46th-conference-is-a-wrap</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[IBM Certified 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/7JHBwcscNM0/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html" />
		<id>http://per.lausten.dk/blog/?p=870</id>
		<updated>2011-11-30T08:56:04Z</updated>
		<published>2011-11-30T08:56:04Z</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="DanNotes" /><category scheme="http://per.lausten.dk/blog" term="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Last week at the DanNotes conference IBM offered certification tests at half the price. I took the LOT-951 test in record time between lunch and the developer BOF and passed with a score of 87.5%. The test focuses on Domino Designer in Eclipse features, some @Formula and Lotusscript programming enhancements, and a lot of XPages. [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/02/i-am-now-an-ibm-certified-application-developer-lotus-notes-and-domino-8.html' rel='bookmark' title='I am now an IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.0'>I am now an IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.0</a></li>
<li><a href='http://per.lausten.dk/blog/2006/04/r7-application-development-update-exam.html' rel='bookmark' title='R7 Application Development Update exam (701) passed'>R7 Application Development Update exam (701) passed</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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-certified-application-developer-lotus-notes-and-domino-8-5">&lt;p&gt;Last week at the &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events/91E8EDD938B91F1EC12578B2002E1055?open"&gt;DanNotes conference&lt;/a&gt; IBM offered certification tests at half the price. I took the &lt;a href="http://www-03.ibm.com/certify/tests/ovrL951.shtml"&gt;LOT-951 test&lt;/a&gt; in record time between lunch and the developer BOF and passed with a score of 87.5%.&lt;/p&gt;
&lt;p&gt;The test focuses on Domino Designer in Eclipse features, some @Formula and Lotusscript programming enhancements, and a lot of XPages. If you plan on taking the test, then rememember to have a look at &lt;a href="http://www-03.ibm.com/certify/tests/objL951.shtml"&gt;the test objectives&lt;/a&gt; while preparing for the test.&lt;/p&gt;
&lt;p&gt;Next up for me is the &lt;a href="http://www-03.ibm.com/certify/tests/ovrL922.shtml"&gt;LOT-922 test&lt;/a&gt; which is required to upgrade my certification to the advanced level.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/02/i-am-now-an-ibm-certified-application-developer-lotus-notes-and-domino-8.html' rel='bookmark' title='I am now an IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.0'&gt;I am now an IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2006/04/r7-application-development-update-exam.html' rel='bookmark' title='R7 Application Development Update exam (701) passed'&gt;R7 Application Development Update exam (701) passed&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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-LX28ymrnfy_zGRqIJ8c1Nh2okQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-LX28ymrnfy_zGRqIJ8c1Nh2okQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-LX28ymrnfy_zGRqIJ8c1Nh2okQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-LX28ymrnfy_zGRqIJ8c1Nh2okQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=7JHBwcscNM0:zjTOpJmmDRU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=7JHBwcscNM0:zjTOpJmmDRU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=7JHBwcscNM0:zjTOpJmmDRU: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=7JHBwcscNM0:zjTOpJmmDRU: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/7JHBwcscNM0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-certified-application-developer-lotus-notes-and-domino-8-5#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/11/ibm-certified-application-developer-lotus-notes-and-domino-8-5.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm-certified-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[I&#8217;m a guest on This Week in Lotus episode 79]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/FFMfPQi2O9I/im-a-guest-on-this-week-in-lotus-episode-79.html" />
		<id>http://per.lausten.dk/blog/?p=864</id>
		<updated>2011-11-28T16:50:03Z</updated>
		<published>2011-11-28T16:50:03Z</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="IBM Sametime" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="podcast" /><category scheme="http://per.lausten.dk/blog" term="This Week in Lotus" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[A quick blog post to let you know that last week I was invited to be part of This Week in Lotus episode 79 together with Stuart McIntyre, Darren Duke - and Gab Davis as the 2nd guest. We discussed Sametime, OpenNTF, XPages and very naturally the 46th DanNotes conference which took place the day after the recording. It was [...]<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/2010/09/lotus-podcasts-in-heavy-rotation.html' rel='bookmark' title='Lotus related podcasts in heavy rotation'>Lotus related podcasts in heavy rotation</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>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/11/im-a-guest-on-this-week-in-lotus-episode-79.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=im-a-guest-on-this-week-in-lotus-episode-79">&lt;p&gt;A quick blog post to let you know that last week I was invited to be part of &lt;a href="thisweekinlotus.com/audio/twil.nsf/dx/this-week-in-lotus-079-why-sametime-8.5.2-ifr1-definitely-aint-no-turkey"&gt;This Week in Lotus episode 79&lt;/a&gt; together with Stuart McIntyre, Darren Duke - and Gab Davis as the 2nd guest. We discussed Sametime, OpenNTF, XPages and very naturally the &lt;a href="http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html"&gt;46th DanNotes conference&lt;/a&gt; which took place the day after the recording.&lt;/p&gt;
&lt;p&gt;It was great fun and I look forward to being a guest again sometime in the future. By the way, this was my 2nd appearance on the show as I was a guest on &lt;a href="http://thisweekinlotus.com/audio/twil.nsf/dx/this-week-in-lotus-024-reaching-the-cognos-centi"&gt;episode 24&lt;/a&gt; too.&lt;/p&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/2010/09/lotus-podcasts-in-heavy-rotation.html' rel='bookmark' title='Lotus related podcasts in heavy rotation'&gt;Lotus related podcasts in heavy rotation&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;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8UyXmtHGkNsHcOuAdPLnK6-4mys/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8UyXmtHGkNsHcOuAdPLnK6-4mys/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8UyXmtHGkNsHcOuAdPLnK6-4mys/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8UyXmtHGkNsHcOuAdPLnK6-4mys/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=FFMfPQi2O9I:XSkXh2pCKa0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=FFMfPQi2O9I:XSkXh2pCKa0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=FFMfPQi2O9I:XSkXh2pCKa0: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=FFMfPQi2O9I:XSkXh2pCKa0: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/FFMfPQi2O9I" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/11/im-a-guest-on-this-week-in-lotus-episode-79.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=im-a-guest-on-this-week-in-lotus-episode-79#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/11/im-a-guest-on-this-week-in-lotus-episode-79.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/11/im-a-guest-on-this-week-in-lotus-episode-79.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=im-a-guest-on-this-week-in-lotus-episode-79</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[XSnippets: code snippets for XPages]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/ThyuQAmj-vA/xsnippets-code-snippets-for-xpages.html" />
		<id>http://per.lausten.dk/blog/?p=857</id>
		<updated>2011-11-19T07:27:14Z</updated>
		<published>2011-11-19T07:23:53Z</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="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[The beta version of XSnippets was recently announced by Niklas Heidloff on the OpenNTF blog. XSnippets is a code repository of useful XPages code snippets that OpenNTF contributors can contribute to. If you have useful code snippets then consider adding them to XSnippets. I have added my first code snippet to XSnippets based on my blog [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/06/controlling-the-http-response-status-code-in-xpages.html' rel='bookmark' title='Controlling the HTTP response status code in XPages'>Controlling the HTTP response status code in XPages</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>
<li><a href='http://per.lausten.dk/blog/2011/01/xpages-custom-404-and-error-page.html' rel='bookmark' title='XPages custom 404 and error page'>XPages custom 404 and error page</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/11/xsnippets-code-snippets-for-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xsnippets-code-snippets-for-xpages">&lt;p&gt;The beta version of &lt;a href="http://www.openntf.org/xsnippets"&gt;XSnippets&lt;/a&gt; was recently &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/NHEF-8NNBK7"&gt;announced by Niklas Heidloff&lt;/a&gt; on the OpenNTF blog. XSnippets is a code repository of useful XPages code snippets that OpenNTF contributors can contribute to. If you have useful code snippets then consider adding them to XSnippets.&lt;/p&gt;
&lt;p&gt;I have added &lt;a href="http://openntf.org/XSnippets.nsf/snippet.xsp?id=controlling-the-http-response-status-code-in-xpages"&gt;my first code snippet&lt;/a&gt; to XSnippets based on &lt;a href="http://per.lausten.dk/blog/2011/06/controlling-the-http-response-status-code-in-xpages.html"&gt;my blog entry on how to control the HTTP response status code in XPages&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;iframe src="http://openntf.org/XSnippets.nsf/widget.xsp?id=controlling-the-http-response-status-code-in-xpages" frameborder="0" scrolling="no" width="640" height="80"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/06/controlling-the-http-response-status-code-in-xpages.html' rel='bookmark' title='Controlling the HTTP response status code in XPages'&gt;Controlling the HTTP response status code in XPages&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;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/01/xpages-custom-404-and-error-page.html' rel='bookmark' title='XPages custom 404 and error page'&gt;XPages custom 404 and error page&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QppT1fvtTNsMJqAf0byaoL-eIAU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QppT1fvtTNsMJqAf0byaoL-eIAU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QppT1fvtTNsMJqAf0byaoL-eIAU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QppT1fvtTNsMJqAf0byaoL-eIAU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ThyuQAmj-vA:JlUG2Y6DlqM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=ThyuQAmj-vA:JlUG2Y6DlqM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=ThyuQAmj-vA:JlUG2Y6DlqM: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=ThyuQAmj-vA:JlUG2Y6DlqM: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/ThyuQAmj-vA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/11/xsnippets-code-snippets-for-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xsnippets-code-snippets-for-xpages#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/11/xsnippets-code-snippets-for-xpages.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/11/xsnippets-code-snippets-for-xpages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xsnippets-code-snippets-for-xpages</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I am a member director on the OpenNTF board of directors]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/xrlAqRmCZVg/i-am-a-member-director-on-the-openntf-board-od-directors.html" />
		<id>http://per.lausten.dk/blog/?p=854</id>
		<updated>2011-10-25T17:52:47Z</updated>
		<published>2011-10-25T17:51:50Z</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="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[As previously blogged my company PHL Consult and I support OpenNTF and open source. To further show my support I nominated myself for one of the 9 member director positions in the OpenNTF board of directors. The board of directors for the newly incorporated OpenNTF has now been set and I am happy to have [...]<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/2010/07/i-have-somehow-contributed-to-openntf.html' rel='bookmark' title='I have somehow contributed to OpenNTF'>I have somehow contributed to OpenNTF</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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-a-member-director-on-the-openntf-board-od-directors">&lt;p&gt;As previously blogged &lt;a href="http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html"&gt;my company PHL Consult and I support OpenNTF and open source&lt;/a&gt;. To further show my support I nominated myself for one of the 9 member director positions in the OpenNTF board of directors.&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/BELT-8MSKHQ"&gt;board of directors for the newly incorporated OpenNTF&lt;/a&gt; has now been set and I am happy to have been elected to be part of the board (for one year). The new board had its first board meeting last Thursday and I look forward to be able to add value to OpenNTF.&lt;/p&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/2010/07/i-have-somehow-contributed-to-openntf.html' rel='bookmark' title='I have somehow contributed to OpenNTF'&gt;I have somehow contributed to OpenNTF&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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cdwXZXeUuY_AtNgSOPz6L_r6eNI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cdwXZXeUuY_AtNgSOPz6L_r6eNI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cdwXZXeUuY_AtNgSOPz6L_r6eNI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cdwXZXeUuY_AtNgSOPz6L_r6eNI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=xrlAqRmCZVg:PJdJIa5lJSk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=xrlAqRmCZVg:PJdJIa5lJSk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=xrlAqRmCZVg:PJdJIa5lJSk: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=xrlAqRmCZVg:PJdJIa5lJSk: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/xrlAqRmCZVg" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-a-member-director-on-the-openntf-board-od-directors#comments" thr:count="4" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html/feed/atom" thr:count="4" />
		<thr:total>4</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/10/i-am-a-member-director-on-the-openntf-board-od-directors.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-a-member-director-on-the-openntf-board-od-directors</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[My 1st year as self-employed consultant at PHL Consult]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/7LTnIng90PE/my-1st-year-as-self-employed-consultant-at-phl-consult.html" />
		<id>http://per.lausten.dk/blog/?p=850</id>
		<updated>2011-10-20T05:28:16Z</updated>
		<published>2011-10-20T05:28:16Z</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="freelance" /><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="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[One year ago I started as self-employed consultant at my own company PHL Consult after having worked for IBM for 16 years - and what a great year! Starting on my own has proved to be one my of my best decisions ever. It has been a year of classic Lotus Notes application development work, XPages [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2010/12/my-first-2-monts-as-self-employed-consultant.html' rel='bookmark' title='My first two months as self-employed consultant'>My first two months as self-employed consultant</a></li>
<li><a href='http://per.lausten.dk/blog/2010/10/my-first-2-weeks-as-self-employed-consultant.html' rel='bookmark' title='My first 2 weeks as a self-employed consultant'>My first 2 weeks as a self-employed consultant</a></li>
<li><a href='http://per.lausten.dk/blog/2010/10/welcome-to-phl-consult.html' rel='bookmark' title='Welcome to the opening of PHL Consult'>Welcome to the opening of PHL Consult</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/10/my-1st-year-as-self-employed-consultant-at-phl-consult.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-1st-year-as-self-employed-consultant-at-phl-consult">&lt;p&gt;&lt;a href="http://per.lausten.dk/blog/2010/10/welcome-to-phl-consult.html"&gt;One year ago&lt;/a&gt; I started as self-employed consultant at my own company &lt;a href="http://phl-consult.dk/"&gt;PHL Consult&lt;/a&gt; after having worked for IBM for 16 years - and what a great year! Starting on my own has proved to be one my of my best decisions ever.&lt;/p&gt;
&lt;p&gt;It has been a year of classic Lotus Notes application development work, XPages development work, teaching courses and much more. I started with one customer and have since then been doing work for 10 other paying customers and been involved in proposals for a handful more. Furthermore, &lt;a href="http://per.lausten.dk/blog/2011/01/xpages-cheat-sheet.html"&gt;I reviewed David Leedys XPages cheat sheet&lt;/a&gt;, and &lt;a href="http://heidloff.net/home.nsf/dx/09082011020549AMNHE96P.htm"&gt;reviewed the IBM course "Modernizing Lotus Domino 8.5.2 Applications"&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This year I also became member of the boards at &lt;a href="http://notesnet.dk/"&gt;NotesNet&lt;/a&gt;, &lt;a href="http://www.dannotes.dk/"&gt;DanNotes&lt;/a&gt; and &lt;a href="http://www.openntf.org/"&gt;OpenNTF&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The following are public sites that I have implemented for customers during my 1st year:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.startdithjerte.dk/"&gt;startdithjerte.dk&lt;/a&gt;: a portal (in Danish) on heart failures and defibilator products with a related web shop where you can buy automated external defibrillators (AEDs) and accessories. &lt;a href="http://per.lausten.dk/blog/2011/02/client-project-xpages-cms-and-web-shop-with-card-payment.html"&gt;I implemented the solution using XPages&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mediaplus.dk/"&gt;mediaplus.dk&lt;/a&gt;: a company web site with a backend CMS. &lt;a href="http://per.lausten.dk/blog/2011/05/client-project-xpages-cms-for-company-website.html"&gt;I implemented the web site using XPages&lt;/a&gt; and brought the proposed web design to life by extending the OneUI CSS.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Lessons learned (and assumptions confirmed):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Networking is important: several of my customers have chosen me for their work because we were connected in some way.&lt;/li&gt;
&lt;li&gt;Advertising helps: I advertise my business services on the Google advertising network and know for a fact that some customers came to me via that channel.&lt;/li&gt;
&lt;li&gt;Being social: I am a strong believer in blogging and social networks and the impact that it can have on you and others.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I look forward to the next year and what it will bring me of interesting work and projects.&lt;/p&gt;
&lt;p&gt;One final advice: pursue your dream!&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2010/12/my-first-2-monts-as-self-employed-consultant.html' rel='bookmark' title='My first two months as self-employed consultant'&gt;My first two months as self-employed consultant&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2010/10/my-first-2-weeks-as-self-employed-consultant.html' rel='bookmark' title='My first 2 weeks as a self-employed consultant'&gt;My first 2 weeks as a self-employed consultant&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2010/10/welcome-to-phl-consult.html' rel='bookmark' title='Welcome to the opening of PHL Consult'&gt;Welcome to the opening of PHL Consult&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/i7pP7bR_eJX9fo708iyfvK3ZAX8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/i7pP7bR_eJX9fo708iyfvK3ZAX8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/i7pP7bR_eJX9fo708iyfvK3ZAX8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/i7pP7bR_eJX9fo708iyfvK3ZAX8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=7LTnIng90PE:ojuahaphvlk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=7LTnIng90PE:ojuahaphvlk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=7LTnIng90PE:ojuahaphvlk: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=7LTnIng90PE:ojuahaphvlk: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/7LTnIng90PE" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/10/my-1st-year-as-self-employed-consultant-at-phl-consult.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-1st-year-as-self-employed-consultant-at-phl-consult#comments" thr:count="6" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/10/my-1st-year-as-self-employed-consultant-at-phl-consult.html/feed/atom" thr:count="6" />
		<thr:total>6</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/10/my-1st-year-as-self-employed-consultant-at-phl-consult.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-1st-year-as-self-employed-consultant-at-phl-consult</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Going to Lotusphere 2012]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/pdbV_Vakpvk/going-to-lotusphere-2012.html" />
		<id>http://per.lausten.dk/blog/?p=844</id>
		<updated>2011-10-09T19:36:20Z</updated>
		<published>2011-10-09T11:42:05Z</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="Lotusphere2012" /><category scheme="http://per.lausten.dk/blog" term="PHL Consult" />		<summary type="html"><![CDATA[Lotusphere 2012 takes place January 15 - January 19, 2012 in Orlando, Florida - and I am very happy to report that I will participate in the conference. This will be my first ever Lotusphere in the US (I participated in the Lotusphere conference in Berlin in 1999). I arrive Friday evening (January 13) and leave [...]<hr />
Related posts:<ol>
<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>
<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>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=going-to-lotusphere-2012">&lt;p&gt;&lt;a href="http://lotusphere.com"&gt;Lotusphere 2012&lt;/a&gt; takes place January 15 - January 19, 2012 in Orlando, Florida - and I am very happy to report that I will participate in the conference. This will be my first ever Lotusphere in the US (I participated in the Lotusphere conference in Berlin in 1999).&lt;/p&gt;
&lt;p&gt;I arrive Friday evening (January 13) and leave again Thursday evening (January 19). I will be staying at the Disney's Yacht Club Resort, if you need me &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;I look forward to meet a lot of interesting people from the Lotus community - most of whom I have only been in contact with through blogging, Twitter, Skype, mails etc. and never met before. See you soon!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; I have created a &lt;a href="http://lanyrd.com/2012/lotusphere/"&gt;Lanyrd event for Lotusphere 2012&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&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;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;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/d5w6_3Qbg3PTIEswVc2dadCZTzw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/d5w6_3Qbg3PTIEswVc2dadCZTzw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/d5w6_3Qbg3PTIEswVc2dadCZTzw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/d5w6_3Qbg3PTIEswVc2dadCZTzw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=pdbV_Vakpvk:jjUy7l8ny9c:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=pdbV_Vakpvk:jjUy7l8ny9c:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=pdbV_Vakpvk:jjUy7l8ny9c: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=pdbV_Vakpvk:jjUy7l8ny9c: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/pdbV_Vakpvk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=going-to-lotusphere-2012#comments" thr:count="4" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html/feed/atom" thr:count="4" />
		<thr:total>4</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/10/going-to-lotusphere-2012.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=going-to-lotusphere-2012</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Lotus Notes/Domino 8.5.3 and IBM XWork Server 8.5.3 are here]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/YgJ_HFpIJtQ/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html" />
		<id>http://per.lausten.dk/blog/?p=837</id>
		<updated>2011-10-04T09:53:00Z</updated>
		<published>2011-10-04T07:17:32Z</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="Lotus Domino Designer" /><category scheme="http://per.lausten.dk/blog" term="Lotus Notes" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[It's October 4th and Lotus Notes and Domino 8.5.3 are now available for download on Passport Advantage. The brand new IBM XWork Server has also been announced. I have been looking forward to this release in general, and in particular because of features specifically for XPages developers: improved JavaScript editor finally a java design element for XPages [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2006/05/lotus-notesdomino-7-vs-sharepoint.html' rel='bookmark' title='Lotus Notes/Domino 7 vs SharePoint Portal Server 2003'>Lotus Notes/Domino 7 vs SharePoint Portal Server 2003</a></li>
<li><a href='http://per.lausten.dk/blog/2011/02/i-am-now-an-ibm-certified-application-developer-lotus-notes-and-domino-8.html' rel='bookmark' title='I am now an IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.0'>I am now an IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.0</a></li>
<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>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here">&lt;p&gt;It's October 4th and &lt;a href="http://edbrill.com/ebrill/edbrill.nsf/dx/ibm-lotus-notesdomino-8.5.3-now-available-including-entitlement-to-ibm-connections-files-and-profiles"&gt;Lotus Notes and Domino 8.5.3 are now available&lt;/a&gt; for download on Passport Advantage. &lt;a href="http://edbrill.com/ebrill/edbrill.nsf/dx/introducing-ibm-xwork-server"&gt;The brand new IBM XWork Server&lt;/a&gt; has also been announced.&lt;/p&gt;
&lt;p&gt;I have been looking forward to this release in general, and in particular because of features specifically for XPages developers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;improved JavaScript editor&lt;/li&gt;
&lt;li&gt;finally a java design element for XPages&lt;/li&gt;
&lt;li&gt;Dojo 1.6.1&lt;/li&gt;
&lt;li&gt;OneUI version 2.1 (which looks very similar to the prototype 3.0 version that the &lt;a href="http://www-10.lotus.com/ldd/ddwiki.nsf/"&gt;Lotus Notes and Domino Application Development wiki&lt;/a&gt; uses)&lt;/li&gt;
&lt;li&gt;option to combine CSS and JS in a single file to improve site speed&lt;/li&gt;
&lt;li&gt;improved HTML5 support such as support for adding HTML5 attributes&lt;/li&gt;
&lt;li&gt;source control enablement&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;I look very much forward to an improved experience when working with XPages development in the Domino Designer client. Happy coding!&lt;/div&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2006/05/lotus-notesdomino-7-vs-sharepoint.html' rel='bookmark' title='Lotus Notes/Domino 7 vs SharePoint Portal Server 2003'&gt;Lotus Notes/Domino 7 vs SharePoint Portal Server 2003&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/02/i-am-now-an-ibm-certified-application-developer-lotus-notes-and-domino-8.html' rel='bookmark' title='I am now an IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.0'&gt;I am now an IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.0&lt;/a&gt;&lt;/li&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;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/q95NGwqopKCqezJN7kdw9vS17bE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q95NGwqopKCqezJN7kdw9vS17bE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/q95NGwqopKCqezJN7kdw9vS17bE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q95NGwqopKCqezJN7kdw9vS17bE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=YgJ_HFpIJtQ:uNys2lZaTw4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=YgJ_HFpIJtQ:uNys2lZaTw4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=YgJ_HFpIJtQ:uNys2lZaTw4: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=YgJ_HFpIJtQ:uNys2lZaTw4: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/YgJ_HFpIJtQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html/feed/atom" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/10/lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=lotus-notesdomino-8-5-3-and-ibm-xwork-server-8-5-3-is-here</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[Integrating a Lotus Notes application with Exchange]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/cPlweh41Lzw/integrating-a-lotus-notes-application-with-exchange.html" />
		<id>http://per.lausten.dk/blog/?p=833</id>
		<updated>2012-02-08T13:36:48Z</updated>
		<published>2011-09-29T10:32:36Z</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="Lotus Domino" /><category scheme="http://per.lausten.dk/blog" term="Lotus Notes" /><category scheme="http://per.lausten.dk/blog" term="Lotusscript" /><category scheme="http://per.lausten.dk/blog" term="Microsoft Exchange" /><category scheme="http://per.lausten.dk/blog" term="Microsoft Outlook" />		<summary type="html"><![CDATA[I recently finished a project with the purpose of integrating a Lotus Notes CRM application with Microsoft Outlook and Microsoft Exchange. The customer has moved their mail handling to Exchange and Outlook and still uses Lotus Notes for their application handling including this CRM application. The CRM application had functionality to import mails from Notes, [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/02/i-am-now-an-ibm-certified-application-developer-lotus-notes-and-domino-8.html' rel='bookmark' title='I am now an IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.0'>I am now an IBM Certified Application Developer &#8211; Lotus Notes and Domino 8.0</a></li>
<li><a href='http://per.lausten.dk/blog/2009/01/lotus-notes-85-and-lotus-domino-85-are.html' rel='bookmark' title='Lotus Notes 8.5 and Lotus Domino 8.5 are now available'>Lotus Notes 8.5 and Lotus Domino 8.5 are now available</a></li>
<li><a href='http://per.lausten.dk/blog/2007/02/lotus-notes-8-demo-and-white-paper.html' rel='bookmark' title='Lotus Notes 8: a demo and a white paper'>Lotus Notes 8: a demo and a white paper</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/09/integrating-a-lotus-notes-application-with-exchange.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=integrating-a-lotus-notes-application-with-exchange">&lt;p&gt;I recently finished a project with the purpose of integrating a Lotus Notes CRM application with Microsoft Outlook and Microsoft Exchange. The customer has moved their mail handling to Exchange and Outlook and still uses Lotus Notes for their application handling including this CRM application. The CRM application had functionality to import mails from Notes, send mail from Notes, and create and maintain meeting invitations. My task was to make this functionality work with Exchange and Outlook instead.&lt;/p&gt;
&lt;p&gt;In order to integrate with Exchange I used the &lt;a href="http://archive.msdn.microsoft.com/ewsjavaapi"&gt;Exchange Web Services (EWS) Java API&lt;/a&gt; and created a Java class with the necessary jar files imported that is responsible for the interface between the existing Lotusscript logic and the EWS API. The Lotusscript logic then uses LS2J to use the methods in the Java class.&lt;/p&gt;
&lt;p&gt;With Exchange Web Services installed on the Exchange server the Java API can access the web services using the WSDL at /EWS/Service.wsdl (through an endpoint called /EWS/exchange.asmx).&lt;/p&gt;
&lt;p&gt;To allow the Lotus Notes client to communicate with the Exchange server I needed to change the java.policy file in order to add: permission java.net.NetPermission "setCookieHandler", "write";. To automate this I used &lt;a href="http://www.bleedyellow.com/blogs/olilogic/entry/editing_the_java_policy_file5"&gt;this Lotusscript code by Darren Oliver&lt;/a&gt; that checks the java.policy file for a specific permission policy and if not found adds the permission policy.&lt;/p&gt;
&lt;p&gt;At first I wanted to use Exchange Impersonation to allow a single Windows Active Directory account to be able to act on behalf of others users on a Exchange mailbox. This decision was later changed to use the individual users own credentials. The user is prompted for their password and this is stored encrypted for their use only in a profile document. The following code snippet shows how communication with the Exchange server is set up in Java using the EWS API:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
service = new ExchangeService(ExchangeVersion.Exchange2010_SP1);
// service.setTraceEnabled(true); // enable to trace the web service communication in the Java debug console
service.setUrl(new java.net.URI(server));
ExchangeCredentials credentials = new WebCredentials(userid, password);
service.setCredentials(credentials);
&lt;/pre&gt;
&lt;p&gt;A meeting is simply created using the Appointment class. Time zone support is achieved by using UTC as the time zone for date details. To format dates as UTC I used the LSGMTTime  property of the NotesDateTime class.&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
Appointment appointment = new Appointment(service);
appointment.setSubject(subject);
appointment.setBody(MessageBody.getMessageBodyFromText(body));
appointment.setStart(formatter.parse(startDate));
appointment.setEnd(formatter.parse(endDate));
appointment.setLocation(location);
// Save as appointment - and not as a meeting with participants
appointment.save(SendInvitationsMode.SendToNone);
&lt;/pre&gt;
&lt;p&gt;Importing mails is done by presenting the user with a list of mails from the users Exchange mailbox. The list is retrieved by looping through the Inbox folder:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
ItemView view = new ItemView(100);
view.getOrderBy().add(ItemSchema.DateTimeReceived, SortDirection.Ascending);
FindItemsResults&amp;lt;Item&amp;gt; findResults;
findResults = service.findItems(WellKnownFolderName.Inbox, view);
service.loadPropertiesForItems(findResults.getItems(), new PropertySet(BasePropertySet.IdOnly, EmailMessageSchema.Subject, EmailMessageSchema.DateTimeReceived, EmailMessageSchema.Sender));
&lt;/pre&gt;
&lt;p&gt;The user then selects a mail from the list and the corresponding mail in Exchange is retrieved with the unique item id as identifier.&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
EmailMessage message = EmailMessage.bind(service, new ItemId(mailItemId));
&lt;/pre&gt;
&lt;p&gt;Rich text support between Notes and Outlook is handled using Lotusscript stream and mime classes:&lt;/p&gt;
&lt;pre class="brush: vb; title: ; notranslate"&gt;
Set stream = session.CreateStream
Call stream.WriteText(mailBody)
Set mime = doc.CreateMIMEEntity(&amp;quot;Body&amp;quot;)
Call mime.SetContentFromText (stream, &amp;quot;text/html;charset=UTF-8&amp;quot;,ENC_NONE)
&lt;/pre&gt;
&lt;p&gt;When sending mails from the Notes CRM application the user can access their Outlook contacts. The list of Outlook contacts is retrieved by looping through the Contacts folder:&lt;/p&gt;
&lt;pre class="brush: java; title: ; notranslate"&gt;
ItemView view = new ItemView(2000);
view.getOrderBy().add(ContactSchema.DisplayName, SortDirection.Ascending);
FindItemsResults&amp;lt;Item&amp;gt; findResults;
findResults = service.findItems(WellKnownFolderName.Contacts, view);
&lt;/pre&gt;
&lt;p&gt;The Microsoft Outlook client is launched when a meeting invitation is created in order for the user to finish the meeting invitation in Outlook. This is achieved by using the Shell Lotusscript command together with the fact that Outlook can be launched with a parameter that indicates what item to open when launched:&lt;/p&gt;
&lt;pre class="brush: vb; title: ; notranslate"&gt;
Shell( getOutlookPath() + &amp;quot; /select outlook:&amp;quot; + Ucase(doc.OutlookUniqueId(0)) )
&lt;/pre&gt;
&lt;p&gt;The use of LS2J led to some performance issues at the customer site in the form of 10-20 seconds load times before a document was opened. The reason for this is that the Java code is extracted to disk whereby the Antivirus program at use at the customer site started to check all files for virus before the document could be opened. The customer modified the Antivirus settings to remove this check whereby the documents opened within reasonable time again.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/02/i-am-now-an-ibm-certified-application-developer-lotus-notes-and-domino-8.html' rel='bookmark' title='I am now an IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.0'&gt;I am now an IBM Certified Application Developer &amp;#8211; Lotus Notes and Domino 8.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2009/01/lotus-notes-85-and-lotus-domino-85-are.html' rel='bookmark' title='Lotus Notes 8.5 and Lotus Domino 8.5 are now available'&gt;Lotus Notes 8.5 and Lotus Domino 8.5 are now available&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2007/02/lotus-notes-8-demo-and-white-paper.html' rel='bookmark' title='Lotus Notes 8: a demo and a white paper'&gt;Lotus Notes 8: a demo and a white paper&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/53M7eU9FtMVzcelGpkp8hAVI8oM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/53M7eU9FtMVzcelGpkp8hAVI8oM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/53M7eU9FtMVzcelGpkp8hAVI8oM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/53M7eU9FtMVzcelGpkp8hAVI8oM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=cPlweh41Lzw:R0KkIAcJKuA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=cPlweh41Lzw:R0KkIAcJKuA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=cPlweh41Lzw:R0KkIAcJKuA: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=cPlweh41Lzw:R0KkIAcJKuA: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/cPlweh41Lzw" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/09/integrating-a-lotus-notes-application-with-exchange.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=integrating-a-lotus-notes-application-with-exchange#comments" thr:count="4" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/09/integrating-a-lotus-notes-application-with-exchange.html/feed/atom" thr:count="4" />
		<thr:total>4</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/09/integrating-a-lotus-notes-application-with-exchange.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=integrating-a-lotus-notes-application-with-exchange</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[DanNotes: The 46th Danish LUG conference is in November]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/lM4i9bQ1_AU/dannotes-the-46th-danish-lug-conference-is-in-november.html" />
		<id>http://per.lausten.dk/blog/?p=829</id>
		<updated>2011-09-05T20:12:55Z</updated>
		<published>2011-09-05T18:40:01Z</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="Lotus" />		<summary type="html"><![CDATA[DanNotes is the Danish Lotus user group. It started as a Lotus user group back in 1993 and has since then organized 2 day conferences for the Danish Lotus community with a schedule of 2 a year. The next conference in November is conference number 46! That's an impressive number of conferences. I am proud [...]<hr />
Related posts:<ol>
<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/2011/04/dannotes-danish-lotus-user-group-45th-conference.html' rel='bookmark' title='DanNotes – Danish Lotus User Group – 45th conference'>DanNotes – Danish Lotus User Group – 45th conference</a></li>
<li><a href='http://per.lausten.dk/blog/2010/10/dannotes-danish-lotus-user-group-44-conference.html' rel='bookmark' title='DanNotes &#8211; Danish Lotus User Group &#8211; 44th conference'>DanNotes &#8211; Danish Lotus User Group &#8211; 44th conference</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dannotes-the-46th-danish-lug-conference-is-in-november">&lt;p&gt;&lt;a href="http://www.dannotes.dk/"&gt;DanNotes&lt;/a&gt; is the Danish Lotus user group. It started as a Lotus user group back in 1993 and has since then organized 2 day conferences for the Danish Lotus community with a schedule of 2 a year. The next conference in November is &lt;a href="http://www.dannotes.dk/dannotes/dannotes.nsf/docs/42072038fdaddcaac12578b70032d020"&gt;conference number 46&lt;/a&gt;! That's an &lt;a href="http://www.dannotes.dk/dannotes/arrangem.nsf/events?open&amp;amp;exp=a77cb47e093a48e3c1257641006a14e2"&gt;impressive number of conferences.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I am proud to have been selected as member of the board at the spring conference in May and I am thereby part of the group of organizers that plan the next conference.&lt;/p&gt;
&lt;p&gt;I am really looking forward to meet Anders Holm Petersen who is &lt;a href="http://lotusdk.wordpress.com/2011/08/03/ny-lotus-chef-i-danmark-2/"&gt;the new country manager&lt;/a&gt; for IBM Collaboration Solutions in Denmark, to meet our great lineup of speakers: &lt;a href="http://heidloff.net/"&gt;Niklas Heidloff&lt;/a&gt;, &lt;a href="http://collaborationmatters.com/"&gt;Stuart McIntyre&lt;/a&gt;, &lt;a href="http://www.eknori.de/"&gt;Ulrich Krause&lt;/a&gt;, and &lt;a href="http://www.xsptalk.com/"&gt;Chris Connor&lt;/a&gt; - and also to meet the many members of the Danish Lotus community.&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="http://events.linkedin.com/Brugergruppen-DanNotes-2-dags-seminar-46/pub/707171"&gt;a LinkedIn event&lt;/a&gt; and &lt;a href="http://lanyrd.com/2011/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;hr /&gt;&lt;p&gt;Related posts:&lt;ol&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/2011/04/dannotes-danish-lotus-user-group-45th-conference.html' rel='bookmark' title='DanNotes – Danish Lotus User Group – 45th conference'&gt;DanNotes – Danish Lotus User Group – 45th conference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2010/10/dannotes-danish-lotus-user-group-44-conference.html' rel='bookmark' title='DanNotes &amp;#8211; Danish Lotus User Group &amp;#8211; 44th conference'&gt;DanNotes &amp;#8211; Danish Lotus User Group &amp;#8211; 44th conference&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/eZDRHFSemJtutwTaYNNi6KKK0xQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eZDRHFSemJtutwTaYNNi6KKK0xQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/eZDRHFSemJtutwTaYNNi6KKK0xQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eZDRHFSemJtutwTaYNNi6KKK0xQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=lM4i9bQ1_AU:_ngbr2-4-bs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=lM4i9bQ1_AU:_ngbr2-4-bs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=lM4i9bQ1_AU:_ngbr2-4-bs: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=lM4i9bQ1_AU:_ngbr2-4-bs: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/lM4i9bQ1_AU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dannotes-the-46th-danish-lug-conference-is-in-november#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/09/dannotes-the-46th-danish-lug-conference-is-in-november.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dannotes-the-46th-danish-lug-conference-is-in-november</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[PHL Consult supports OpenNTF and open source]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/T9TjbLnQiFc/phl-consult-supports-openntf-and-open-source.html" />
		<id>http://per.lausten.dk/blog/?p=826</id>
		<updated>2011-09-04T16:10:02Z</updated>
		<published>2011-09-04T07:54:26Z</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="open source" /><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[My company, PHL Consult, became member of OpenNTF in August and thereby supports OpenNTF and the use of open source within the Lotus Domino/XPages community. This means that I support the idea of open source in general (and support OpenNTF as an organization) - and that I both contribute code to and reuse code from OpenNTF. I [...]<hr />
Related posts:<ol>
<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>
<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>
<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>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phl-consult-supports-openntf-and-open-source">&lt;p&gt;My company, &lt;a href="http://phl-consult.dk/"&gt;PHL Consult&lt;/a&gt;, became &lt;a href="http://www.openntf.org/blogs/openntf.nsf/d6plinks/BELT-8KS32S"&gt;member of OpenNTF in August&lt;/a&gt; and thereby supports OpenNTF and the use of open source within the Lotus Domino/XPages community. This means that I support the idea of open source in general (and support OpenNTF as an organization) - and that I both contribute code to and reuse code from OpenNTF. I have so far contributed 2 open source XPages custom controls to OpenNTF:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://per.lausten.dk/blog/2011/06/xpages-seo-custom-control-on-openntf.html"&gt;XPages SEO custom control&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"&gt;XPages Web Analytics custom control&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;At the time of writing this blog post &lt;a href="http://openntf.org/Internal/home.nsf/members.xsp"&gt;OpenNTF has 23 company members&lt;/a&gt;. Members according to OpenNTF are "&lt;em&gt;companies with the common interest to provide open source for IBM Lotus Notes and Domino and to encourage broad industry use of these applications. To achieve these goals members are willing to devote resources or participate in other ways"&lt;/em&gt;.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&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;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;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;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zvmahC7r8laoIrsJTVjbxVxgbaI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zvmahC7r8laoIrsJTVjbxVxgbaI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/zvmahC7r8laoIrsJTVjbxVxgbaI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zvmahC7r8laoIrsJTVjbxVxgbaI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=T9TjbLnQiFc:EOP3DNlkHZY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=T9TjbLnQiFc:EOP3DNlkHZY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=T9TjbLnQiFc:EOP3DNlkHZY: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=T9TjbLnQiFc:EOP3DNlkHZY: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/T9TjbLnQiFc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phl-consult-supports-openntf-and-open-source#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html/feed/atom" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/09/phl-consult-supports-openntf-and-open-source.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=phl-consult-supports-openntf-and-open-source</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[I am teaching two XPages courses in August]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/NSxFTs_cLHQ/i-am-teaching-two-xpages-courses-in-august.html" />
		<id>http://per.lausten.dk/blog/?p=818</id>
		<updated>2011-08-22T18:22:18Z</updated>
		<published>2011-08-10T04:43:05Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="course" /><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 will be teaching two 3-day courses in August, 2011 on basic XPages application development. The courses are arranged by Intravision. The first 3-day course starts August 23 at IBM in Lyngby. Seats are still available if you are interested in signing up for the course. Please see the course details (in Danish) for more information [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/02/xpages-forum.html' rel='bookmark' title='XPages forum'>XPages forum</a></li>
<li><a href='http://per.lausten.dk/blog/2011/02/client-project-xpages-cms-and-web-shop-with-card-payment.html' rel='bookmark' title='Client project: XPages CMS and web shop with card payment'>Client project: XPages CMS and web shop with card payment</a></li>
<li><a href='http://per.lausten.dk/blog/2011/05/client-project-xpages-cms-for-company-website.html' rel='bookmark' title='Client project: XPages CMS for company website'>Client project: XPages CMS for company website</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/08/i-am-teaching-two-xpages-courses-in-august.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-teaching-two-xpages-courses-in-august">&lt;p&gt;I will be teaching two 3-day courses in August, 2011 on basic XPages application development. The courses are arranged by &lt;a href="http://intravision.dk/"&gt;Intravision&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The first 3-day course starts August 23 at IBM in Lyngby. Seats are still available if you are interested in signing up for the course. Please see the &lt;a href="http://intravision.dk/index.php?option=com_eventlist&amp;amp;view=details&amp;amp;id=40%3Audviklerkursus-xpages&amp;amp;Itemid=44&amp;amp;lang=da"&gt;course details (in Danish)&lt;/a&gt; for more information on how to sign up.&lt;/p&gt;
&lt;p&gt;The second 3-day course takes place the week after and is a closed course for a group of developers from the same company.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/02/xpages-forum.html' rel='bookmark' title='XPages forum'&gt;XPages forum&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/02/client-project-xpages-cms-and-web-shop-with-card-payment.html' rel='bookmark' title='Client project: XPages CMS and web shop with card payment'&gt;Client project: XPages CMS and web shop with card payment&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/05/client-project-xpages-cms-for-company-website.html' rel='bookmark' title='Client project: XPages CMS for company website'&gt;Client project: XPages CMS for company website&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KxdBT3IKHSVBFAJlRJ2OisS5aJw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KxdBT3IKHSVBFAJlRJ2OisS5aJw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KxdBT3IKHSVBFAJlRJ2OisS5aJw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KxdBT3IKHSVBFAJlRJ2OisS5aJw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=NSxFTs_cLHQ:hV9mOCINPv4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=NSxFTs_cLHQ:hV9mOCINPv4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=NSxFTs_cLHQ:hV9mOCINPv4: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=NSxFTs_cLHQ:hV9mOCINPv4: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/NSxFTs_cLHQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/08/i-am-teaching-two-xpages-courses-in-august.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-teaching-two-xpages-courses-in-august#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/08/i-am-teaching-two-xpages-courses-in-august.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/08/i-am-teaching-two-xpages-courses-in-august.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-am-teaching-two-xpages-courses-in-august</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[XPages: only show content for authorized users]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/4QsEGyrY8Wk/xpages-only-show-content-for-authorized-users.html" />
		<id>http://per.lausten.dk/blog/?p=810</id>
		<updated>2012-02-08T13:38:08Z</updated>
		<published>2011-07-08T14:36:01Z</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="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[Today I was asked: how do you make sure that anonymous users do not see content that only logged on (and thereby authorized) users must see? I often use a simple solution of having a xp:panel for anonymous users and another xp:panel for authorized users (both on the same XPage). Only one of the two [...]<hr />
Related posts:<ol>
<li><a href='http://per.lausten.dk/blog/2011/01/xpages-custom-404-and-error-page.html' rel='bookmark' title='XPages custom 404 and error page'>XPages custom 404 and error page</a></li>
<li><a href='http://per.lausten.dk/blog/2006/10/sorting-notesdocumentcollection-by.html' rel='bookmark' title='Sorting a NotesDocumentCollection by multiple field values (Show&#8217;n Tell Thursday)'>Sorting a NotesDocumentCollection by multiple field values (Show&#8217;n Tell Thursday)</a></li>
<li><a href='http://per.lausten.dk/blog/2011/01/presentation-my-view-on-xpages.html' rel='bookmark' title='Presentation: My view on XPages'>Presentation: My view on XPages</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/07/xpages-only-show-content-for-authorized-users.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-only-show-content-for-authorized-users">&lt;p&gt;Today I was asked: how do you make sure that anonymous users do not see content that only logged on (and thereby authorized) users must see?&lt;/p&gt;
&lt;p&gt;I often use a simple solution of having a xp:panel for anonymous users and another xp:panel for authorized users (both on the same XPage). Only one of the two panels are rendered based on whether the user is logged or not. So the two xp:panels would look like this:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Panel 1: for anonymous users&lt;/strong&gt;&lt;/p&gt;
&lt;pre class="brush: xml; title: ; notranslate"&gt;
&amp;lt;xp:panel&amp;gt;
&amp;lt;xp:this.rendered&amp;gt;&amp;lt;![CDATA[#{javascript:@UserName() == &amp;quot;Anonymous&amp;quot;}]]&amp;gt;&amp;lt;/xp:this.rendered&amp;gt;
You must log on to see contents.
&amp;lt;/xp:panel&amp;gt;
&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Panel 2: for authorized users&lt;/strong&gt;&lt;/p&gt;
&lt;pre class="brush: xml; title: ; notranslate"&gt;
&amp;lt;xp:panel&amp;gt;
&amp;lt;xp:this.rendered&amp;gt;&amp;lt;![CDATA[#{javascript:(@UserName() != &amp;quot;Anonymous&amp;quot;}]]&amp;gt;&amp;lt;/xp:this.rendered&amp;gt;
This is the secret content.
&amp;lt;/xp:panel&amp;gt;
&lt;/pre&gt;
&lt;p&gt;You can combine this with the &lt;a href="http://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&amp;amp;name=Xpages%20Dojo%20Login%20Custom%20Control"&gt;XPages Dojo Login Custom Control&lt;/a&gt; available on OpenNTF so that the user can stay on the page when logging on instead of going to a seperate login page.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/01/xpages-custom-404-and-error-page.html' rel='bookmark' title='XPages custom 404 and error page'&gt;XPages custom 404 and error page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2006/10/sorting-notesdocumentcollection-by.html' rel='bookmark' title='Sorting a NotesDocumentCollection by multiple field values (Show&amp;#8217;n Tell Thursday)'&gt;Sorting a NotesDocumentCollection by multiple field values (Show&amp;#8217;n Tell Thursday)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://per.lausten.dk/blog/2011/01/presentation-my-view-on-xpages.html' rel='bookmark' title='Presentation: My view on XPages'&gt;Presentation: My view on XPages&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/c0eJCqfRwt7nEcVaKRIalDT-FlU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c0eJCqfRwt7nEcVaKRIalDT-FlU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/c0eJCqfRwt7nEcVaKRIalDT-FlU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c0eJCqfRwt7nEcVaKRIalDT-FlU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=4QsEGyrY8Wk:t8uWE92SGlk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=4QsEGyrY8Wk:t8uWE92SGlk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=4QsEGyrY8Wk:t8uWE92SGlk: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=4QsEGyrY8Wk:t8uWE92SGlk: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/4QsEGyrY8Wk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/07/xpages-only-show-content-for-authorized-users.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-only-show-content-for-authorized-users#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/07/xpages-only-show-content-for-authorized-users.html/feed/atom" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/07/xpages-only-show-content-for-authorized-users.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-only-show-content-for-authorized-users</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Per Henrik Lausten</name>
						<uri>http://</uri>
					</author>
		<title type="html"><![CDATA[XPages Web Analytics custom control on OpenNTF]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/Per_Henrik_Lausten/~3/wHsQmZ002zM/xpages-web-analytics-custom-control-on-openntf.html" />
		<id>http://per.lausten.dk/blog/?p=807</id>
		<updated>2011-06-26T11:06:43Z</updated>
		<published>2011-06-26T11:06:43Z</published>
		<category scheme="http://per.lausten.dk/blog" term="Blog" /><category scheme="http://per.lausten.dk/blog" term="Analytics" /><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="open source" /><category scheme="http://per.lausten.dk/blog" term="OpenNTF" /><category scheme="http://per.lausten.dk/blog" term="XPages" />		<summary type="html"><![CDATA[What a great weekend for open source contributions from me! Yesterday I created the XPages SEO custom control - and today I have created a new XPages custom control for the OpenNTF development contest called XPages Web Analytics custom control: the custom control makes it easy to add web analytics to your XPages web site. In [...]<hr />
Related posts:<ol>
<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>
<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/01/xpages-custom-404-and-error-page.html' rel='bookmark' title='XPages custom 404 and error page'>XPages custom 404 and error page</a></li>
</ol>]]></summary>
		<content type="html" xml:base="http://per.lausten.dk/blog/2011/06/xpages-web-analytics-custom-control-on-openntf.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-web-analytics-custom-control-on-openntf">&lt;p&gt;What a great weekend for open source contributions from me! &lt;img src='http://per.lausten.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /&gt;  Yesterday I created the &lt;a href="http://per.lausten.dk/blog/2011/06/xpages-seo-custom-control-on-openntf.html"&gt;XPages SEO custom control&lt;/a&gt; - and today I have created a new XPages custom control for the &lt;a href="http://contest.openntf.org/"&gt;OpenNTF development contest&lt;/a&gt; called &lt;a href="http://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&amp;amp;name=Web%20Analytics%20Custom%20Control"&gt;XPages Web Analytics custom control&lt;/a&gt;: the custom control makes it easy to add web analytics to your XPages web site.&lt;/p&gt;
&lt;p&gt;In the first release the custom control supports &lt;a href="http://www.google.com/analytics/"&gt;Google Analytics&lt;/a&gt; and &lt;a href="http://www.woopra.com/"&gt;Woopra Web Analytics&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In order to use the custom control you &lt;a href="http://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&amp;amp;name=Web%20Analytics%20Custom%20Control"&gt;download it from OpenNTF&lt;/a&gt;, unzip the downloaded file and open the included Notes database. In the database you will find a custom control called "WebAnalytics" that you can include in your own XPages application. Once included you just drag the custom control to your XPage and add the custom properties for the specific web analytics providers that you would like to use.&lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;Related posts:&lt;ol&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;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/01/xpages-custom-404-and-error-page.html' rel='bookmark' title='XPages custom 404 and error page'&gt;XPages custom 404 and error page&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QLPW1D5BBDqObvcbAz3Px7p13fE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QLPW1D5BBDqObvcbAz3Px7p13fE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QLPW1D5BBDqObvcbAz3Px7p13fE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QLPW1D5BBDqObvcbAz3Px7p13fE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=wHsQmZ002zM:eyBH4Qhb67s:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?i=wHsQmZ002zM:eyBH4Qhb67s:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Per_Henrik_Lausten?a=wHsQmZ002zM:eyBH4Qhb67s: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=wHsQmZ002zM:eyBH4Qhb67s: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/wHsQmZ002zM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://per.lausten.dk/blog/2011/06/xpages-web-analytics-custom-control-on-openntf.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-web-analytics-custom-control-on-openntf#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://per.lausten.dk/blog/2011/06/xpages-web-analytics-custom-control-on-openntf.html/feed/atom" thr:count="5" />
		<thr:total>5</thr:total>
	<feedburner:origLink>http://per.lausten.dk/blog/2011/06/xpages-web-analytics-custom-control-on-openntf.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=xpages-web-analytics-custom-control-on-openntf</feedburner:origLink></entry>
	</feed>

