<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Monsieur Rask</title>
	<atom:link href="http://mrrask.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mrrask.wordpress.com</link>
	<description>Coding for glory!</description>
	<lastBuildDate>Mon, 23 Nov 2009 00:23:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Ready for the Enterprise: Setting up a VPN connection on Android by Luy</title>
		<link>http://mrrask.wordpress.com/2009/09/15/ready-for-the-enterprise-setting-up-a-vpn-connection-on-android/#comment-152</link>
		<dc:creator>Luy</dc:creator>
		<pubDate>Mon, 23 Nov 2009 00:23:47 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=179#comment-152</guid>
		<description>now that 2.0 is out and it supports VPN has anyone actually gotten it to work?</description>
		<content:encoded><![CDATA[<p>now that 2.0 is out and it supports VPN has anyone actually gotten it to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with iPhone contacts: Adding phonenumbers to ABPerson by Olav Rask</title>
		<link>http://mrrask.wordpress.com/2009/01/27/working-with-iphone-contacts-adding-phonenumbers-to-abperson/#comment-151</link>
		<dc:creator>Olav Rask</dc:creator>
		<pubDate>Fri, 23 Oct 2009 12:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=17#comment-151</guid>
		<description>Np. Guess you could do that too :)</description>
		<content:encoded><![CDATA[<p>Np. Guess you could do that too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with iPhone contacts: Adding phonenumbers to ABPerson by am</title>
		<link>http://mrrask.wordpress.com/2009/01/27/working-with-iphone-contacts-adding-phonenumbers-to-abperson/#comment-149</link>
		<dc:creator>am</dc:creator>
		<pubDate>Thu, 22 Oct 2009 19:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=17#comment-149</guid>
		<description>Thx for replying. I solved the Problem in the meantime. I had to iterate through the URLs ... get all the Field values and put them together with the new URL back as a multivalue property into the addressbook.</description>
		<content:encoded><![CDATA[<p>Thx for replying. I solved the Problem in the meantime. I had to iterate through the URLs &#8230; get all the Field values and put them together with the new URL back as a multivalue property into the addressbook.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with iPhone contacts: Adding phonenumbers to ABPerson by Olav Rask</title>
		<link>http://mrrask.wordpress.com/2009/01/27/working-with-iphone-contacts-adding-phonenumbers-to-abperson/#comment-147</link>
		<dc:creator>Olav Rask</dc:creator>
		<pubDate>Tue, 20 Oct 2009 12:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=17#comment-147</guid>
		<description>&lt;strong&gt;AM -&gt;&lt;/strong&gt;

I would think you would have to obtain an reference to the existing ABMultiValue stored in the persons URLProperty and add you new url to this. 

ABRecordSetValue(person, kABPersonURLProperty, theUrls, &amp;retVal); sets an entire new collection of urls, containing only your new url.</description>
		<content:encoded><![CDATA[<p><strong>AM -&gt;</strong></p>
<p>I would think you would have to obtain an reference to the existing ABMultiValue stored in the persons URLProperty and add you new url to this. </p>
<p>ABRecordSetValue(person, kABPersonURLProperty, theUrls, &amp;retVal); sets an entire new collection of urls, containing only your new url.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with iPhone contacts: Adding phonenumbers to ABPerson by am</title>
		<link>http://mrrask.wordpress.com/2009/01/27/working-with-iphone-contacts-adding-phonenumbers-to-abperson/#comment-145</link>
		<dc:creator>am</dc:creator>
		<pubDate>Fri, 09 Oct 2009 13:17:50 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=17#comment-145</guid>
		<description>Nice article, thx. 
I just tried it out and ran into a problem. If I try to add for example a new URL to an existing contact the old URL(s) were replaced by the new one. Isn&#039;t _ABMultiValueAddValueAndLabel_ supposed to _ADD_ a new value? Instead it deletes the complete content and inserts the new URL. 

Anyone else experienced this issue? Am I missing something?

&lt;code&gt; 
ABAddressBookRef addressBook = ABAddressBookCreate();	
		ABRecordRef person = ABAddressBookGetPersonWithRecordID(addressBook, personID);
		ABMutableMultiValueRef theUrls = ABMultiValueCreateMutable(kABMultiStringPropertyType);


ABMultiValueAddValueAndLabel(theUrls, newUrl, kABOtherLabel, NULL);        
ABRecordSetValue(person, kABPersonURLProperty, theUrls, &amp;retVal);
ABAddressBookSave(addressBook, &amp;retVal); 

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Nice article, thx.<br />
I just tried it out and ran into a problem. If I try to add for example a new URL to an existing contact the old URL(s) were replaced by the new one. Isn&#8217;t _ABMultiValueAddValueAndLabel_ supposed to _ADD_ a new value? Instead it deletes the complete content and inserts the new URL. </p>
<p>Anyone else experienced this issue? Am I missing something?</p>
<p><code><br />
ABAddressBookRef addressBook = ABAddressBookCreate();<br />
		ABRecordRef person = ABAddressBookGetPersonWithRecordID(addressBook, personID);<br />
		ABMutableMultiValueRef theUrls = ABMultiValueCreateMutable(kABMultiStringPropertyType);</p>
<p>ABMultiValueAddValueAndLabel(theUrls, newUrl, kABOtherLabel, NULL);<br />
ABRecordSetValue(person, kABPersonURLProperty, theUrls, &amp;retVal);<br />
ABAddressBookSave(addressBook, &amp;retVal); </p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with iPhone contacts: Adding phonenumbers to ABPerson by Olav Rask</title>
		<link>http://mrrask.wordpress.com/2009/01/27/working-with-iphone-contacts-adding-phonenumbers-to-abperson/#comment-144</link>
		<dc:creator>Olav Rask</dc:creator>
		<pubDate>Thu, 01 Oct 2009 10:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=17#comment-144</guid>
		<description>I&#039;m sorry i don&#039;t :)</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry i don&#8217;t <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with iPhone contacts: Adding phonenumbers to ABPerson by David</title>
		<link>http://mrrask.wordpress.com/2009/01/27/working-with-iphone-contacts-adding-phonenumbers-to-abperson/#comment-143</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 30 Sep 2009 20:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=17#comment-143</guid>
		<description>How do add a custom label to a contact.  Do you have an example of that please</description>
		<content:encoded><![CDATA[<p>How do add a custom label to a contact.  Do you have an example of that please</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add entry to contacts using iPhone SDK by James Sun</title>
		<link>http://mrrask.wordpress.com/2009/01/18/add-entry-to-contacts-using-iphone-sdk/#comment-141</link>
		<dc:creator>James Sun</dc:creator>
		<pubDate>Sun, 20 Sep 2009 23:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=10#comment-141</guid>
		<description>Olav -

The sample code you posted worked great!  Thanks!

James</description>
		<content:encoded><![CDATA[<p>Olav -</p>
<p>The sample code you posted worked great!  Thanks!</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android: Authenticating via NTLM by Olav Rask</title>
		<link>http://mrrask.wordpress.com/2009/08/21/android-authenticating-via-ntlm/#comment-108</link>
		<dc:creator>Olav Rask</dc:creator>
		<pubDate>Mon, 07 Sep 2009 08:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=144#comment-108</guid>
		<description>If you have &quot;no skillz&quot; i wonder how are you going to fair with the ugliness that is the CAML format spit by SharePoint Services ? :)

More to the point: Visit the links and give it a try. It&#039;s realy not that hard.</description>
		<content:encoded><![CDATA[<p>If you have &#8220;no skillz&#8221; i wonder how are you going to fair with the ugliness that is the CAML format spit by SharePoint Services ? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>More to the point: Visit the links and give it a try. It&#8217;s realy not that hard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android: Authenticating via NTLM by John Gleason</title>
		<link>http://mrrask.wordpress.com/2009/08/21/android-authenticating-via-ntlm/#comment-94</link>
		<dc:creator>John Gleason</dc:creator>
		<pubDate>Wed, 02 Sep 2009 13:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://mrrask.wordpress.com/?p=144#comment-94</guid>
		<description>I like how this sounds, but I don&#039;t like my chances of being able to implement it. I&#039;m a MyTouch (HTC Magic) user with no skillz. :)

If you can point me in an &#039;Android and NTLM for Dummies&#039; direction that would help me login to SharePoint sites it would be most appreciated.</description>
		<content:encoded><![CDATA[<p>I like how this sounds, but I don&#8217;t like my chances of being able to implement it. I&#8217;m a MyTouch (HTC Magic) user with no skillz. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you can point me in an &#8216;Android and NTLM for Dummies&#8217; direction that would help me login to SharePoint sites it would be most appreciated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
