<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="http://iqjam.net/iqjam/iqjam.nsf/rsstransform.xslt"?>
<rss version="2.0">
<channel>
	<language>en-us</language>
	<lastBuildDate>Thu, 11 Mar 2010 03:12:21 +0000</lastBuildDate>
	<title>IQJam by Elguji Software (recent answers)</title>
	<description>An RSS feed generated by IQJam by Elguji Software</description>
	<link>http://iqjam.net/iqjam/iqjam.nsf</link>
	<image>
	    <title>IQJam by Elguji Software (recent answers)</title>
	    <url>http://iqjam.net/iqjam/iqjam.nsf</url>
	    <link></link>
	</image>
	<item>
		<pubDate>Mon, 01 Mar 2010 20:38:15 +0000</pubDate>
		<title>re: Is there a list of Domino Web Hostings available somewhere.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Douglas Robinson&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Well, at Prominic.NET we have been doing Domino hosting for about 12 years, now.  It's our core business and we have offerings from small shared accounts up through Enterprise-grade configurations, and we'd be happy to work with you.  You can find us, naturally, at http://Prominic.NET&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;If you want to compare and contrast a bit, though, Domino Developer Network, Connectria, and CoreFusion are a few other companies who also offer Lotus hosting and should have this size of package.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100228_Is_there_a_list_of_Domino_Web_.htm?#9A53BE73236AF9E2802576D900715D8C</link>
	</item>
	<item>
		<pubDate>Mon, 22 Feb 2010 12:34:13 +0000</pubDate>
		<title>re: Best practise for centralised configuration data when using local replica</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Ben Poole&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Two approaches one could take:&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;Move all of this config data from the Domino Directory into a separate barebones &amp;quot;config&amp;quot; database, which &lt;b&gt;can&lt;/b&gt; be taken off-line, and have every app use this for its look-ups, or;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Have the relevant Notes applications pull the required config data from the Domino Directory into a profile document (when connected to the server), and have the app's look-ups look at this profile document rather than at the Domino Directory itself.&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100218_Best_practise_for_centralised_.htm?#2CDD9E93D3099EDB802576D200450CFE</link>
	</item>
	<item>
		<pubDate>Thu, 18 Feb 2010 19:16:17 +0000</pubDate>
		<title>re: How to show View Category totals in a Repeat control?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Paul Calhoun&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;David,&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I have the following repeat control formula working against a categorized view so that it only returns the category values and the total I want.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;The view is categorized view by year/month with totals for the month. &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; The formula is&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;var colIndVal = viewEntries.getNavigatorPosition();&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;if(@Length(colIndVal)==1){&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;var colVal = viewEntries.getColumnValue(&amp;quot;$9&amp;quot;);&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;return colVal + &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;/div&gt;&lt;div&gt;} else if(@Length(colIndVal)==3) {&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;var colVal = viewEntries.getColumnValue(&amp;quot;CatMonth&amp;quot;);&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;var colVal2 = viewEntries.getColumnValue(&amp;quot;Total&amp;quot;);&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;return colVal + &amp;quot;-&amp;quot; +colVal2 + &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;/div&gt;&lt;div&gt;} else {&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;And the output is: &lt;/div&gt;&lt;div&gt; 2009&lt;/div&gt;&lt;div&gt;February-192.78947368421052&lt;/div&gt;&lt;div&gt;March-139.53846153846155&lt;/div&gt;&lt;div&gt;April-124.18518518518519&lt;/div&gt;&lt;div&gt;May-117.55172413793103&lt;/div&gt;&lt;div&gt;June-111.38095238095238&lt;/div&gt;&lt;div&gt;July-113.05&lt;/div&gt;&lt;div&gt;August-119.71428571428571&lt;/div&gt;&lt;div&gt;September-107.46153846153847&lt;/div&gt;&lt;div&gt;October-115.15789473684211&lt;/div&gt;&lt;div&gt;2010&lt;/div&gt;&lt;div&gt;January-114.25&lt;/div&gt;&lt;div&gt;February-113.53333333333333&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;So based upon the level of category it will return the result from the view for each category but return no values for the detail rows.  The formula would have to be adjusted for how many category columns you had (in this example I have two) &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I haven't tried it yet but I believe I can stick this inside my dynamic table solution to produce a table so that the values are separated into columns for display purposes.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I will try that next but I think this should work for you. &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I will work on the table solution and let you know. &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100218_How_to_show_View_Category_tota.htm?#E8BBC7E8F9714F2C802576CE0069DCB0</link>
	</item>
	<item>
		<pubDate>Thu, 18 Feb 2010 18:02:58 +0000</pubDate>
		<title>re: How to show View Category totals in a Repeat control?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; David Leedy&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Matt,&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Thanks for the link.  I remember that article now, but didn't look at it today. I'm actually using this technique BUT it's not what I'm looking for.  His posting is a method of hiding the Value of the number in the detail records.  But he's still displaying the detail records themselves.&lt;/div&gt;&lt;div&gt;I only want to return the category totals to the browser - I don't want any detail records at all.   Say I have 30 days worth of shipments.  Hundreds of shipments on each day.  I'm looking to only show daily totals.  Maybe a repeat control isn't the way to go.  In Lotusscript I could get this with a viewnavigator I guess and then write it out to the browser in a manually built table...  Not sure how that might work in xpages...  I guess maybe I could do that in SSJS as the value of a computed field that's set to display html.... does that make sense?&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I've not looked at data tables.  Not sure what they're for but I'll check it out.&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100218_How_to_show_View_Category_tota.htm?#919CAD4FFE610AF3802576CE0063263B</link>
	</item>
	<item>
		<pubDate>Thu, 18 Feb 2010 16:39:15 +0000</pubDate>
		<title>re: How to show View Category totals in a Repeat control?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Not sure about an exact answer without some work, but you may want to check Steve Castledine's article about hide detail rows in a view:&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;http://www.stevecastledine.com/sc.nsf/dx/xpages-hide-detail-rows &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Also have a look at data tables rather than a repeat control, maybe they can help? &lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100218_How_to_show_View_Category_tota.htm?#1272E918368ED645802576CE005B7C23</link>
	</item>
	<item>
		<pubDate>Thu, 18 Feb 2010 15:32:48 +0000</pubDate>
		<title>re: Can I use XPages if I am in a mixed Notes enviroment.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Carl Rizzo&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Thanks Matt,&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I appreciate the help. &lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100217_Can_I_use_XPages_if_I_am_in_a_.htm?#263DA59488406AEB802576CE0055669A</link>
	</item>
	<item>
		<pubDate>Wed, 17 Feb 2010 14:43:01 +0000</pubDate>
		<title>re: In what context can I use currentDocument.getParentId() ?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Hi Sean,&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;A couple of questions. &lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;Is the document you're working with really a response document? (i.e. has it got the $Ref field)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;If it has is the value correct?&lt;/li&gt;&lt;li&gt;If it isn't a response then that will be the reason it doesn't work. You may need to set the Form design to make sure that documents created using it are responses.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;As a general rule I am switching away from using response documents in XPages. The overhead of looking up values using views is low enough that I prefer the flexibility of having everything as a &amp;quot;normal&amp;quot; document that just has references stored on it by me if I want some pseudo relational behaviour in my XPages.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Matt &lt;/div&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100215_In_what_context_can_I_use_curr.htm?#3D34C8F8DE5205B6802576CD0050D7EB</link>
	</item>
	<item>
		<pubDate>Wed, 17 Feb 2010 14:15:43 +0000</pubDate>
		<title>re: Can I use XPages if I am in a mixed Notes enviroment.</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Hi Carl,&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;XPages will run in the Notes client but only if you're clients are 8.5.1+. For earlier Notes clients, your users would need to access XPages applications using a web browser.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;For web development, I would highly recommend that you go for Domino 8.5.1 as it has a huge number of bug fixes compared to 8.5.0. &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;In terms of training options, there is a ton of resources for free out there to get going with: &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;a href="http://www.qtzar.com/blogs/qtzar.nsf/htdocs/LearningXPages.htm"&gt;Declan Lynch's Introduction to XPages &lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://xpagesblog.com"&gt;The XPages Blog&lt;/a&gt; &lt;/div&gt;&lt;div&gt;&lt;a href="http://planetlotus.org/search.php?search=xpages&amp;amp;x=0&amp;amp;y=0"&gt;Planet Lotus&lt;/a&gt; &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;are all good starting points.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;For paid training options, TLCC offer courses: &lt;a href="http://www.tlcc.com/admin/tlccsite.nsf/pages/xpages"&gt;tlcc.com&lt;/a&gt; as do I: &lt;a href="http://xpages101.net"&gt;xpages101.net&lt;/a&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Hope this helps. &lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Matt &lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100217_Can_I_use_XPages_if_I_am_in_a_.htm?#E360D7D2F6F47998802576CD004E57FB</link>
	</item>
	<item>
		<pubDate>Mon, 15 Feb 2010 23:07:39 +0000</pubDate>
		<title>re: How can I capture the URL like address of a link to a doclib in LotusNotes 8.5.1 ?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Sean Cull&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Open the document&lt;/div&gt;&lt;div&gt;double click on the down arrow in the addressbar&lt;/div&gt;&lt;div&gt;then click in the address bar&lt;br /&gt;The Notes URL will then be displayed&lt;br /&gt;&lt;br /&gt;see : http://www.alanlepofsky.net/alepofsky/alanblog.nsf/dx/notes-urls?opendocument&amp;amp;comments &lt;br /&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100107_How_can_I_capture_the_URL_like.htm?#9014D206D1920F47802576CB007F0B2E</link>
	</item>
	<item>
		<pubDate>Fri, 22 Jan 2010 12:40:50 +0000</pubDate>
		<title>re: Single Category Embedded View, on a page, in a frame, why, with one set of clients, does the view not display?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Joseph Hoetzl&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Well, as for the problem, it certainly does seem to be something that was fixed between 8.5 and 8.5.1.  While I don't know which specific fix did it, I suspect is was something in one of these:&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;http://www-10.lotus.com/ldd/nd85forum.nsf/5f27803bba85d8e285256bf10054620d/d7900228a1803ada85257633003f2605?OpenDocument&lt;br /&gt;http://www-10.lotus.com/ldd/nd85forum.nsf/5f27803bba85d8e285256bf10054620d/551ed8790fa3e935852574d6006575c8?OpenDocument&lt;br /&gt;&lt;br /&gt;http://www-10.lotus.com/ldd/R5FixList.nsf/search?SearchView&amp;amp;Query=%22embedded%20view%22%20AND%20%28FIELD%20MaintVerNum%20CONTAINS%20%288.5.1%20FP1%20OR%208.5.1%20OR%208.5%20FP1%29%29%20AND%20%28FIELD%20Project%20CONTAINS%20%28Admin%20Client%20OR%20Client%20OR%20Composite%20Application%20Editor%20OR%20Domino%20Integration%20OR%20Domino%20Offline%20Services%20OR%20Enterprise%20Integration%20OR%20IBM%20Lotus%20Domino%20Access%20for%20Microsoft%20Outlook%20OR%20IBM%20Lotus%20Domino%20Web%20Access%20OR%20IBM%20Lotus%20Expeditor%20OR%20IBM%20Lotus%20Instant%20Messaging%20OR%20IBM%20Lotus%20Notes%20Traveler%20OR%20R6%2FR7%20Interoperability%20OR%20R7%2FR8%20Interoperability%20OR%20Server%20OR%20Template%20OR%20Third%20Party%20Code%29%29&amp;amp;SearchOrder=1&amp;amp;SearchMax=0&amp;amp;SearchWV=FALSE&amp;amp;SearchFuzzy=FALSE&amp;amp;Start=1&amp;amp;Count=10&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;So that just leaves the best practices part of the question - form vs page for embedded view - any thoughts on it greatly appreciated.&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100121_Single_Category_Embedded_View%2C.htm?#6BE4B92C32A197DB802576B30045A82A</link>
	</item>
	<item>
		<pubDate>Tue, 12 Jan 2010 20:24:36 +0000</pubDate>
		<title>re: How can I capture the URL like address of a link to a doclib in LotusNotes 8.5.1 ?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Benton Stout&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Programmatically you can build the notes url with notes://serverhostname/path/0/document unid?OpenDocument&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100107_How_can_I_capture_the_URL_like.htm?#204EECDC9A98405D802576A900701DCC</link>
	</item>
	<item>
		<pubDate>Tue, 12 Jan 2010 12:28:13 +0000</pubDate>
		<title>re: What's the best way of getting a handle on a document in an embedded view?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Wayne Sobers&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;For selecting individual documents in an embedded view, Richard Moy has a good solution to this at &amp;quot;http://dominointerface.blogspot.com/search?q=composite&amp;quot;.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;For multiple documents in an embedded view, see &amp;quot;http://www.lotus911.com/nathan/escape.nsf/d6plinks/NTFN-6Z3R8C&amp;quot;.&lt;br /&gt;&lt;br /&gt;Hope that helps&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20090914_What's_the_best_way_of_getting.htm?#DD45C0A24D450979802576A900448076</link>
	</item>
	<item>
		<pubDate>Fri, 08 Jan 2010 03:51:37 +0000</pubDate>
		<title>re: How can I capture the URL like address of a link to a doclib in LotusNotes 8.5.1 ?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Peter Presnell&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; If you display the Document Properties of any Nottes document and go to the fourth tab (the one with &amp;lt;+&amp;gt;) you will see a field called Identifier.  This contains the Notes URL that can be used to launch the document in the Notes client.&lt;br /&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100107_How_can_I_capture_the_URL_like.htm?#29172BE03EE06D83802576A5001534BF</link>
	</item>
	<item>
		<pubDate>Thu, 07 Jan 2010 16:29:56 +0000</pubDate>
		<title>re: How to secure a web service provider?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Bill Kron&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; Glad that it helped!&lt;br /&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100107_How_to_secure_a_web_service_pr.htm?#5DDE34699FAB3C58802576A4005AA1F2</link>
	</item>
	<item>
		<pubDate>Thu, 07 Jan 2010 15:47:48 +0000</pubDate>
		<title>re: How to secure a web service provider?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; I hadn't seen that Bill thanks. It was the only solution that I could think of it but it felt wrong to me, was hoping there was some way that basic authentication on the design element could be used.&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100107_How_to_secure_a_web_service_pr.htm?#5C7AD45E52E8A20E802576A40056C612</link>
	</item>
	<item>
		<pubDate>Thu, 07 Jan 2010 15:43:13 +0000</pubDate>
		<title>re: How to secure a web service provider?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Bill Kron&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;I just happened to see this recently:&lt;br /&gt;&lt;br /&gt;http://www-01.ibm.com/support/docview.wss?rs=899&amp;amp;uid=swg21295968&lt;br /&gt;&lt;br /&gt;Not sure it will help, but it may.&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100107_How_to_secure_a_web_service_pr.htm?#9C2944E84231CF06802576A400565AC1</link>
	</item>
	<item>
		<pubDate>Thu, 07 Jan 2010 09:32:10 +0000</pubDate>
		<title>re: Displaying unread marks</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Ben Poole&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;Don't forget that whilst there's a db property related to unread marks, it's at the individual view level (design properties) that you actually determine what, if anything, that view does with unread documents.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;For example, view properties / advanced tab determines whether unread marks are used in the view or not. The options for unread marks are &amp;quot;Unread documents only&amp;quot; or &amp;quot;None&amp;quot; or &amp;quot;Standard (compute in hierarchy)&amp;quot;.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;You can also define unread marks styling for a view&#8212;colours, whether to show unread docs in bold, and so on. &lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100106_Displaying_unread_marks.htm?#125EB1A0AB1A7CD5802576A40034622B</link>
	</item>
	<item>
		<pubDate>Tue, 05 Jan 2010 09:19:28 +0000</pubDate>
		<title>re: Is there are limit on the size of an attachment that can be uploaded?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Ben Poole&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; xsp.properties is a new one on me, but don't forget the &amp;quot;hard&amp;quot; limit that Paul mentions: if memory serves, HTTP POST requests are limited to 10 MB by default, so you may need to tweak that.&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100104_Is_there_are_limit_on_the_size.htm?#CB8B8656F42B7B67802576A2003338D7</link>
	</item>
	<item>
		<pubDate>Mon, 04 Jan 2010 19:14:57 +0000</pubDate>
		<title>re: Is there are limit on the size of an attachment that can be uploaded?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Peter Presnell&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;It looks like the attachment limit size can be set at the server level with the file \xsp\nsf\xsp.properties&lt;/div&gt;&lt;div&gt;At the application level it can be set as part of thye Application Settings (XPages) - duh I missed that one! &lt;br /&gt;&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100104_Is_there_are_limit_on_the_size.htm?#F321291F5A13914A802576A10069BD67</link>
	</item>
	<item>
		<pubDate>Mon, 04 Jan 2010 17:58:02 +0000</pubDate>
		<title>re: Is there are limit on the size of an attachment that can be uploaded?</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Paul Withers&lt;br /&gt;&lt;b&gt;Answer:&lt;/b&gt; &lt;div&gt;I had this a while back and it's managed by settings in the server document. I'm not an admin, but looking at the administrator help, I think it's:&lt;/div&gt;&lt;div&gt;- Internet Protocols tab - HTTP tab, Maximum size of request content.&lt;/div&gt;&lt;div&gt;- Internet Protocols tab - Domino eb Engine tab, Maximum POST data&lt;/div&gt;&lt;br /&gt;</description>
		<link>http://iqjam.net/iqjam/iqjam.nsf/questions/20100104_Is_there_are_limit_on_the_size.htm?#E989795BCA7F4830802576A10062B26C</link>
	</item>
</channel></rss>
