<?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/"
		>
<channel>
	<title>Comments for Superpatterns</title>
	<atom:link href="http://blog.superpat.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.superpat.com</link>
	<description>Pat Patterson on Identity Management, Federation and Single Malt Scotch</description>
	<lastBuildDate>Tue, 23 Feb 2010 05:03:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on OpenSSO Single Sign-on Plugin for WordPress by OpenSSO Single Sign-on Extension for MediaWiki &#171; Superpatterns</title>
		<link>http://blog.superpat.com/2009/07/27/opensso-single-sign-on-plugin-for-wordpress/comment-page-1/#comment-1750</link>
		<dc:creator>OpenSSO Single Sign-on Extension for MediaWiki &#171; Superpatterns</dc:creator>
		<pubDate>Tue, 23 Feb 2010 05:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/2009/07/27/opensso-single-sign-on-plugin-for-wordpress/#comment-1750</guid>
		<description>[...] targeting PHP CMS applications (see my previous entries covering the extensions for Drupal, WordPress and Joomla), I decided to look at MediaWiki, the PHP application powering Wikipedia and many other [...]</description>
		<content:encoded><![CDATA[<p>[...] targeting PHP CMS applications (see my previous entries covering the extensions for Drupal, WordPress and Joomla), I decided to look at MediaWiki, the PHP application powering Wikipedia and many other [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenSSO User Group Meetings in Northern Europe &#8211; Nov/Dec 2009 by Pat Patterson</title>
		<link>http://blog.superpat.com/2009/11/18/opensso-user-group-meetings-in-northern-europe-novdec-2009/comment-page-1/#comment-1688</link>
		<dc:creator>Pat Patterson</dc:creator>
		<pubDate>Sun, 14 Feb 2010 07:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=966#comment-1688</guid>
		<description>Actually, I just checked - PHP foreach doesn&#039;t need next() - see http://php.net/manual/en/control-structures.foreach.php</description>
		<content:encoded><![CDATA[<p>Actually, I just checked &#8211; PHP foreach doesn&#8217;t need next() &#8211; see <a href="http://php.net/manual/en/control-structures.foreach.php" rel="nofollow">http://php.net/manual/en/control-structures.foreach.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenSSO User Group Meetings in Northern Europe &#8211; Nov/Dec 2009 by Pat Patterson</title>
		<link>http://blog.superpat.com/2009/11/18/opensso-user-group-meetings-in-northern-europe-novdec-2009/comment-page-1/#comment-1687</link>
		<dc:creator>Pat Patterson</dc:creator>
		<pubDate>Sun, 14 Feb 2010 07:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=966#comment-1687</guid>
		<description>Hi Yonas,

Thanks for the fix! I still have the developer role over at OpenSSO, so I should be able to commit it.

However that code belongs to Oracle and I no longer work there, so, unfortunately, I don&#039;t think I can push it to drupal.org :-(

Cheers,

Pat</description>
		<content:encoded><![CDATA[<p>Hi Yonas,</p>
<p>Thanks for the fix! I still have the developer role over at OpenSSO, so I should be able to commit it.</p>
<p>However that code belongs to Oracle and I no longer work there, so, unfortunately, I don&#8217;t think I can push it to drupal.org <img src='http://blog.superpat.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Cheers,</p>
<p>Pat</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenSSO User Group Meetings in Northern Europe &#8211; Nov/Dec 2009 by Yonas Yanfa</title>
		<link>http://blog.superpat.com/2009/11/18/opensso-user-group-meetings-in-northern-europe-novdec-2009/comment-page-1/#comment-1685</link>
		<dc:creator>Yonas Yanfa</dc:creator>
		<pubDate>Sat, 13 Feb 2010 09:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=966#comment-1685</guid>
		<description>Hi Pat,

I was looking through your module and might&#039;ve found a bug:
http://pastie.org/823011


 // Need to parse name/value pairs, to get value for Drupal username
attribute

  $lines = explode(&quot;\n&quot;, $response-&gt;data);
  reset($lines);

  foreach ($lines as $line) {
    if ($line == (&#039;userdetails.attribute.name=&#039; .
OPENSSO_DRUPAL_USERNAME_ATTRIBUTE)) {

      // &#039;current&#039; line holds attribute value
      // 28 points to character after &#039;userdetails.attribute.value=&#039;
      $name = substr(current($lines), 28);
      break;
    }
    next($lines);    // &lt;--------- This was missing
  }

  return $name;
} // function _opensso_get_name



Thanks for writing this module, please upload it to drupal.org :) A lot
of people can contribute and benefit from bug fixes while it&#039;s on
drupal.org.


Cheers,

Yonas</description>
		<content:encoded><![CDATA[<p>Hi Pat,</p>
<p>I was looking through your module and might&#8217;ve found a bug:<br />
<a href="http://pastie.org/823011" rel="nofollow">http://pastie.org/823011</a></p>
<p> // Need to parse name/value pairs, to get value for Drupal username<br />
attribute</p>
<p>  $lines = explode(&#8220;\n&#8221;, $response-&gt;data);<br />
  reset($lines);</p>
<p>  foreach ($lines as $line) {<br />
    if ($line == (&#8216;userdetails.attribute.name=&#8217; .<br />
OPENSSO_DRUPAL_USERNAME_ATTRIBUTE)) {</p>
<p>      // &#8216;current&#8217; line holds attribute value<br />
      // 28 points to character after &#8216;userdetails.attribute.value=&#8217;<br />
      $name = substr(current($lines), 28);<br />
      break;<br />
    }<br />
    next($lines);    // &lt;&#8212;&#8212;&#8212; This was missing<br />
  }</p>
<p>  return $name;<br />
} // function _opensso_get_name</p>
<p>Thanks for writing this module, please upload it to drupal.org <img src='http://blog.superpat.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  A lot<br />
of people can contribute and benefit from bug fixes while it&#039;s on<br />
drupal.org.</p>
<p>Cheers,</p>
<p>Yonas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SAML Single Sign-on with Desktop Apps &#8211; Enabled by OAuth by Pat Patterson</title>
		<link>http://blog.superpat.com/2009/11/12/saml-single-sign-on-with-desktop-apps-enabled-by-oauth/comment-page-1/#comment-1482</link>
		<dc:creator>Pat Patterson</dc:creator>
		<pubDate>Thu, 21 Jan 2010 17:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=945#comment-1482</guid>
		<description>Hi Jonathan - I think the key thing here is that you can use Outlook to access your mail at Google, whether or not Google has a password for you. It&#039;s much more flexible.

Yes, you can use SPNEGO to do SSO across Microsoft web infrastructure, but I don&#039;t think it scales to thousands of IdP&#039;s accessing an SP. To use SPNEGO, you would have to &#039;kerberize&#039; the SP for all the IdP AD domain controllers, adding identities in each IdP&#039;s AD and copying keytab files. Ugh!</description>
		<content:encoded><![CDATA[<p>Hi Jonathan &#8211; I think the key thing here is that you can use Outlook to access your mail at Google, whether or not Google has a password for you. It&#8217;s much more flexible.</p>
<p>Yes, you can use SPNEGO to do SSO across Microsoft web infrastructure, but I don&#8217;t think it scales to thousands of IdP&#8217;s accessing an SP. To use SPNEGO, you would have to &#8216;kerberize&#8217; the SP for all the IdP AD domain controllers, adding identities in each IdP&#8217;s AD and copying keytab files. Ugh!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SAML Single Sign-on with Desktop Apps &#8211; Enabled by OAuth by Jonathan Gershater</title>
		<link>http://blog.superpat.com/2009/11/12/saml-single-sign-on-with-desktop-apps-enabled-by-oauth/comment-page-1/#comment-1478</link>
		<dc:creator>Jonathan Gershater</dc:creator>
		<pubDate>Thu, 21 Jan 2010 00:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=945#comment-1478</guid>
		<description>hi Pat
Doesn&#039;t Microsoft do this with SPNEGO ? It will take credentials that I used to authenticate to AD (and thus from any &quot;thick client&quot; like Outlook) and make those credentials available in IE for browser based Auth?

Jonathan</description>
		<content:encoded><![CDATA[<p>hi Pat<br />
Doesn&#8217;t Microsoft do this with SPNEGO ? It will take credentials that I used to authenticate to AD (and thus from any &#8220;thick client&#8221; like Outlook) and make those credentials available in IE for browser based Auth?</p>
<p>Jonathan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New and Updated Policy Agents for OpenSSO by Pat Patterson</title>
		<link>http://blog.superpat.com/2009/04/28/new-and-updated-policy-agents-for-opensso/comment-page-1/#comment-1004</link>
		<dc:creator>Pat Patterson</dc:creator>
		<pubDate>Thu, 17 Dec 2009 04:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/2009/04/28/new-and-updated-policy-agents-for-opensso/#comment-1004</guid>
		<description>Hi Venki - looks like the Domino agent was just released - see http://wikis.sun.com/display/OpenSSO/OpenSSO+Policy+Agents+3.0+Roadmap . I no longer work on OpenSSO, but you should be able to get more information on CDSSO etc at the mailing list - see http://wikis.sun.com/display/OpenSSO/OpenSSO+Mailing+List</description>
		<content:encoded><![CDATA[<p>Hi Venki &#8211; looks like the Domino agent was just released &#8211; see <a href="http://wikis.sun.com/display/OpenSSO/OpenSSO+Policy+Agents+3.0+Roadmap" rel="nofollow">http://wikis.sun.com/display/OpenSSO/OpenSSO+Policy+Agents+3.0+Roadmap</a> . I no longer work on OpenSSO, but you should be able to get more information on CDSSO etc at the mailing list &#8211; see <a href="http://wikis.sun.com/display/OpenSSO/OpenSSO+Mailing+List" rel="nofollow">http://wikis.sun.com/display/OpenSSO/OpenSSO+Mailing+List</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New and Updated Policy Agents for OpenSSO by venki</title>
		<link>http://blog.superpat.com/2009/04/28/new-and-updated-policy-agents-for-opensso/comment-page-1/#comment-1003</link>
		<dc:creator>venki</dc:creator>
		<pubDate>Thu, 17 Dec 2009 01:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/2009/04/28/new-and-updated-policy-agents-for-opensso/#comment-1003</guid>
		<description>do you know when the 3.0 policy agent for domino is scheduled to be released! will it be compatible to domino 8.x servers and will it support CDSSO....?</description>
		<content:encoded><![CDATA[<p>do you know when the 3.0 policy agent for domino is scheduled to be released! will it be compatible to domino 8.x servers and will it support CDSSO&#8230;.?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SAML Single Sign-on with Desktop Apps &#8211; Enabled by OAuth by Pat Patterson</title>
		<link>http://blog.superpat.com/2009/11/12/saml-single-sign-on-with-desktop-apps-enabled-by-oauth/comment-page-1/#comment-981</link>
		<dc:creator>Pat Patterson</dc:creator>
		<pubDate>Wed, 16 Dec 2009 03:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=945#comment-981</guid>
		<description>Hi Adam - All the information I have is in this blog entry. The linked articles at Google have some more detail; if you need more, you&#039;ll have to get in touch with Google - Eric&#039;s email address is on the page I linked to - http://eric.sachs.googlepages.com/</description>
		<content:encoded><![CDATA[<p>Hi Adam &#8211; All the information I have is in this blog entry. The linked articles at Google have some more detail; if you need more, you&#8217;ll have to get in touch with Google &#8211; Eric&#8217;s email address is on the page I linked to &#8211; <a href="http://eric.sachs.googlepages.com/" rel="nofollow">http://eric.sachs.googlepages.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SAML Single Sign-on with Desktop Apps &#8211; Enabled by OAuth by Adam</title>
		<link>http://blog.superpat.com/2009/11/12/saml-single-sign-on-with-desktop-apps-enabled-by-oauth/comment-page-1/#comment-980</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 16 Dec 2009 01:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.superpat.com/?p=945#comment-980</guid>
		<description>I&#039;d be very interested in more information, I&#039;ve been looking for this for ages!

Adam</description>
		<content:encoded><![CDATA[<p>I&#8217;d be very interested in more information, I&#8217;ve been looking for this for ages!</p>
<p>Adam</p>
]]></content:encoded>
	</item>
</channel>
</rss>
