<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
 xmlns:admin="http://webns.net/mvcb/"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel>
<title>Sean Cull</title>
<description>Tech tips on Notes / Domino and life with a Tablet PC</description>
<link>http://www.seancull.co.uk/public/seancull.nsf/</link>
<language>en-uk</language>
<lastBuildDate>Thu, 25 Feb 2010 07:30:00 +0100</lastBuildDate>
<item>
<title>SNTT: Examples of accessing data on Xpages</title>
<pubDate>Thu, 25 Feb 2010 07:30:00 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/SNTT-Examples-of-accessing-fields-on-Xpages</link>
<category>8.5.1</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/SNTT-Examples-of-accessing-fields-on-Xpages?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/SNTT-Examples-of-accessing-fields-on-Xpages</guid>
<content:encoded><![CDATA[ There are several ways of getting at the data on an Xpage. I wanted to understand this better so I have created <a href="http://seancull.co.uk/Public/Examples/xpage_field_values.nsf/">this example</a> which gives examples of <br /> <br /> getComponent( "element name").getValue(); <br /> getComp onent("element name").getSubmittedValue() <br /> currentDocument.getItemValueString("back end field name / data source name") <br /> <br /> The key learning for me has been that the getSubmittedValue method will only work if the "Do not validate or update data" property is set. If it is not set then the value returned is null even though the name would suggest that it returns the "submitted value". <br /> <br /> <img  alt="Image:SNTT: Examples of accessing data on Xpages" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/SNTT-Examples-of-accessing-fields-on-Xpages/content/M2?OpenElement" /><br /> <br /> This means that in the case of a document which is not new you may need to test for both the existing value and the submitted value if you are using a two stage drop down as described by <a href="http://www.tc-soft.com/wordpress/?p=377">Tim Clark</a>. The code I have used in a recent project is : <br />  <br /> <br /> // the submitted value is not available <br /> // until on onchange event has occurred <br /> var keyvar : String; <br /> var combo4SV = getComponent("comboBox4").getSubmittedValue(); <br /> var combo4 = getComponent("comboBox4").getValue(); <br /> if(combo4SV === null){keyvar = combo4} else {keyvar = combo4SV}; <br /> @DbLookup(@DbName(), "vpeepsbyorgname", keyvar, 2) <br /> <br /> There is also a similar example listed under "Combining getValue and getSubmittedValue" in the <a href="http://www-10.lotus.com/ldd/ddwiki.nsf/dx/Form_Design#Combining%20getValue%20and%20getSubmittedValue">Redbooks Wiki: Building Domino Web Applications using Domino 8</a> <br /> <br /> I have also found the following links useful : <br /> <br /> <a href="http://xpageswiki.com/web/youatnotes/wiki-xpages.nsf/dx/Work_with_documents_and_fields_on_the_XPage">You at Notes Wiki</a> <br /> <a href="http://xpagesblog.com/xpages-blog/2010/2/21/embedding-contextual-data-for-client-side-logic-in-xpages.html">Embedding Contextual Data for Client-Side Logic in XPages</a> <br /> <a href="http://xpagesblog.com/xpages-blog/tag/getsubmittedvalue">Paul Hannan</a> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <a href="http://www.seancull.co.uk/public/seancull.nsf/dx/xpage_field_values.nsf/$file/xpage_field_values.nsf" title="Download the demo - xpage_field_values.nsf"xpage_field_values.nsf/>xpage_field_values.nsf</a>   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/SNTT-Examples-of-accessing-fields-on-Xpages</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/SNTT-Examples-of-accessing-fields-on-Xpages?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>SNTT: Using OpenNTF Xpages Wiki with multiple domains</title>
<pubDate>Thu, 25 Feb 2010 07:30:00 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-using-openntf-xpages-wiki-with-multiple-domains.htm</link>
<category>8.5.1</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-using-openntf-xpages-wiki-with-multiple-domains.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-using-openntf-xpages-wiki-with-multiple-domains.htm</guid>
<content:encoded><![CDATA[ I have been working on a public facing <a href="http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/XPages%20Wiki">OpenNtf Xpages Wiki</a> for our <a href="http://www.deliverytoolkit.com">Delivery Toolkit</a> suite of products and wanted the Wiki to work with multiple domains e.g. if a user arrived via www.focul.net or www.deliverytoolkit.com then the wiki links would remain consistent. <br /> <br />The current wiki code ( 0.6 ) causes the internal wiki links to resolve to the domain which is configured as the host name on the server document. <br /> <br /><img  alt="Image:SNTT: Using OpenNTF Xpages Wiki with multiple domains" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-using-openntf-xpages-wiki-with-multiple-domains.htm/content/M2?OpenElement" /> <br />Looking at the code in the xpWikiStyle SSJS library the links are absolute. Changing the following line produces relative urls which will honour the domain<br />  <br />url=@LeftBack(database.getHttpURL(),"/")+facesContext.getExternalContext().getRequestContextPath(); <br /> <br />to <br /><br /> to url=""+facesContext.getExternalContext().getRequestContextPath();  <br /> <br />so <a href="http://www.deliverytoolkit.com/Public/FDT/FDTWiki.nsf/home.xsp">http://www.deliverytoolkit.com/Public/FDT/FDTWiki.nsf/home.xsp</a> and  <br /><a href="http://www.focul.net/Public/FDT/FDTWiki.nsf/home.xsp">http://www.focul.net/Public/FDT/FDTWiki.nsf/home.xsp</a> both work. <br /> <br />Using facesContext.getExternalContext().getRequest().getHeader("Host") to get the domain should also work if a computed domain is required  <br /> <br />The project entry is <a href="http://www.openntf.org/Projects/pmt.nsf/66d9103768cc2fed85256c59006b5433/c4e88b5e94219777862576b90047c7df!OpenDocument">here</a>  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/sntt-using-openntf-xpages-wiki-with-multiple-domains.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-using-openntf-xpages-wiki-with-multiple-domains.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template</title>
<pubDate>Thu, 11 Feb 2010 08:00:00 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm</link>
<category>2nd hand tips</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm</guid>
<content:encoded><![CDATA[ I have been working on a public facing <a href="http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/XPages%20Wiki">OpenNtf Xpages Wiki</a> for our <a href="http://www.deliverytoolkit.com">Delivery Toolkit</a> suite of products and I wanted to add Google Analytics. <br /> <br /> It turned out to be straight forward once I had read a blog by &nbsp;<a href="http://www.notessidan.se/blogg.nsf/xstart.xsp?post=41CD84AC819E9DE9C1257680003360A9">Thomas Adrian</a> &nbsp;who's Xpages based blog really looks the business - try out the search functionality. <br /> <br /> Step 1 - copy the Analytics code from Google <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M2?OpenElement" /><br /> <br /> Step 2 - disable the design inheritance for the wiki using application properties <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M3?OpenElement" /><br /> <br /> Step 3 - open the prtBanner Custom Control <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M4?OpenElement" /><br /> <br /> Step 4 - add an Output Script control to the Custom Control <br /> <br /> Activate the Custom Controls Panel <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M5?OpenElement" /><br /> <br /> Position your curson in the top left corner of the prtBanner and click <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M6?OpenElement" /><br /> <br /> Select the "Output Script" Custom control from the "Other" Custom Controls menu <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M7?OpenElement" /><br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M8?OpenElement" /><br /> <br /> Switch to "Source" and you will see the Output Script represented by&lt;xp:scriptBlock id=<em>"scriptBlock1"</em>&gt;&lt;/xp:scriptBlock&gt;.  <br /> You can move this to the top of the other custom controls as shown below. <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M9?OpenElement" /><br /> <br /> <br /> Now paste your Google Analytics Script between the Script Block markers so that it looks like this <br /> <br /> <img  alt="Image:SNTT : Adding Google Analytics to the OpenNTF Xpages Wiki template" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm/content/M10?OpenElement" /><br /> <br /> Save the Custom Control <br /> <br />   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-adding-google-analytics-to-the-openntf-xpages-wiki-template.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>SNTT: LotusScript t to remove the Prohibit Design Refresh flag from Forms and Views</title>
<pubDate>Thu, 17 Dec 2009 07:30:00 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-agent-to-remove-the-prohibit-design-refresh-flag-from-forms-and-views.htm</link>
<category>Admin Tips</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-agent-to-remove-the-prohibit-design-refresh-flag-from-forms-and-views.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-agent-to-remove-the-prohibit-design-refresh-flag-from-forms-and-views.htm</guid>
<content:encoded><![CDATA[ I recently had to replace the design on 130 applications with a new design. To do this I need to change the <a href="http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=/com.ibm.designer.domino.main.doc/H_DESIGNTEMPLATENAME_PROPERTY.html">DesignTemplateName property</a> ( property which for some reason is read only in LotusScript ). <br /> <br /> I had tried the convert task &nbsp;but it kept bombing out trying to create folders for categories - a feature of its intended use on mail files I guess. To replace the template name I used <a href="http://www-10.lotus.com/ldd/sandbox.nsf/0/fa7d9b613383b56b8525692e0051d23e">this great little bit of code from Daniel Alvers</a>. <br /> <br /> Once I had changed the template and run the design task I found that some of the old design elements persisted because they had the "Prohibit Design Refresh" flag set. I wrote an agent to scan through all of the databases on a given server and remove these flags for databases linked to a named template. You can download the agent as a database or as a LotusScript text file. <br /> <br /> The agent will ask for the template name and the server. A log of what it has done is added to a blank memo form <br /> <br /> <a href="http://www.seancull.co.uk/public/seancull.nsf/dx/prohibit.lss/$file/prohibit.lss" title="prohibit.lss"prohibit.lss/>prohibit.lss</a><br /> <br /> <a href="http://www.seancull.co.uk/public/seancull.nsf/dx/remove_prohibit_flag2.zip/$file/remove_prohibit_flag2.zip" title="remove_prohibit_flag2.zip"remove_prohibit_flag2.zip/>remove_prohibit_flag2.zip</a>  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/sntt-agent-to-remove-the-prohibit-design-refresh-flag-from-forms-and-views.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/sntt-agent-to-remove-the-prohibit-design-refresh-flag-from-forms-and-views.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>A shout out for Andrews online Shop</title>
<pubDate>Tue, 15 Dec 2009 08:53:54 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/a-shout-out-for-andrews-online-shop.htm</link>
<category></category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/a-shout-out-for-andrews-online-shop.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/a-shout-out-for-andrews-online-shop.htm</guid>
<content:encoded><![CDATA[ Andrew who works for me took a break from Notes a while back and set up a MySQL / PHP on-line shop with his wife selling Children's bedding, accessories and themed stuff. <br /> <br /> The idea is that is is a one stop shop for a themed kids bedroom. Andrew is back into Notes again and his wife is now running the online shop. <br /> <br /> The project says a lot about the power of MySQL / PHP but also a lot about the draw that Notes has for developers ! <br /> <br /> I have used the shop and would highly recommend it. &nbsp;<a href="http://www.restandplay.co.uk">http://www.restandplay.co.uk</a><br /> <br /> <img  alt="Image:A shout out for Andrews online Shop" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/a-shout-out-for-andrews-online-shop.htm/content/M2?OpenElement" />  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/a-shout-out-for-andrews-online-shop.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/a-shout-out-for-andrews-online-shop.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>End of Week 1 with the Nokia E72 and Lotus Traveler</title>
<pubDate>Mon, 7 Dec 2009 08:00:00 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm</guid>
<content:encoded><![CDATA[ I've been using the E72 with Traveler ( 8.5.0.1 ) in anger for about a week now and I thought it would be useful to look back at the experience. I will try and update this further in another few weeks. My <a href="http://www.seancull.co.uk/Public/seancull.nsf/dx/nokia-e72-early-impressions.htm">first impressions were previously recorded here</a>.<br /> <br /> The background to this is that I have come from a Blackberry Curve 8310, sent the Nokia N97 back after 2 days and am now trying the E72. I considered the Pre ( too new but played with one today and was impressed ) and Android ( too early but something to watch ). &nbsp; <br /> <br /> I should say that I have found the review difficult to write. I had hoped to gush positively about Nokia's new Business Class Flagship phone but I have found it quite hard to use compared to my old &nbsp;Blackberry. It has some key advantages ( VOIP, Wifi ) over what I have had before but if I were supporting business users where ease of use and productivity were the key drivers ( rather than fancy features ) then I would worry about how those business users would find the Nokia E72 ( although it is streets ahead f the N97 in this regard ) <br /> <br /> <h2>Overall :</h2> <br /> I think that the biggest thing I have noticed is that I probably took my old Blackberry too much for granted. It was an old model and didn't have WiFi but it worked well, the keyboard was great and it did the job with little fuss. <br /> <br /> The Nokia has more potential in some areas, for example it has WiFi which is great for podcasts and faster web browsing. It also has VOIP which is a big plus except that I have an issue with the WiFi connectivity. The OVI Store should be an advantage but my experience is that it is pretty pathetic. The running costs of the Nokia with Traveler are substantially less than the blackberry with BES ( even ignoring the BES cost ) <br /> <br /> Would I recommend the E72 / Traveler to a corporate client over my trusty Blackberry ? <br /> <br /> "Probably not" would be my current view, or at least not until someone in the in-house team has lived with that system for a few weeks and can take the Level 1 / 2 support calls. <br /> <br /> <h2>"E72 withTraveler" Pro's</h2> <br /> The third party running costs are substantially less than for the Blackberry. I have a free device, unlimited land line calls, 500 minutes of mobile calls and 500Mb of data per month for £35 over 18 months from Vodafone UK. If I was on a blackberry connected to a BES I would have to pay an additional charge to Vodafone and then to RIM for the BES licences. I must admit that the 500Mb is a slight worry but hopefully sensible use of WiFi should make it OK. <br /> <br /> <h2>"E72 withTraveler" Cons</h2> <br /> Traveler is not fully integrated into the E72. For example performing a text search on emails will not include Traveler emails - I can't find any way to search them. This is actually a BIG problem, for example when you want to find an airline reservation you can't just search for the email and it is practically impossible to find it otherwise ( unless you are folder orientated which I am not ) <br /> <br /> The home page only shows the last 1 or 2 subject lines meaning that you always need to click into the inbox to see what's there. A deeper multi-line view on the home page would be much better ( I think the BB did this )<br /> <br /> You get some weird error messages from Traveler which I think are just plain misleading ( I could be wrong ). For example if there is a connectivity issue it reports that authentication failed. Other times it reports it cannot resolve the address of the Traveler server ( could be a carrier issue ). I spend a lot more time wondering if email is syncing than I ever did with the blackberry <br /> <br /> I'm hoping that this is just me but I cannot see how to invite others to my meetings ! <br /> <br /> <h2>"E72 as a Device" Pros</h2> <br /> > &nbsp;Its much more stable than the N97 ( 2.x ) <br /> > &nbsp;Never had a phone with wifi before - its great <br /> > &nbsp;Never had a phone with VOIP before - its great ( see below on connectivity problems ) <br /> > &nbsp;The VOIP setup is quite clever in that the connectivity is policy based - you define your connections ( they call them destinations ) as Intranet, Extranet, etc.. and then you set the VOIP account to only use Intranet for example. This means that it will only use "free" resources rather than ones you get charged for but it does it in such a way that it can recognise several WiFi stations as intranet and a different set as Extranet. Unfortunately this only seems to be implemented for VOIP and not in other applications.<br /> > &nbsp;The "Torch" function is cool although you need to be at the home page to trigger it ( see later about the home key ) <br /> > &nbsp;The form factor is nice and the build quality feels good <br /> > &nbsp;The quick access buttons ( Home, Calendar, Contacts and Emails ) are useful<br /> <br /> <h2>"E72 as a Device" Cons</h2> <br /> > &nbsp;Please can I have a green button to Go and a red button to Stop. The phone looks great until you come to use it. Imagine handing the phone mid call to a colleague and saying please hang up when you are finished - I would wager that they will really struggle to know how to hang up - can you spot the keys that should be backlit red and green ? <br /> <br /> There have been times when I have really struggled to answer or end a call - and I hope that is a reflection on the phone's design and not my mental capacity !<br /> <br /> <img  alt="Image:End of Week 1 with the Nokia E72 and Lotus Traveler" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm/content/M2?OpenElement" /><br /> <br /> > &nbsp;Text messages, traveler emails, inbound calls, outbound calls and missed calls are all held separate views unlike the blackberry where you could see one chronological list of your activity. <br /> <br /> > &nbsp;The keyboard is not great, I need to type with my fingernails rather than my fingers<br /> <br /> > &nbsp;I keep trying to touch the screen - it is so funny watching my children ( 2 and 4 ) trying to use it - their natural instinct is to touch. I just accepted this restriction as a necessary trade off but having played with the Palm Pre today it does feel like the E72 is already a "legacy phone" <br /> <br /> > &nbsp;Considering that the primary purpose of the phone is to make calls it is surprisingly difficult to use : <br /> * The number keys do not stand out clearly enough <br /> * You cannot hit the "off hook" button ( the one that should be green ) and dial a number You need to go to the home page and then start dialling <br /> * To send a txt message you need at least 6 menu clicks <em><span style="text-decoration:underline">from the person record</span></em><span style="text-decoration:underline"> </span><br /> <br /> > &nbsp;The standard browser is OK but Opera works better in most regards. The show stopper with Opera is that if you go to type in a URL with r,t,y,u etc.. you get numbers and not letters. You can get around this but it is a real chew - this could obviously be an Opera issue rather than a Nokia issue. I haven't found a way to watch flash content on Opera yet although I can in the standard browser. <br /> <br /> > &nbsp;The profiles settings ( General, Silent, Meeting etc.. ) seem pretty limited. For example I would like to be able to control connection to my wifi by profile. For example in the evening I would like to tell it not to look for Wifi signals - this doesn't seem to be possible although I think that it is in there somewhere. <br /> <br /> > &nbsp;I have a problem where the Wifi drops out periodically. This effectively makes the phone absolutely useless for VOIP. This may be related to my Wireless Router from Draytec so I need to look into it further. <br /> <br /> > &nbsp;The GPS is slow to update, this caused my wife and I to fall out briefly as she was trying to navigate using google maps. On the blackberry google maps worked great but on the E72 you have already driven past a junction before the system updates the location. <br /> <br /> > &nbsp;The home key does not always take you home. There appear to be two desktops. the first is your home page with your widgets ( I don't think that technically they are widgets ) while the second is a "workspace". If you are composing an email in traveler and press home you go to the workspace and not the home page - which is generally OK but the torch doesn't work ( I really feel like I am nit picking now ) - the shortcuts / widgets on your home page, &nbsp;perhaps quickdials, can't be accessed either. <br /> <br /> <h2>The Ovi Store</h2> <br /> <br /> The <a href="http://www.ovi.com/services/">OVI Store</a> is worse than useless. <br /> <br /> The E72 is not listed on the choice of phones with full keyboards. <br /> <br /> <img  alt="Image:End of Week 1 with the Nokia E72 and Lotus Traveler" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm/content/M3?OpenElement" /><br /> <br /> I then find the E72 ( apparently they do not think it has a full keyboard unlike the E71 ) and I get this error message when I log in <br /> <img  alt="Image:End of Week 1 with the Nokia E72 and Lotus Traveler" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm/content/M4?OpenElement" /><br /> <br /> You need some Nokia software to setup the voip system is it in the OVI store ? NO <br /> <br /> You want some software to manage the downloading of podcasts - is it in the OVI store ? NO <br /> <br /> I could go on and on with lots of examples but there is no point. The image below shows the recommended applications for the Nokia flagship business phone. <br /> <img  alt="Image:End of Week 1 with the Nokia E72 and Lotus Traveler" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm/content/M5?OpenElement" /><br /> <br /> <br /> <h2>Issues with Vodafone</h2> <br /> <br /> I live in an area of very good coverage for 2G and 3G - not in reality I'm afraid. <br /> <br /> The 2G is passable - better than the last carrier but often only 2 bars <br /> I get a 3G signal maybe 5% of the time and it disappears as soon as I touch the device <br /> <br /> <h2> Comments on Applications</h2> <br /> <br /> > &nbsp;The Gravity twitter client looks outstanding <br /> <br /> > &nbsp;The Nokia <a href="http://europe.nokia.com/get-support-and-software/product-support/podcasting">podcast management software</a> &nbsp;for S60 3rd edition does not work on the E72 ( no reason given other than that there is an issue with the digital signature &nbsp;) so you have to use a third party application called <a href="http://code.google.com/p/bergamot/wiki/Escarpod">escarpod</a> - this is daft as podcasts are a mainstream business tool these days. <br /> <br /> > &nbsp;The Escarpod podcast management tool looks really promising but I am not sure if it is meant to be fully automatic - it has an RSS reader ( which doesn't like "The Taking Notes Podcast" for some reason ) but I have to manually trigger it - might just be me and it is free so I am happy to work around some issues. <br /> <br /> In the settings you also need to specify the connection to use. This has obvious benefits in controlling your data spend but the setting requires you to specify a specific connection &nbsp;rather than a class of connection like the VOIP settings do ( see above ) . The other thing is that to get the podcasts to appear in the media play application ( Escarpod also has its own player functionality ) you need to manually refresh the library as far as I can tell. <br /> <br /> > &nbsp;I couldn't get the bundled <a href="http://shop.psiloc.com/en/Application,262200,Psiloc+Wireless+Presenter">WiPresenter</a> application to work on bluetooth ( I have a Toshiba stack ) or Wifi and the documentation from the supplier is very limited. Shame as it looked promising. <br /> <br /> > &nbsp;The <a href="http://noknok.tv/2009/08/14/abbyy-business-card-reader-review/">multiscanner</a> tool for extracting details from business cards via the camera is surprisingly good <br /> <br /> > &nbsp;A password storage application would have been better in the bundle than some of the other apps included.   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/end-of-week-1-with-the-nokia-e72-and-lotus-traveler.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Nokia E72 early impressions</title>
<pubDate>Thu, 26 Nov 2009 22:46:57 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/nokia-e72-early-impressions.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/nokia-e72-early-impressions.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/nokia-e72-early-impressions.htm</guid>
<content:encoded><![CDATA[ I sent the N97 back at the start of the week and now I am trying a Nokia E72. <br /> <br />First impressions are good, much better than than the N97 but ergonomically my trusty Blackberry 8310 is better <br /> <br /><img  alt="Image:Nokia E72 early impressions" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/nokia-e72-early-impressions.htm/content/M2?OpenElement" /> <br /> <br />Pros : <br /> <br />The E72 has SIP / VOIP so when I am in the office it rings just like an internal &nbsp;desk phone - Blackberry take note !!!! <br />It has WiFi <br />V's the N97 the keyboard is easier to use <br />V's the BB it has Lotus Traveller which works great apart from the unread count and marking all read function <br />It feels pretty robust <br />The business card scanning application works surprisingly well <br /> <br />Cons : <br /> <br />The keyboard is better than the N97 but a lot worse than the 8310 - strange because they are the same size. With the BB there is actually space between the good sized flat keys but the Nokia keys are flush with each other and they are also strangley raised so that I end up typing with my fingernails rather than my fingers. <br /> <br />Considering the primary function of the device is a phone the number pad doesn't really stand out enough <br /> <br />I keep wanting to touch the screen to do things - why can' we have the best of both worlds <br /> <br />There is no way to see a list of unread emails permanently on the screen - the blackberry shows the last 3 or 4 fairly well <br /> <br />The front screen is not really very configurable, it can be configured but its not great <br /> <br />The back feels as though it is sprung loaded so it flexes and feels  <br /> <br />Anyhow, its still he first day so the trial continues. .....  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/nokia-e72-early-impressions.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/nokia-e72-early-impressions.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Setting up VOIP / SIP on a Nokia E72</title>
<pubDate>Thu, 26 Nov 2009 22:26:04 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm</link>
<category>Nokia</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm</guid>
<content:encoded><![CDATA[ Just set up SIP / VOIP using the native Nokia SIP client on an E72. <br /> <br /> It is easy once you have a few settings and download a program so I thought I would write it up <br /> <br /> 1) you need the Nokia SIP Settings Application from here => <a href="http://www.forum.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Settings.html"><span style="text-decoration:underline">http://www.forum.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Settings.html</span></a> <br /> note that you need the S60 <strong>3rd</strong> Edition <br /> <br /> <span style="text-decoration:line-through">2) It took me a while to find the settings application. Control Panel > Advanced VOIP Settings</span><span style="text-decoration:line-through"> </span> <br /> <br />2) It took me a while to find the settings application. Control Panel > Net Settings > Advanced VOIP Settings <br /> <br /> 3) there is a manual here but the only bit I used was figure 9 where the ok button is not revealed unless you include an "@" in the user name <span style="text-decoration:underline"><br /> <br /> </span><a href="http://sw.nokia.com/id/15c504c6-e984-4fd6-be4d-890d24be95c7/SIP_VoIP_Release_3_x_Settings_Application_User_Guide_v2_0_en.pdf"><span style="text-decoration:underline">http://sw.nokia.com/id/15c504c6-e984-4fd6-be4d-890d24be95c7/SIP_VoIP_Release_3_x_Settings_Application_User_Guide_v2_0_en.pdf</span></a> <br /> <br /> 3) Then I put in the settings for my voip account from Gradwell &nbsp; <span style="text-decoration:underline"><br /> <br /> </span><a href=http://www.gradwell.com/support/howto/article/468><span style="text-decoration:underline">http://www.gradwell.com/support/howto/article/468</span></a> <br /> <br /> And it works, well so far I've only called my mum in Ireland but that went well. <br /> <br /> p.s. and what is really cool is that turning over an E72 when it is ringing mutes the ring   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/setting-up-voip-sip-on-a-nokia-e72.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Setting up VOIP / SIP on a Nokia E72</title>
<pubDate>Thu, 26 Nov 2009 22:26:04 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm</link>
<category>Nokia</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm</guid>
<content:encoded><![CDATA[ Just set up SIP / VOIP using the native Nokia SIP client on an E72. <br /> <br /> It is easy once you have a few settings and download a program so I thought I would write it up <br /> <br /> 1) you need the Nokia SIP Settings Application from here => <a href="http://www.forum.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Settings.html"><span style="text-decoration:underline">http://www.forum.nokia.com/info/sw.nokia.com/id/d476061e-90ca-42e9-b3ea-1a852f3808ec/SIP_VoIP_Settings.html</span></a> <br /> note that you need the S60 <strong>3rd</strong> Edition <br /> <br /> 2) It took me a while to find the settings application. Control Panel > Advanced VOIP Settings <br /> <br /> 3) there is a manual here but the only bit I used was figure 9 where the ok button is not revealed unless you include an "@" in the user name <br /> <span style="text-decoration:underline"><br /> </span><a href="http://sw.nokia.com/id/15c504c6-e984-4fd6-be4d-890d24be95c7/SIP_VoIP_Release_3_x_Settings_Application_User_Guide_v2_0_en.pdf"><span style="text-decoration:underline">http://sw.nokia.com/id/15c504c6-e984-4fd6-be4d-890d24be95c7/SIP_VoIP_Release_3_x_Settings_Application_User_Guide_v2_0_en.pdf</span></a> <br /> <br /> 3) Then I put in the settings for my voip account from Gradwell &nbsp; <br /> <span style="text-decoration:underline"><br /> </span><a href=http://www.gradwell.com/support/howto/article/468><span style="text-decoration:underline">http://www.gradwell.com/support/howto/article/468</span></a> <br /> <br /> And it works, well so far I've only called my mum in Ireland but that went well.  <br /> <br />p.s. and what is really cool is that turning over an E72 when it is ringing mutes the ring  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/setting-up-voip-sip-on-a-nokia-e72.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/setting-up-voip-sip-on-a-nokia-e72.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>IBM, please do the right thing and allow developers to update straight from 7 to 8.5.</title>
<pubDate>Mon, 23 Nov 2009 18:52:01 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/IBM-DO-THE-RIGHT-THING.htm</link>
<category>8.5</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/IBM-DO-THE-RIGHT-THING.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/IBM-DO-THE-RIGHT-THING.htm</guid>
<content:encoded><![CDATA[ I am doing some catching up on my certifications and have just realised to to upgrade to 8.5 I have to pass the 8.0 exams. <br /> <br /> I think this is unfair and not really in IBMs interest because : <br /> <br /> >> IBM is actively encouraging customers to go straight to 8.5 <br /> <br /> >> Web development in 8.5 is a whole new beast almost making 8.x web development an obsolete choice &nbsp;in new applications <br /> <br /> >> Composite Apps were buggy in 8.x and had limited uptake, 8.5 is much better, why force people to learn the buggy system<br /> <br /> >> DB2NSF is not being expanded any further <br /> <br /> >> Its an extra $200 to spend per developer that neither the developers not IBM get value from ( unless this is a profit making exercise ) <br /> <br /> The syllabus for the exam is <strong><br /> <br /> Description:</strong> &nbsp;Covers IBM Lotus Notes Domino 8 material as it relates to these competency areas:  <ul> <li>Composite Applications &nbsp;  </li><li>Design and Development Enhancements &nbsp;  </li><li>Domino and DB2 Integration &nbsp;  </li><li>Programming Enhancements &nbsp;  </li><li>Web Services in Domino Applications </li></ul>So IBM, do the right thing and allow developed to go straight from 7 to 8.5. There is a new script requirement for advanced developers anyhow so it still requires a significant commitment from the developers. <br /> <br /> Requirements :<br /> <br /> <a href="http://www-03.ibm.com/certify/certs/14003105.shtml">http://www-03.ibm.com/certify/certs/14003105.shtml<strong></a></strong>   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/IBM-DO-THE-RIGHT-THING.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/IBM-DO-THE-RIGHT-THING.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>T-mobile, your in denial</title>
<pubDate>Sat, 21 Nov 2009 12:32:22 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/t-mobile-your-in-denial.htm</link>
<category>t-mobile</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/t-mobile-your-in-denial.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/t-mobile-your-in-denial.htm</guid>
<content:encoded><![CDATA[ T-Mobile posted me a return package for the N97 today. The reason code says is all. <br /> <br /> <br /> <img  alt="Image:T-mobile, your in denial" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/t-mobile-your-in-denial.htm/content/M2?OpenElement" />  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/t-mobile-your-in-denial.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/t-mobile-your-in-denial.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Grumpy old man post : Nokia N97 is not so impressive, give me back my blackberry</title>
<pubDate>Thu, 19 Nov 2009 17:02:27 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm</guid>
<content:encoded><![CDATA[ It seems like I am becoming a bit of a grumpy old man on twitter and now this blog but here you go : <strong><br /> <br /> Update : back on the blackberry 8310 : the N97 has gone back, I was getting there slowly with the phone ( mostly because it was cheap ) but the coverage was the killer in the end</strong><br /> <br /> I got a Nokia N97 to try at lunch time today. By 14:00 I was ready to throw it out the window, it has been an awful experience. For those who don't know the N97 is Nokia's flagship iphone beater. <br /> <br /> <img  alt="Image:Grumpy old man post : Nokia N97 is not so impressive, give me back my blackberry" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm/content/M2?OpenElement" /><br /> <br /> The N97 has some attractive features such as the keyboard, radio, Notes Traveler but when it was launched a few months ago it was horrendously buggy. A recent upgrade in the firmware to 2.x was meant to have made it much more stable. <br /> <br /> Maybe I am expecting too much as it is a while since I had a true smart phone ( I have been a Blackberry Curve user for a few years ) but there are just so many things that don't work and I expected more from a prestige phone. In hindsight the blackberry is just soooo easy.<br /> <br /> Firmware 2.x <span style="text-decoration:line-through"><br /> > There is no way to show the new email count from traveller on the front screen</span><span style="text-decoration:line-through"> </span>&nbsp;There is but it shows 200 unread even after I have marked them as read <br /> > it is one click to the traveller inbox but then it is 5 clicks to get back out as you exit via the nokia messaging system / SMS messages etc..<br /> > You cannot easily get it to recognise that wifi is faster than 2G/3G for browsing <br /> > It has crashed twice <br /> > It has run out of memory once <br /> > The keylock switch has refused to unlock the keyboard requiring a battery reboot <br /> > it keeps dropping the WLAN connection <br /> > sometimes its a double click for a menu and others its a single click for a similar menu <br /> > The browser experience is not great - it tries to be better than the blackberry in being much richer but in practice I much prefer the simple blackberry browser <br /> > message that traveler is not compatible with this operating system ( S60 5th edition ) <br /> > <span style="text-decoration:line-through">the auto rotate feature does not work</span> It does but it is disabled by default<br /> <br /> Firmware 1.x <br /> > The automatic update over the air would not recognise that version 2.x of the firmware was available ( the phone is 0 days old ) <br /> > the tone dialling doesn't work on telephone tone menus <br /> <br /> And some other ones : <br /> <br /> > The FM radio won't even try and work without a headset lead plugged in ( its the aerial ) <br /> > You can't just hit the green phone button and dial unless it is an existing &nbsp;contact <br /> > I have no t-mobile 3g signal in an area supposedly with an area of very good coverage <br /> <img  alt="Image:Grumpy old man post : Nokia N97 is not so impressive, give me back my blackberry" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm/content/M3?OpenElement" /><br /> <br /> > I can't find an easy way to automatically bar data when roaming - the blackberry can do this and in Northern Ireland it is too easy to roam by accident along the border <br /> > Nokia just transferred me to a specialist team assuring me that they were open &nbsp;: they were closed : <span style="text-decoration:line-through">hopefully they will ring me tomorrow </span>- they did at 09:30 - thanks<br /> <br /> More <br /> > the OVI store won't work on wfi only slow gprs <br /> > there is no decent free twitter client that seems to work with the touch screen ( although gravity is very nice at £8 )<br /> <br /> <br /> <br /> I have 7 days to decide if I like it. Its such a pity. As an existing t-mobile customer I get a great deal - £30 for unlimited everything and a free phone. Unfortunately they don't do the E72 yet so I might end up going to vodafone. <br /> <br /> For this amount of mucking about I would much rather be an early adopter on android but the equivalent of the Motorola Droid isn't in the UK yet. <br /> <br /> Oh well, the kids are home from school , time to put life back into perspective before catching up with work again later after a very frustrating day ! <br /> <br /> Grumpy Old Man   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/grumpy-old-man-post-nokia-n97-is-not-so-impressive.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Application Debug Mode</title>
<pubDate>Thu, 19 Nov 2009 07:00:00 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm</link>
<category>2nd hand tips</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm</guid>
<content:encoded><![CDATA[ A while back someone asked what was my best tip for Lotus Notes development - this is it - it is used in every single application I have developed in at least the last 5 years and it was passed on to me by my cousin ( thanks Martin )! <br /> <br /> Most Notes forms will have hidden fields on them and those fields are really useful when it comes to understanding what is going on in an application. You can access the values in three ways : <br /> <br /> 1) use the document properties <br /> 2) change the "hide when" properties <br /> 3) - my tip - programmatically change the "hide when" properties <br /> <br /> I used to hide the individual fields but a better way is to change the "hide when" attribute of a section rather than the individual fields ( thanks Ewan ). The hide when is linked to a notes.ini / environmental setting but you could also use a profile document. <br /> <br /> <img  alt="Image:Application Debug Mode" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm/content/M2?OpenElement" /><br /> <br /> <img  alt="Image:Application Debug Mode" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm/content/M3?OpenElement" /><br /> You can then extend this functionality for other uses such as :  <br /> <ul> <li>Disabling "on error" statements whilst debug mode is active so that you can see where code is falling over <br />  </li><li>Allowing extra action buttons to appear <br />  </li><li>Making parts of the form configurable. <br /> </li></ul>In FoCul we actually have two versions of Debug mode. We have one which we call "Administrators Debug Mode" which reveals information to help our customers debug problems and then we have a second more powerful version called "Developers Debug Mode" which has more functionality. <br /> <br /> Applications have a password protected &nbsp;agent which turns the Debug modes on and most applications automatically cancel it when they are opened. We also have the custom toolbar buttons shown above. <br /> <br /> <img  alt="Image:Application Debug Mode" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm/content/M4?OpenElement" /><br /> <br /> The hide when on the section is <br /> <br /> <img  alt="Image:Application Debug Mode" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm/content/M5?OpenElement" /><br /> <br /> By using an environmental variable we can troubleshoot the applications on users computers without having to worry about ACL settings.   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/application-debug-mode.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/application-debug-mode.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Even IBM doesn&#8217;t think Traveler is the right way to spell Traveller</title>
<pubDate>Wed, 18 Nov 2009 23:04:39 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/even-ibm-doesnt-think-traveler-is-the-right-way-to-spell-traveller.htm</link>
<category>Admin Tips</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/even-ibm-doesnt-think-traveler-is-the-right-way-to-spell-traveller.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/even-ibm-doesnt-think-traveler-is-the-right-way-to-spell-traveller.htm</guid>
<content:encoded><![CDATA[ If you are looking to download Travel(l)er 8.5.1 from Partner World you will find that searching on Traveler only brings up 8 and 8.1 <br /> <br /> To get travel(l)er 8.5.1 you need to search on part number CZ5SYML <br /> <br /> <img  alt="Image:Even IBM doesn&#8217;t think Traveler is the right way to spell Traveller" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/even-ibm-doesnt-think-traveler-is-the-right-way-to-spell-traveller.htm/content/M2?OpenElement" />  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/even-ibm-doesnt-think-traveler-is-the-right-way-to-spell-traveller.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/even-ibm-doesnt-think-traveler-is-the-right-way-to-spell-traveller.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Balsamic Wire Mockups - a days work</title>
<pubDate>Mon, 19 Oct 2009 21:01:59 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm</link>
<category>Dev Tips</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm</guid>
<content:encoded><![CDATA[ I've been working on a concept for &nbsp;new Notes application. I've used <a href="http://www.balsamiq.com/products/mockups">Balsamic</a> &nbsp;a few times before but this was the first time I have tried to sit down and flush out a scheme in a day. <br /> <br /> The results are below, its obviously still at concept stage but a day with the client and a day with Balsamic has left me with something that I can use for a reality check with the client and then put a fixed price against. I find that the process of working through the screens gives me the discipline to look through the users eyes and see both what they need to capture but also what they need to contend with in terms of its usability. The usability will be key in this case because the business process is quite demanding. <br /> <br /> It has felt like quite hard going at times, I wish Balsamic had the equivalent of subforms for some of the elements so that if they were changed in one place they would change everywhere - e.g. the navigation bar. Each mesh diagram is essentially a totally separate image so when you add an extra tab into one you need to go back and add it to the others. Having said that it will still be a lot easier to change it as a Balsamic than it would be with Notes and probably even more so if your were using another development platform . <br /> <br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M2?OpenElement" /><br /> <br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M3?OpenElement" /><br /> <br /> <br /> <br /> <br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M4?OpenElement" /><br /> <br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M5?OpenElement" /><br /> <br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M6?OpenElement" /><br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M7?OpenElement" /><img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M8?OpenElement" /><br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M9?OpenElement" /><br /> <br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M10?OpenElement" /><br /> <br /> <img  alt="Image:Balsamic Wire Mockups - a days work" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm/content/M11?OpenElement" />  ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/balsamic-wire-mockups-a-days-work.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/balsamic-wire-mockups-a-days-work.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Installing 8.5.0 FP1 on Ubuntu Server</title>
<pubDate>Thu, 27 Aug 2009 23:54:36 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/installing-8.5.0-fp1-on-ubuntu-server.htm</link>
<category>Admin Tips</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/installing-8.5.0-fp1-on-ubuntu-server.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/installing-8.5.0-fp1-on-ubuntu-server.htm</guid>
<content:encoded><![CDATA[ I have been upgrading a development server running on Ubuntu 8.04 from 8.5.0 to 8.5.0. FP1 ( yes I know that it is not supported ) <br /> <br /> The standard install for the fix pack does not work and gives the following errors : <br /> <br /> <administratorname>@ts13-001:~/Desktop/linux$ cd domino <br /> <servername>@ts13-001:~/Desktop/linux/domino$ sudo ./install <br /> &#91;sudo&#93; password for <servername>: <strong><br /> &#91;: 160: TOOLS/NLS/-E: unexpected operator</strong> <strong><br /> &#91;: 160: tools/nls/-e: unexpected operator</strong> <strong><br /> &#91;: 160: tools/nls/-e;1: unexpected operator</strong> <strong><br /> .: 1: -e: not found</strong> <br /> <br /> after much hunting about I came across <a href="http://www-10.lotus.com/ldd/nd85forum.nsf/4b9931b774db788c85256bf0006b5e6d/6a0d22579793bae7852575690057aecb?OpenDocument"><span style="text-decoration:underline">this fix</span></a> by Matt Schmandt <br /> <br /> <br /> <blockquote>Domino 8.5 can be installed on Ubuntu 8.04 but you need to perform an extra step.<br /> <br /> From the command line run "sudo su" and then run "./install".<br /> <br /> #Example<br /> sudo su<br /> ./install </blockquote> <br /> <br /> Once I tried this everything worked fine. Next time I might look at <a href=http://www.roverex.org/trac/wiki><span style="text-decoration:underline">Roverex</span></a> which was suggested by <a href="http://www-10.lotus.com/ldd/nd85forum.nsf/4b9931b774db788c85256bf0006b5e6d/d703912172af024d852575e8005d385b?OpenDocument"><span style="text-decoration:underline">Johann Echanarr</span></a>. <br /> <br /> <br /> <blockquote> "Roverex is a derivative Ubuntu distribution that has been created to integrate IBM Lotus Software with Ubuntu, specifically Lotus Domino Server, Lotus Notes Client and Lotus Symphony.  <p>Roverex is an open source project so anyone that want to contribute is welcome, any feedback/testing will be appreciated and right now there's need for a Spanish/Italian translator, so please send an email to <tt>roverex-dev at roverex dot org</tt> to be part of our Roverex community.  <p>IBM Lotus Domino Server and Lotus Notes Client provide a secure email, scheduling, calendaring, messaging/chat platform and an application development server.  <p>IBM Lotus Symphony is an Office open source alternative suite that is intuitive and easy to use, which ensure access to documents well into the future with new standard file formats (ODF), and save existing investments with support for Microsoft® Windows® and Office file types.  <p>Running IBM Lotus Software on Ubuntu lowers maintenance costs and with open standards enables easy integration and maintenance in a heterogeneous IT environment.  <p>Its uniqueness is its simplicity.  <p>Enjoy! <em><br /> The Roverex Team</em>" </blockquote>   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/installing-8.5.0-fp1-on-ubuntu-server.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/installing-8.5.0-fp1-on-ubuntu-server.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>8.5.1 - I&#8217;m impressed by the way that IBM is listening behind the scenes</title>
<pubDate>Thu, 27 Aug 2009 13:51:46 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/8.5.1-im-impressed-by-the-way-that-ibm-is-listening-behind-the-scenes.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/8.5.1-im-impressed-by-the-way-that-ibm-is-listening-behind-the-scenes.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/8.5.1-im-impressed-by-the-way-that-ibm-is-listening-behind-the-scenes.htm</guid>
<content:encoded><![CDATA[ I have been very fortunate to have recently become involved in the the Design Partner Program. It has been an interesting and somewhat confusing time to join because the program is moving towards the release of 8.5.1 at a great pace and there is a huge amount of stuff that has already happened. <br /> <br /> As with any project of this scale ( and particularly being a newbie ) it is always possible to find things that could be better but by far the biggest thing that has impressed me is the way in which IBM is prepared to listen to its Design Partners, not just for 8.5.1 but also for 8.5.x and beyond - imagine a scene where IBM Engineers pitch ideas to customers and business partners, taking polls and actively looking for feedback on open mic conference calls.<br /> <br /> Over the last few days you will have seen some pretty clued up people beginning to blog about 8.5.1. They are not only very clued up on the technical aspects of the release but also have good insights into where IBM can best add value to organisations and end users. They are all working closely with IBM to ensure that Notes is as good as it can be and for each person that does blog there are quite a few others that are not able to blog.<br /> <br /> Why am I blogging this ? &nbsp;Well I am genuinely really impressed ( and pleasantly surprised ) at what I have seen. The <a href=http://lotusknows.ideajam.net/><span style="text-decoration:underline">Lotus Knows Idejam</span></a> was really impressive but it has also been good to see that there are other long established collaborative processes already in place. <br /> <br /> I am not sure why people don't blog about the process ( as opposed to the secret content ) more. I guess that the Design Partners have been instructed not to release any IBM confidential information and the existence of such successful collaboration between IBM and its customers must be seen as confidential ;-) &nbsp;   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/8.5.1-im-impressed-by-the-way-that-ibm-is-listening-behind-the-scenes.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/8.5.1-im-impressed-by-the-way-that-ibm-is-listening-behind-the-scenes.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>simple xpages thing - what am I doing wrong ?</title>
<pubDate>Wed, 12 Aug 2009 12:07:58 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm</guid>
<content:encoded><![CDATA[ <strong><span style="text-decoration:underline">update :</span></strong> &nbsp; This now works fine under 8.5.1 Beta ( CD8 ) out of the box so the problems has gone away <br /> <br /> <br />OK, this should be trivial, what am I doing wrong ?? <br /> <br /> I can't get the post save event to run an agent but I can run it via a button.<br /> <br /> I have an Xpage here >> <a href=http://www.seancull.co.uk/Public/Examples/agenttest.nsf/simplexpage.xsp><span style="text-decoration:underline">http://www.seancull.co.uk/Public/Examples/agenttest.nsf/simplexpage.xsp</span></a> <br /> <br /> which is very simple. It is bound to a form with a single field and has two buttons. There is a <span style="text-decoration:underline">post save event</span> which should run an agent which <span style="text-decoration:underline">also</span> creates a new agent log document. i.e. TWO documents should be created. The agent log document does not have a form name when displayed in the view.<br /> <br /> New documents appear in the view. <br /> <br /> When I press the button to runt he agent a new formless document ( i.e the agent log ) is created - great <br /> <br /> When I save the document the back end agent does not run - i.e. no formless ( i.e. agent log ) document <strong><span style="text-decoration:underline"><br /> <br /> I am doing something really stupid - what is it ?</span></strong> <br /> <br /> <br /> some screenshots of the setup and the code is at the end <br /> <br /> <img  alt="Image:simple xpages thing - what am I doing wrong ?" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm/content/M2?OpenElement" /><br /> <img  alt="Image:simple xpages thing - what am I doing wrong ?" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm/content/M3?OpenElement" /><br /> <br /> <img  alt="Image:simple xpages thing - what am I doing wrong ?" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm/content/M4?OpenElement" /><br /> <br /> <br /> update - screen shot of button properties as mentioned by Graeme below - although there is a workaround I still don't understand it the problem is me or xpages ? <br /> <br /> <img  alt="Image:simple xpages thing - what am I doing wrong ?" border="0" src="http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm/content/M5?OpenElement" /><br /> <br /> <br />   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/simple-xpages-thing-what-am-i-doing-wrong-.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/simple-xpages-thing-what-am-i-doing-wrong-.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>My name is Sean and I like Twitter.</title>
<pubDate>Thu, 30 Jul 2009 00:11:30 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/twitter-convert.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/twitter-convert.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/twitter-convert.htm</guid>
<content:encoded><![CDATA[ It has taken a long time for me to become a convert to Twitter but three examples in the last few days have shown me how powerful it is. <br /> <br /> 1) Suppliers on Twitter <br /> Our web site went down. The nameservers were not reachable and the supplier <a href="http://www.dotster.com">Dotster.com</a> had no error messages on its status board. Its ticket system was also down <br /> <br /> <a href="http://twitter.com/search?q=Dotster">Searching for Dotster on Twitter </a> quickly showed that many other people were having the same problem and that Dotster had an active twitter account. I was able to report the problem via twitter and Dotster was able to update me when the system was fixed. <br /> <br /> 2) Nokia N97 Lens Scratch <br /> I was really looking forward to getting a Nokia N97 but needed more information on its voip capability and some reported design faults that create lens scratches. Googling these problems, especially the voip one, brought up loads of waffling dated posts whereas searching on Twitter brought up some excellent links that allowed me to make an informed decision to wait a while. <br /> <br /> Why were the twitter links more useful than google - 2 things - they were recent and they were concise <br /> <br /> 3) The Notes community and help for Xpages <br /> I am very concious of not wanting to over do this one but on a couple of occasions after banging my head against a wall for some time I have asked about a problem on Twitter and got some really good help about this new technology - it is also great to leave a <a href="http://twitter.com/#search?q=xpages">search on "xpages" </a> running in <a href="http://tweetdeck.com/beta/">tweetdeck</a> and watch stuff as it comes up. <br /> <br /> <br /> So why did it take me so long to try Twitter ? &nbsp;Well I thought it would be a real distraction and I thought that everyone would be posting lots - the truth is that some people post lots ( and I mean lots Bruce ) and some hardly post at all, there seem to be very few that post an average amount ( I guess that should be median amount). If you are not on Twitter get yourself on and post as much or as little as you want - I tend to be a voyeur more than a poster but no-one minds. <br /> <br /> And the downside ? Just my inclination to want to rant - it is very tempting when DDE crashes but hopefully that won't happen too much ( the ranting I mean, the DDE bit is too much to hope for just now - see I'm doing it again ! ).   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/twitter-convert.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/twitter-convert.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Should you be trying Xpages ?</title>
<pubDate>Tue, 28 Jul 2009 13:38:17 +0100</pubDate>
<link>http://www.seancull.co.uk/public/seancull.nsf/dx/should-you-be-trying-xpages-.htm</link>
<category>Lotus</category>
<dc:creator>Sean Cull</dc:creator>
<comments>http://www.seancull.co.uk/public/seancull.nsf/dx/should-you-be-trying-xpages-.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.seancull.co.uk/public/seancull.nsf/dx/should-you-be-trying-xpages-.htm</guid>
<content:encoded><![CDATA[ Let me start by saying that Xpages is really cool and very powerful. It has absolutely captured the enthusiasm of the Lotus developers Community ( don't worry admins you have DAOS ) and it has great potential. <br /> <br /> But... should you start using it <strong><span style="text-decoration:underline">YET</span></strong> ? <br /> <br /> The key word is yet. I have two hats on, the first is a geek and the second is a professional Notes developer. The geek in me loves to play with new stuff while the professional developer is responsible for robust code delivered on time and to cost. <br /> <br /> If you are wearing a geek hat I would highly recommend that you "play" with xpages <br /> <br /> If you are a professional developer charged with exploring new options or quantifying the risks of using new options then the answer would also be to try it. <br /> <br /> If you are professional developer responsible for delivery of work on tight time scales and to tight costs then I would urge caution. While the geek in me loves Xpages the development process is fraught with bugs and the trials of being an early adopter. In my opinion DDE 8.5.0 is not a suitable tool for working to tight times and costs - it is too buggy. I am hopeful that 8.5.1 will be better but I have no information on that. <br /> <br /> I would also say that if you are a customer of a development shop ( mine included ) you should make sure that it is very clear who pays for lost time through platform bugs and difficulties. Individual developers should also be careful what they promise to their bosses ! <br /> <br /> Will I continue to use it ? - absolutely - but only on internal projects at this time. I am also increasingly grateful for the gifted early adopters out there who are easing the way with blogs articles and examples. <br /> <br /> Just my thoughts from the coal face, Sean   ]]></content:encoded>
<wfw:commentRss> http://www.seancull.co.uk/public/seancull.nsf/dxcomments/should-you-be-trying-xpages-.htm</wfw:commentRss>
<wfw:comment> http://www.seancull.co.uk/public/seancull.nsf/dx/should-you-be-trying-xpages-.htm?opendocument&amp;comments</wfw:comment>
</item>
</channel></rss>
