<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>sso &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/sso/</link>
	<description>Feed of posts on WordPress.com tagged "sso"</description>
	<pubDate>Tue, 01 Dec 2009 20:02:27 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Liferay Integration – CAS w/ LDAP]]></title>
<link>http://pojoe.wordpress.com/2009/11/27/liferay-integration-%e2%80%93-cas-w-ldap/</link>
<pubDate>Fri, 27 Nov 2009 05:59:43 +0000</pubDate>
<dc:creator>Joseph Shum</dc:creator>
<guid>http://pojoe.wordpress.com/2009/11/27/liferay-integration-%e2%80%93-cas-w-ldap/</guid>
<description><![CDATA[I recently had to walk a client through installing Liferay integrated with SSO and LDAP. Here’s a si]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I recently had to walk a client through installing Liferay integrated with SSO and LDAP. Here’s a simple summary of how I got it setup.</p>
<p>I set up the following components:</p>
<p>Application Server:  Liferay 5.2.5 EE / Tomcat 6.0.18 (www.pojoe.ca)</p>
<p>CAS Server:              JA-SIG CAS Server 3.3.3 Final (sso.pojoe.ca)</p>
<p>LDAP Server:          Apache Directory Server 1.5.5 (ldap.pojoe.ca)</p>
<p>Getting Liferay setup is a topic for an entirely different post so here I’m going to assume you have an out of the box Liferay running on your application server. Go over to <a href="http://www.liferay.com/web/guest/downloads/portal">http://www.liferay.com/web/guest/downloads/portal</a> and get yourself a portal if you haven’t already.</p>
<p>The first thing we’re going to do is install JA-SIG CAS Server 3.3.3 Final.</p>
<p>I drop cas-server-3.3.3-release\cas-server-3.3.3\modules\cas-server-webapp-3.3.3.war into Tomcat rename the war to <strong>cas-web</strong> and let it deploy.</p>
<p>You’ll need to configure Tomcat to allow for HTTPS connections.</p>
<p>I’ve detailed this process<a href="../2009/11/27/configuring-https-on-tomcat-6-0-18/"></a> <a href="http://pojoe.wordpress.com/2009/11/26/configuring-https-on-tomcat-6-0-18/" target="_self">here</a> in another post.</p>
<p>That is pretty much all you have to do to get a basic SSO server up and running.</p>
<p>Next you’ll want to configure Liferay to use the SSO server. This is of course, like everything else in Liferay, simple. =)</p>
<p>The CAS client jar should already be bundled but you can grab it here as well.</p>
<p>Download the CAS client from <a href="http://www.ja-sig.org/downloads/cas-clients/ cas-client-java-2.1.1" target="_blank">here</a>.</p>
<p>In portal-ext.properties add the following lines.</p>
<p>##<br />
## Company<br />
##</p>
<p>#<br />
# The portal can authenticate users based on their email address, screen<br />
# name, or user id.<br />
#<br />
#company.security.auth.type=emailAddress<br />
company.security.auth.type=screenName<br />
#company.security.auth.type=userId</p>
<p>##<br />
## CAS<br />
##</p>
<p>#<br />
# Set this to true to enable CAS single sign on. NTLM will work only if<br />
# LDAP authentication is also enabled and the authentication is made by<br />
# screen name. If set to true, then the property &#8220;auto.login.hooks&#8221; must<br />
# contain a reference to the class<br />
# com.liferay.portal.security.auth.CASAutoLogin and the filter<br />
# com.liferay.portal.servlet.filters.sso.cas.CASFilter must be referenced<br />
# in web.xml.<br />
#</p>
<p>cas.auth.enabled=true</p>
<p>#<br />
# A user may be authenticated from CAS and not yet exist in the portal. Set<br />
# this to true to automatically import users from LDAP if they do not exist<br />
# in the portal.<br />
#</p>
<p>cas.import.from.ldap=false</p>
<p>#<br />
# Set the default values for the required CAS URLs. Set either<br />
# &#8220;cas.server.name&#8221; or &#8220;cas.service.url&#8221;. Setting &#8220;cas.server.name&#8221; allows<br />
# deep linking. See LEP-4423.<br />
#</p>
<p>cas.login.url=https://sso.pojoe.ca:8443/cas-web/login<br />
cas.logout.url=https://sso.pojoe.ca:8443/cas-web/logout<br />
cas.server.name=www.pojoe.ca:8080<br />
cas.service.url=<br />
#cas.service.url=http://localhost:8080/c/portal/login<br />
cas.validate.url=https://sso.pojoe.ca:8443/cas-web/proxyValidate</p>
<p>Startup Liferay and head for the homepage. Once you are there you should go to the “Sign In” and this should direct you to the CAS SSO login page.</p>
<p>Login with test/test and you should land on your Liferay homepage as the authenticated omni user. Create a new user with the screen name “admin” and with the password “secret”. We’ll be using this default user later to test the LDAP integration.</p>
<p>The next thing we’ll do now is setup an LDAP server. We’ll use ApacheDS 1.5.5. Downloaded from<a href="http://directory.apache.org/apacheds/1.5/downloads.html" target="_blank"> here</a>.</p>
<p>After downloading simply run the installer with all default options.</p>
<p>ApacheDS should now be running and listening on port 10389.</p>
<p>Stop the tomcat server and add cas-server-support-ldap-3.3.3.jar to cas-web/WEB-INF/lib if it isn’t there already.</p>
<p>Edit cas-web\WEB-INF\deployerConfigContext.xml as follows:</p>
<p>1. Add the following bean LDAP authentication:</p>
<p>&#60;bean id=&#8221;contextSource&#8221;&#62;<br />
&#60;property value=&#8221;true&#8221;/&#62;<br />
&#60;property&#62;<br />
&#60;list&#62;<br />
&#60;value&#62;ldap://ldap.pojoe.ca:10389&#60;/value&#62;<br />
&#60;/list&#62;<br />
&#60;/property&#62;<br />
&#60;property value=&#8221;uid=admin,ou=system&#8221;/&#62;<br />
&#60;property value=&#8221;secret&#8221;/&#62;<br />
&#60;property&#62;<br />
&#60;map&#62;<br />
&#60;entry key=&#8221;java.naming.security.authentication&#8221; value=&#8221;simple&#8221; /&#62;<br />
&#60;/map&#62;<br />
&#60;/property&#62;<br />
&#60;/bean&#62;</p>
<p>2. Remove the demo authentication handler, org.jasig.cas.authentication.handler.support.SimpleTestUsernamePasswordAuthenticationHandler, from the authenticationHandlers property of the org.jasig.cas.authentication.AuthenticationManagerImpl bean.</p>
<p>3. Add the LDAP fast bind authentication handler:</p>
<p>&#60;bean &#62;<br />
&#60;property value=&#8221;uid=%u,ou=system&#8221; /&#62;<br />
&#60;property ref=&#8221;contextSource&#8221; /&#62;<br />
&#60;/bean&#62;</p>
<p>Start tomcat</p>
<p>Open a browser to the URL http://www.pojoe.ca:8080 and authenticate with the following credentials, admin/secret.</p>
<p>The user has signed on over SSO and authenticated with your LDAP server.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Configuring HTTPS on Tomcat 6.0.18]]></title>
<link>http://pojoe.wordpress.com/2009/11/26/configuring-https-on-tomcat-6-0-18/</link>
<pubDate>Thu, 26 Nov 2009 16:14:59 +0000</pubDate>
<dc:creator>Joseph Shum</dc:creator>
<guid>http://pojoe.wordpress.com/2009/11/26/configuring-https-on-tomcat-6-0-18/</guid>
<description><![CDATA[My Liferay application was running on the domain www.pojoe.ca and resided on Tomcat 6 in its own VM ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">My Liferay application was running on the domain <a href="http://www.pojoe.ca/">www.pojoe.ca</a> and resided on Tomcat 6 in its own VM while my SSO server was running on another Tomcat 6 instance on another VM under the domain sso.pojoe.ca. I wanted to establish an SSL connection between the two over a self-signed certificate.</span></span></p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">I started by setting up HTTPS on my SSO server.</span></span></p>
<ul>
<li><span style="font-family:Symbol;"><span style="font-size:small;"> </span></span><span style="font-family:Symbol;"><span style="font-size:small;"> </span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Create the keystore and private key in some directory. I use /opt/tomcat/security</span></span><span style="font-family:Arial,sans-serif;"> </span></li>
</ul>
<blockquote><p><span style="font-family:Arial,sans-serif;">keytool -genkey -alias mykey -keypass changeit -keyalg RSA -keystore server.keystore</span></p></blockquote>
<ul>
<li><span style="font-family:Symbol;"> </span><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Answer the prompts.  Use <a href="http://www.pojoe.ca/">sso.pojoe.ca</a> (your domain) when asked for first/last name.  This is critical.</span></span></li>
</ul>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">NOTE:</span></span> <span style="font-family:Arial,sans-serif;"><span style="font-size:small;">From <a href="http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html">http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html</a></span></span></p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">I am using name-based virtual hosts on a secured connection which can be problematic. This is a design limitation of the SSL protocol itself. The SSL handshake, where the client browser accepts the server certificate, must occur before the HTTP request is accessed. As a result, the request information containing the virtual host name cannot be determined prior to authentication, and it is therefore not possible to assign multiple certificates to a single IP address. If all virtual hosts on a single IP address need to authenticate against the same certificate, the addition of multiple virtual hosts should not interfere with normal SSL operations on the server. Be aware, however, that most client browsers will compare the server&#8217;s domain name against the domain name listed in the certificate, if any (applicable primarily to official, CA-signed certificates). If the domain names do not match, these browsers will display a warning to the client user. In general, only address-based virtual hosts are commonly used with SSL in a production environment.</span></span></p>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">server.keystore is generated.</span></span></li>
</ul>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">List the keys currently stored in your keystore.</span></span></li>
</ul>
<blockquote><p><span style="font-family:Arial,sans-serif;">keytool -list -keystore server.keystore</span></p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">You should see the PrivateKeyEntry named mykey in the listing.</span></span></li>
</ul>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">This should be sufficient to begin receiving connections using HTTPS.</span></span></li>
</ul>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Generate the certificate.</span></span></li>
</ul>
<blockquote><p>keytool -export -alias mykey -keypass changeit -file mycert.crt -keystore server.keystore</p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">mycert.crt is generated.</span></span></li>
</ul>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Import the certificate into the keystore.</span></span></li>
</ul>
<blockquote><p>keytool -import -alias mycert -keypass changeit -file mycert.crt -keystore server.keystore</p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">You receive a warning that it already exists in the keystore.  Ignore it.  It is because Java expects separate keystore and trust store files and we are using only one. </span></span></li>
</ul>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">List the keys currently stored in your keystore.</span></span></li>
</ul>
<blockquote><p><span style="font-family:Arial,sans-serif;">keytool -list -keystore server.keystore</span></p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">You should see a TrustedCertEntry named </span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">mycert</span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:small;"> in the listing as well as the </span></span>PrivateKeyEntry named mykey<span style="font-family:Arial,sans-serif;"><span style="font-size:small;">.</span></span></li>
</ul>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Next I configured Tomcat to use the keystore I just setup. In server.xml uncomment the SSL connector port 8443. I’ve added the keystore file we created.</span></span></p>
<blockquote><p><span style="color:#008080;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#60;</span></span></span><span style="color:#3f7f7f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">Connector</span></span></span> <span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">port</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;8443&#8243;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">protocol</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;HTTP/1.1&#8243;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">SSLEnabled</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;true&#8221;</span></span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> maxThreads</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;150&#8243;</span></span></span> <span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">scheme</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;https&#8221;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">secure</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;true&#8221;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">clientAuth</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;false&#8221;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">sslProtocol</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;TLS&#8221;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">keystoreFile</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;/opt/tomcat/security/server.keystore&#8221;</span></span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;"> </span></span><span style="color:#7f007f;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">keystorePass</span></span></span><span style="color:#000000;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">=</span></span></span><span style="color:#2a00ff;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">&#8220;changeit&#8221;</span></span></span><span style="color:#008080;"><span style="font-family:Arial,sans-serif;"><span style="font-size:x-small;">/&#62;</span></span></span></p></blockquote>
<p><span style="color:#000000;"> </span></p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">My SSO server is now ready to rock over HTTPS.</span></span></p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;"> </span></span> <span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Next I’ll enable HTTPS on my Application server running Liferay. </span></span></p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Create the keystore and private key in some directory. I use /opt/tomcat/security</span></span></p>
<blockquote><p><span style="font-family:Arial,sans-serif;">keytool -genkey -alias mykey -keypass changeit -keyalg RSA -keystore server.keystore</span></p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Answer the prompts.  Use <a href="http://www.pojoe.ca/">www.pojoe.ca</a></span></span> <span style="font-family:Arial,sans-serif;"><span style="font-size:small;">(your domain) when asked for first/last name.  This is critical. See notes from above.</span></span></li>
</ul>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Copy the mycert.crt certificate from the SSO server to /opt/servers/tomcat/security</span></span></li>
</ul>
<blockquote><p><span style="font-family:Arial,sans-serif;">keytool -import -alias mycert -keypass changeit -file mycert.crt -keystore server.keystore</span></p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">List the keys currently stored in your keystore.</span></span></li>
</ul>
<blockquote><p><span style="font-family:Arial,sans-serif;">keytool -list -keystore server.keystore</span></p></blockquote>
<ul>
<li><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">You should see a TrustedCertEntry named </span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">mycert</span></span><span style="font-family:Arial,sans-serif;"><span style="font-size:small;"> in the listing as well as </span></span>the PrivateKeyEntry named mykey.</li>
</ul>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Next we’ll set the JVM parameters to tell the application to use the trust store.</span></span></p>
<p><span style="font-family:Arial,sans-serif;">-Djavax.net.ssl.trustStore=/opt/servers/tomcat6.0.18/server.keystore</span></p>
<p><span style="font-family:Arial,sans-serif;">-Djavax.net.ssl.trustStorePassword=changeit</span></p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">My Liferay application server and my CAS SSO server can now talk over HTTPS.</span></span></p>
<p>&#160;</p>
<p><span style="font-family:Arial,sans-serif;"><span style="font-size:small;">Reference:</span></span></p>
<p>http://java.sun.com/javase/6/docs/technotes/tools/windows/keytool.html</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Combining SEO with social media article]]></title>
<link>http://designvent.wordpress.com/2009/11/20/combining-seo-with-social-media-article/</link>
<pubDate>Fri, 20 Nov 2009 21:04:02 +0000</pubDate>
<dc:creator>designvent</dc:creator>
<guid>http://designvent.wordpress.com/2009/11/20/combining-seo-with-social-media-article/</guid>
<description><![CDATA[Social media if you were honest is either loved or hated but with the sudden rise in necessary SEO d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Social media if you were honest is either loved or hated but with the sudden rise in necessary SEO directed from these sites it&#8217;s a necessary medium for anyone in a competitive Web environment no matter how small, here is an article which will help.</p>
<p><a href="http://blog.dropshipaccess.com/bid/28419/Combining-SEO-with-Social-Media-Marketing-What-NOT-to-Do">Combining SEO Article</a></p>
<p><a href="http://www.Designvent.co.uk">Designvent.co.uk</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Micro / Satellite sites]]></title>
<link>http://designvent.wordpress.com/2009/11/19/micro-satellite-sites/</link>
<pubDate>Thu, 19 Nov 2009 16:39:11 +0000</pubDate>
<dc:creator>designvent</dc:creator>
<guid>http://designvent.wordpress.com/2009/11/19/micro-satellite-sites/</guid>
<description><![CDATA[2 days, 2 meetings and 4 micro sites or are they? The idea that buying multiple domain names us not ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>2 days, 2 meetings and 4 micro sites or are they?</p>
<p>The idea that buying multiple domain names us not a new one, placing optimised sites behind those domain names to help business is not a new one but what is the best method?</p>
<p>I was asked yesterday to go ahead and start work on a large site for an existing client, there current site us doing fine but larger businesses are dominating the search engines with multiple landing pages from multiple sites under not only different domain names but different brands but all feeding a sole business. A duplication of the existing site is now afoot, different images, rewritten text and a cms system, the other is a 4 page site just picking at s niche Market but for the same result.</p>
<p>The 2 today are to be created under different domains and new brands but feeding a sole provider although both will be small 4 page sites. </p>
<p>I would argue that the creation of this style of site could harm the Internet long term but I would also argue that if i am not searching for them then will never find them therefore not a worry and as long as my concious is clear that the quality and standard of the final business offering in the chain is up to standard then surely there is no issue?</p>
<p><a href="http://www.Designvent.co.uk">Designvent.co.uk</a></p>
<p><a href="http://www.vent-seo.co.uk">vent-SEO.co.uk</a> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[12/2 Enterprise SaaS Working Group webinar - Access and Identity Management for the Cloud]]></title>
<link>http://conformity.wordpress.com/2009/11/16/122-enterprise-saas-working-group-webinar-access-and-identity-management-for-the-cloud/</link>
<pubDate>Mon, 16 Nov 2009 21:28:58 +0000</pubDate>
<dc:creator>Scott Bils</dc:creator>
<guid>http://conformity.wordpress.com/2009/11/16/122-enterprise-saas-working-group-webinar-access-and-identity-management-for-the-cloud/</guid>
<description><![CDATA[We&#8217;re excited to announce that on December 2nd  at 10:00am PST / 1:00pm EST we&#8217;ll be hol]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We&#8217;re excited to announce that on December 2nd  at 10:00am PST / 1:00pm EST we&#8217;ll be holding the <a href="http://www.conformity-inc.com/archive/landingpages/120209_ESWG_reg_page.htm" target="_blank">second meeting</a> of the <strong>Enterprise SaaS Working Group </strong>on the topic of <strong>Access and Identity Management for the Cloud</strong>.</p>
<p>One of the recognized challenges with SaaS in the enterprise is the silos of identity that are created by cloud applications. Each service contains its own &#8216;version of the truth&#8217; around users, permissions and credentials, disconnected from legacy directory services and identity management systems. Based on feedback from our first event, this meeting will focus on the identity management and access control issues that need to be addressed for SaaS to become truly mainstream in the enterprise. Discussion will focus on several questions including:</p>
<p><!-- 		img {display: block;}         td {line-height:13px;}      --></p>
<div>
<ul>
<li><strong>SaaS identity issues in the enterprise – speed bump or show stopper?</strong></li>
<li><strong>What will be the identity source(s) in a cloud-centric world?</strong></li>
<li><strong>Can separate cloud and on-premise user identities co-exist?</strong></li>
<li><strong>Will enterprise IT ever put corporate directories in the cloud?</strong></li>
</ul>
</div>
<p>Participants in the session will include:</p>
<ul>
<li><strong>Michael Amend –</strong> Director of Enterprise Architecture at <a href="http://www.dell.com" target="_blank">Dell, Inc.</a></li>
<li><strong>Chris Bedi –</strong> CIO at <a href="http://www.verisign.com" target="_blank">VeriSign, Inc.</a></li>
<li><strong>Scott Carruth –</strong> VP, Information Systems at <a href="http://www.initiatesystems.com" target="_blank">Initiate Systems</a></li>
<li><strong>Peter Dapkus –</strong> Director of Product Management at <a href="http://www.salesforce.com" target="_blank">Salesforce.com</a></li>
<li><strong>Steve Coplan</strong> &#8211; Senior Analyst, Enterprise Security Practice at <a href="http://www.451group.com">The 451 Group</a></li>
<li><strong>Doug Harr</strong> &#8211; CIO at <a href="http://www.ingres.com" target="_blank">Ingres Corporation</a></li>
<li><strong>Ryan Nichols</strong> – VP Cloudsourcing &#38; Cloud Strategies at <a href="http://www.appirio.com" target="_blank">Appirio</a></li>
</ul>
<p>The discussion will focus on critical issues and corresponding best practices in the areas of access management, authentication, identity synchronization and identity policy enforcement and will include a Q&#38;A session open to all attendees. <a href="http://tinyurl.com/y9l3kg6" target="_blank">Click here</a> for more information and to register for this exciting  						event!</p>
<p><a href="http://www.conformity-inc.com/archive/landingpages/120209_ESWG_reg_page.htm" target="_blank">Register now &#62;&#62;</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Emerging Best Practices - Extending Microsoft Active Directory to SaaS and Cloud Applications]]></title>
<link>http://conformity.wordpress.com/2009/11/13/emerging-best-practices-extending-microsoft-active-directory-to-saas-and-cloud-applications/</link>
<pubDate>Fri, 13 Nov 2009 21:34:30 +0000</pubDate>
<dc:creator>Scott Bils</dc:creator>
<guid>http://conformity.wordpress.com/2009/11/13/emerging-best-practices-extending-microsoft-active-directory-to-saas-and-cloud-applications/</guid>
<description><![CDATA[Though cloud and SaaS solutions are seeing rapid adoption in the enterprise, management of these app]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Though cloud and SaaS solutions are seeing rapid adoption in the enterprise, management of these applications is not aligned with traditional IT controls and policies.  SaaS has been deployed and managed largely by business users, with limited input from CIOs and IT organizations.  As these cloud-based technologies replace mission-critical on-premise applications and host sensitive organizational data, enterprise IT is now regaining their ‘seat at the table’.   When seeking to extend policies and controls to SaaS, these IT organizations are disappointed to learn that existing directories and  IT management technologies don’t easily extend to the cloud.  These organizations struggle to achieve alignment of SaaS and cloud solutions with established enterprise identity sources including Human Resources Information Systems (HRIS), directory services, and Identity Management (IdM) solutions.  This alignment and resulting visibility and control is critical for IT and Finance departments concerned with regulatory compliance, governance, and identity and access management.</p>
<p>Given the role that Microsoft Active Directory and associated proxy services play in  providing centralized authentication, access control, and identity synchronization for on-premise applications  it would seem to be a logical integration point to also harness SaaS and cloud solutions.  Unfortunately IT organizations are finding that AD itself does not easily extend into leading SaaS applications, with direct integration difficult if not impossible.</p>
<p>Despite this inability to directly integrate AD with major cloud applications, forward-thinking enterprises are focusing on a “loose coupling” of on-premise Microsoft Active Directory and SaaS solutions through new third party management solutions.  This approach allows an integration path with the existing, deployed directory technologies and does not require major adjustments in the SaaS vendor technology roadmaps.  By integrating the current SaaS and directory solutions, the enterprise can align critical services including user identity and attributes, login services (Single Sign-On), and IT policies.  This alignment can lead to immediate benefits in security, IT efficiency, and governance and regulatory compliance.  In our new white paper, <strong>Extending Microsoft Active Directory to the Cloud</strong>, we explore the approaches and solutions organizations are leveraging to identity synchronization, policy enforcement and single sign-on (SSO).</p>
<p><strong><a href="mailto:sales@conformity-inc.com?subject=Whitepaper_request_Extending_AD_to_the_Cloud">Click here to request a free copy &#62;&#62;</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Divergence in an uptrend]]></title>
<link>http://ralphsinvestmentmusings.wordpress.com/2009/11/13/divergence-in-an-uptrend/</link>
<pubDate>Fri, 13 Nov 2009 18:26:19 +0000</pubDate>
<dc:creator>Ralph</dc:creator>
<guid>http://ralphsinvestmentmusings.wordpress.com/2009/11/13/divergence-in-an-uptrend/</guid>
<description><![CDATA[As I mentioned in previous posts, anytime we are invested in the market we always want to be cautiou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://ralphsinvestmentmusings.wordpress.com/files/2009/11/a1.png"><img class="aligncenter size-full wp-image-174" title="a" src="http://ralphsinvestmentmusings.wordpress.com/files/2009/11/a1.png" alt="a" width="450" height="275" /></a><a href="http://ralphsinvestmentmusings.wordpress.com/files/2009/11/c1.png"><img class="aligncenter size-full wp-image-176" title="c" src="http://ralphsinvestmentmusings.wordpress.com/files/2009/11/c1.png" alt="c" width="450" height="275" /></a><a href="http://ralphsinvestmentmusings.wordpress.com/files/2009/11/b1.png"><img class="aligncenter size-full wp-image-175" title="b" src="http://ralphsinvestmentmusings.wordpress.com/files/2009/11/b1.png" alt="b" width="450" height="275" /></a></p>
<p>As I mentioned in previous posts, anytime we are invested in the market we always want to be cautious.   Although I am not sounding the alarm bell and calling everyone to evacuate, we need to be aware of the potential dangers that lurk ahead.</p>
<p>The bottom chart shows the S&#38;P 500 over the last six months and we see clearly how we have moved up nicely since the dip in  early July.  We also notice that the 20 day moving average (<span style="color:#ff0000;">red line<span style="color:#000000;">)</span></span> is well above the 200 day moving average (<span style="color:#0000ff;">blue line<span style="color:#000000;">)</span></span>.  So far everything looks rosy.</p>
<p>However, if we look at the top two charts, then we begin to see a different picture emerging.  We see that the market internals, measured by the Advance/Decline lines are not moving in tandem with the market, but are in fact diverging from it.</p>
<p>We see that although the market made a new high on November 11, there were no new highs made in the Advance/Decline lines.</p>
<p>Different scenarios could  occur from this point:</p>
<ul>
<li>We may dip down modestly and essentially create a nice place to add more to our current position and the market continues in its&#8217; upward climb.</li>
</ul>
<ul>
<li>We may begin a phase where the market is stuck in  a &#8220;trading range&#8221; where it moves up and down in a narrow range, essentially going nowhere.</li>
</ul>
<ul>
<li>We may continue in a downtrend that is more prolonged than the previous dips we have seen and has the potential to take us lower than the lows we experienced back in March 2009.</li>
</ul>
<p>If that last scenario comes to pass we would have already sounded the alarm and be in SDS.</p>
<p>In the meantime we keep a long term outlook in a rising market while being aware of the pitfalls along the way.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft &ldquo;Geneva&rdquo;: Single Sign On &amp; Online Services]]></title>
<link>http://richfrombechtle.wordpress.com/2009/11/09/microsoft-geneva-single-sign-on-online-services/</link>
<pubDate>Mon, 09 Nov 2009 21:54:10 +0000</pubDate>
<dc:creator>richfrombechtle</dc:creator>
<guid>http://richfrombechtle.wordpress.com/2009/11/09/microsoft-geneva-single-sign-on-online-services/</guid>
<description><![CDATA[Microsoft Geneva: “provides companies with simplified user access and single sign-on, for on-premise]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Microsoft Geneva:</p>
<blockquote><p>“provides companies with simplified user access and single sign-on, for on-premises and cloud-based applications in the enterprise, across organizations, and on the Web to facilitate collaboration, increase security and reduce cost.”</p>
</blockquote>
<p><img src="http://www.intentblog.com/archives/geneva.jpg" /></p>
<p>&#160;</p>
<p>There are 3 components to Geneva which now have more official names:</p>
<p><strong>Geneva Framework</strong> = <strong>Windows Identity Foundation</strong>: provides developers pre-built .NET security logic for building claims-aware applications</p>
<p><strong>Geneva Server</strong> = <strong>Active Directory Federation Services (ADFS) 2.0</strong>: a security token service (STS) for issuing and transforming claims, enabling federations, and managing user access</p>
<p><strong>Geneva Cardspace</strong> = <strong>Windows Cardspace: </strong>helps users navigate access decisions</p>
<p>The aim of Geneva is to provide a true “Single Sign On” (SSO) experience to users across the various platforms that they come across, be they corporate and/or personal.</p>
<p>For example, once a user is logged in with their corporate domain credentials they could then access Microsoft Online Services such as Hotmail, MSDN, LiveSpaces etc; without being prompted to enter their @hotmail/@live credentials. All this requires is 1 Geneva Server and a Windows Live Tool currently called “Microsoft Online Services Federation Utility”.</p>
<h2>Federation Gateway</h2>
<p>The Microsoft Federation Gateway is a cloud based identity service, that extends beyond your corporate domain out into the internet. This is the hub for all the connections users want to make to external MS technologies, be it Azure, Live or BPOS (MS use CRM Online as an example on the MSDN site).</p>
<p><img alt="Cc287610.405c867e-b9fe-4933-8ca1-7387ae678041(en-us,MSDN.10).gif" src="http://i.msdn.microsoft.com/Cc287610.405c867e-b9fe-4933-8ca1-7387ae678041(en-us,MSDN.10).gif" width="500" height="232" /></p>
<p>The above shows the federation of identities between partners. An example of how the data flows between the different points of the SSO setup can be seen below:</p>
<p><img alt="Cc287610.83e88583-1e36-4e3c-8cfd-51a1a312b9a0(en-us,MSDN.10).gif" src="http://i.msdn.microsoft.com/Cc287610.83e88583-1e36-4e3c-8cfd-51a1a312b9a0(en-us,MSDN.10).gif" width="500" height="385" /></p>
<p>You can find more information about the Microsoft Federation Gateway on MSDN <a href="http://msdn.microsoft.com/en-us/library/cc287610.aspx" target="_blank"><strong>here</strong></a>.</p>
<p>A slide from PDC 2008 showed an example of Geneva working with a BPOS component for the US:</p>
<p><a href="http://richfrombechtle.files.wordpress.com/2009/11/image.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://richfrombechtle.files.wordpress.com/2009/11/image_thumb.png?w=504&#038;h=357" width="504" height="357" /></a> </p>
<p>The full 1hour+ video of the “Identity Roadmap for Software + Services” presentation video from PDC 2008 can be viewed <a href="http://channel9.msdn.com/pdc2008/BB11/" target="_blank"><strong>here</strong></a><strong>&#160;</strong>on Channel 9.</p>
<p>I know that BPOS, Microsoft’s hosted offerings of Exchange &#38; Sharepoint (among others) will start using ADFS 2.0 at some stage next year. Most likely when the 2010 versions are deployed to the cloud, which I expect to be around late calendar Q3 so August/September. This is where I’m particularly keen to see what Geneva can do for SSO…it should make it pretty much seamless for corporate users whether they’re accessing on-site applications such as Exchange, their Online brethren, custom developed applications, hotmail, MSDN and more…and that will be excellent!</p>
<p>I use a variety of different MS Online Services and have at least 3 different logins for them…I’ll be interested to see if Geneva can look after that for me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  BPOS currently comes with a separate SSO client which needs to be installed for each user and comes with it’s own unique set of issues, so having a corporate wide SSO would definitely be better. Also, you currently need to re-enter your details for OWA with BPOS as it’s on an HTTPS connection…I assume Geneva would remove that need?</p>
<p>Some great technical documents, step-by-step guides and Virtual Machine demos of Geneva can be found on the Technet site <a href="http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx" target="_blank"><strong>here</strong></a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[#PhotoShelter announces #Facebook Friendly API/SSO Interactions #InCaseYouMissedIt]]></title>
<link>http://fjpalacio.wordpress.com/2009/11/09/photoshelter-announces-facebook-friendly-apisso-interactions-incaseyoumissedit/</link>
<pubDate>Mon, 09 Nov 2009 13:03:00 +0000</pubDate>
<dc:creator>fjpalacio</dc:creator>
<guid>http://fjpalacio.wordpress.com/2009/11/09/photoshelter-announces-facebook-friendly-apisso-interactions-incaseyoumissedit/</guid>
<description><![CDATA[Apropos my Fave Photographer&#8217;s Website ( PhotoShelter Users, here on FB and if you know her, R]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-size:small;"> </span></p>
<p><span style="font-size:small;">Apropos my Fave Photographer&#8217;s Website ( PhotoShelter Users, here on FB and if you know her, Rachel Reiss who is a GREAT trainer and support stakeholder!)</span></p>
<p><span style="font-size:small;">&#8220;The business implication became clear to me last year when I posted an album of portraits, and then a &#8220;friend&#8221; hired me to photograph him. **** Posting images on Facebook is a way to passively market yourself to a qualified audience for free.**** [YUP! TELL MY ALTER EGO THAT!][PAPPARAZZO STARTS BABBLING INCOHERENTLY... AND IN ITALIAN!]</span></p>
<p><span style="font-size:small;"> </span></p>
<p><span style="font-size:small;"><a href="http://devpunk.com/portfolio/guestarazzi/images/paparazzi600x399.jpg"><img src="http://devpunk.com/portfolio/guestarazzi/images/paparazzi600x399.jpg" border="0" alt="" width="320" height="212" /></a></span></p>
<p><span style="font-size:small;"> </span></p>
<p><span style="font-size:small;"><br />
</span></p>
<p><span style="font-size:small;">So I&#8217;m pleased to announce our new &#8220;Post to Facebook&#8221; feature that we released today. You might say to yourself, &#8220;well, duh!&#8221; And I would nod my head in agreement. It&#8217;s an obvious piece of functionality. But we&#8217;ve done it slightly differently than other implementations that I&#8217;ve seen&#8230;&#8221; (Murabayashi, 2009)</span></p>
<p><span style="font-size:small;"><br />
</span></p>
<p><span style="font-size:small;">Here is the entire post, with VERY detailed instructions (which is why I&#8217;ve stayed with them, their obvious proclivity towards mentoring us into the realms of SEO and other Web-driven aspects of the imaging business&#8230;)</span></p>
<p><span style="font-size:small;"> </span></p>
<div><a id="status_star_5256846570" title="favorite this tweet"> </a></div>
<p><a rel="nofollow" href="http://bit.ly/4sqONT" target="_blank">http://bit.ly/4sqONT</a></p>
<p><span style="font-size:small;"> </span></p>
<p><a href="http://www.underconsideration.com/brandnew/archives/photoshelter_tshirt.jpg"><img src="http://www.underconsideration.com/brandnew/archives/photoshelter_tshirt.jpg" border="0" alt="" width="320" height="320" /></a></p>
<p><span style="font-size:small;"> </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NSM service: past, present and future ...]]></title>
<link>http://otasizzle.wordpress.com/2009/11/09/nsm-service-past-present-and-future/</link>
<pubDate>Mon, 09 Nov 2009 10:25:33 +0000</pubDate>
<dc:creator>sachingaur</dc:creator>
<guid>http://otasizzle.wordpress.com/2009/11/09/nsm-service-past-present-and-future/</guid>
<description><![CDATA[Past : How did it started NSM expands to NordSecMob, which is an Erasmus Mundus masters course coord]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Past : How did it started</strong></p>
<p>NSM expands to NordSecMob, which is an Erasmus Mundus masters course coordinated by TKK. NSM programme is one of high quality masters course which attracts quite many international students every year. <em>I also happen to be a recent graduate of NSM.</em></p>
<p>The idea to make this service germinated probably in heads of NSM planning officer/ NSM coordinating professor. The vision was to make a service, which acts as a knowledge sharing platform for incoming international students in NSM program. Also, OtaSizzle platform presented an amazing opportunity.</p>
<p>Three students from the current NSM final year took this challenge as their summer job. They were guided by Jani Heikkinen, Olli Mäkinen and myself. Our focus with the developers was to  come up with a service, which serves a need and can be finished within the set time constraints.</p>
<p>We spent quite a bit of time focusing on listing the problems faced by the NSM students. One of the commonly identified problem was lack of information for new moving students to a foreign country(Scandinavia: NSM runs in Finland, Sweden, Norway, Denmark and Estonia) . No doubt about the scandinavian hospitality but still students have challenges with information about everyday things like : shopping stores, course information etc.</p>
<p>Once we were able to identify the problem we want to address, we started to see the solution in form of a service, which acts as one stop shop for information needed by an international student coming to study in NSM program. We had a consensus to build a framework to categorize the information and tap into collective intelligence of NSM students. The developers did a great job in making service which is not only working but also has good amount of seed content.</p>
<p>Also, I would like to mention here some of the lessons we learnt from the development process.</p>
<p>1. OtaSizzle platform works : (Kassi as an example service, which rocks!)</p>
<p>I have no doubt in saying this that with strict limits of time constraints and learning curve for developers (to learn ruby on rails), it would have been nearly impossible to develop such a feature rich service without a reference service like Kassi (and OtaSizzle platform). So, credit not only goes to developers and initiators but to Kassi and OtaSizzle platform.</p>
<p>2. Sharing to the outer world/lowering barriers for using the service</p>
<p>When we have to compete for attention from existing service platforms like Facebook etc, which is not that easy. We realized that using small javascript snippets from existing platforms makes life easy, like Facebook Share. We hope that this approach will be copied in future OtaSizzle services too.</p>
<p>Also, at the same time how a user can start using the service with least effort is critical. The first step towards that is using Single Sign On or similar authentication technologies.</p>
<p>However, all this is just a beginning, we still have lot to learn (how to bring the content in from other platforms and how to take it out) for making our service co-exist (not compete) in this fight where everybody is seeking attention of users.</p>
<p><strong>Present: a continous struggle</strong></p>
<p>One of the main challenge with NSM service is low user base which is due to the handful number of students we have in the NSM program. There are 10-20 students at any time in TKK studying in NSM masters(first and second year students combined). This challenge can be also seen as an opportunity that we can have a really cohesive group because the number is small.</p>
<p>I see two main challenges in making such a service successful.</p>
<p>1. We solved the technology problem but not the culture problem!</p>
<p>To have a vibrant community ( any posting forum) to have sufficient online activity, we must have offline activity as well. The NSM course staff is quite generous and provides opportunity for students to have some offline activity. But, still most of us who come from different cultures to a foreign country and to make a cohesive group we need to have more of offline activities together to help each other with collective intelligence of the group.</p>
<p>2. What is user&#8217;s incentive to post (everyone might want to read)?</p>
<p>Majority of the collective intelligence have to come from people who have passed out of NSM program. The current students are seekers of information. We are still in process of figuring out the incentives.</p>
<p><strong>Future: Where do we go from here&#8230;.</strong></p>
<p>It all started to address the small group of NSM students but it was very soon clear to us that TKK runs many international masters and others might find similar problems. ( there are infact few hundred students coming to TKK every year)</p>
<p>So, in the true Aalto spirit , the NSM service can mature and grow as something which can be used by a wider group of international students and help them bring closer. However, in the process we might have to change quite a few features in the service.</p>
<p>Last, but not least, I request the readers of this post to share to us if they have any ideas to make the community active . Also, thanks a lot for reading the post <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>please check out the service if you have not yet and let us know your valuable feedback.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Still chugging along]]></title>
<link>http://ralphsinvestmentmusings.wordpress.com/2009/11/03/still-chugging-along/</link>
<pubDate>Wed, 04 Nov 2009 04:05:32 +0000</pubDate>
<dc:creator>Ralph</dc:creator>
<guid>http://ralphsinvestmentmusings.wordpress.com/2009/11/03/still-chugging-along/</guid>
<description><![CDATA[It&#8217;s been a while since my last post, mainly because we are still in a bull market as we have ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It&#8217;s been a while since my last post, mainly because we are still in a bull market as we have defined it (20 day moving average above 200 day moving average) and there isn&#8217;t anything new of a significant nature.  The market internals appear overbought, but that is to be expected in a new bull market.  So we continue being in SSO and maintain our long-term outlook.</p>
<p>Having said that, we are always aware that the market can turn swiftly against us so we are vigilant and can never  be sleeping at the wheel.  A word of caution: the S&#38;P 500 is currently at 1045 and there is a point of resistance at 1121 which we will  need to break through in order to continue advancing.  We may see the market stall at that point or near it (we got as high as 1101 on October 21st).  There is also a trendline in the same area which is an additional point of resistance.</p>
<p>Let&#8217;s take what the market gives us, while maintaining a cautious stance.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Top Ten Mistakes Companies Make When Adopting SaaS]]></title>
<link>http://conformity.wordpress.com/2009/11/03/top-ten-mistakes-companies-make-when-adopting-saas/</link>
<pubDate>Tue, 03 Nov 2009 16:00:15 +0000</pubDate>
<dc:creator>Scott Bils</dc:creator>
<guid>http://conformity.wordpress.com/2009/11/03/top-ten-mistakes-companies-make-when-adopting-saas/</guid>
<description><![CDATA[While billions of dollars will be spent on SaaS and cloud applications by the end of 2009, executive]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>While billions of dollars will be spent on SaaS and cloud applications by the end of 2009, executives continue to question data security inside the cloud.  A <a href="http://www.cio.com/article/504837/Why_Security_Matters_Now" target="_blank">recent article</a> in <em>CIO</em> <em>Magazine</em> notes a growing majority of execs are worried about cloud security.  These executives recognize that each SaaS application, like <a href="http://www.salesforce.com" target="_blank">Salesforce.com</a>, represents a potential highway of highly sensitive corporate data outside the firewall and outside IT’s security protocol.  While no means exhaustive, here is a list of mistakes we’re seeing companies make when deploying SaaS applications, creating unnecessary risk and cost for their organizations:</p>
<p><strong> </strong></p>
<ol>
<li><strong>Creating the ‘three-headed admin’</strong> &#8211; granting multiple people administrator-level roles inside a single SaaS application, or having multiple admins share the same credentials.  Aside from the obvious security issues, resulting SaaS app management data typically ends up reflecting multiple perspectives of users and permissions.</li>
<li><strong>Hoping that everyone ‘locks the door’</strong> – relying on manual workflows, phone calls and emails to de-provision SaaS users’ access in an accurate and timely fashion across SaaS apps.   If there’s not an automated way to guarantee deprovisioning across all apps, then it’s unlikely that it’s happening.</li>
<li><strong>Applying a short term ‘band-aid’ for management</strong> &#8211; using trouble ticketing and help desk systems to coordinate administration between central IT and departmental SaaS admins.  This is typically a short term fix that just kicks critical provisioning and identity management issues down the road, and does it in a way that creates more pain later.</li>
<li><strong>Attempting the IT ‘end-run’</strong> – not engaging IT on management and support until SaaS app(s) become “mission critical” within the organization.  As SaaS and cloud are now becoming more mainstream technologies, IT is regaining their seat at the table to help extend existing policies and controls – ignore this dynamic at your own peril.</li>
<li><strong>Delegating policy enforcement </strong>– relying on individual SaaS administrators to enforce corporate policies for roles and permissions.  Most organizations have access control policies and controls exist for on-premise apps and data, but few think about how to extend them to SaaS and cloud applications prior to deployment, particularly in environments with distributed administration.</li>
<li><strong>Believing in a management ‘silver bullet’</strong> &#8211; assuming that existing on-premise directories (such as Microsoft Active Directory) or identity management tools (including SSO) extend to support all SaaS-related identity challenges.  They don’t.</li>
<li><strong>Creating ‘two sets of rules’</strong> &#8211; treating SaaS governance differently than on-premise applications with regard to user identity and compliance.  Governance frameworks and best practices should consistently apply to applications no matter how they’re delivered.</li>
<li><strong>Failing to create a ‘rearview mirror’ for audit and compliance</strong> &#8211; failure to identify and approach for capturing an audit trail of access, usage, user change and permissions history.  Though delivered by a 3<sup>rd</sup> party, companies are still responsible for implementing and enforcing access control policies, and for demonstrating it at audit time.</li>
<li><strong>Forgetting about compliance reporting</strong> &#8211; wasting 20-30 executive hours each quarter to manually compile reports for internal or external compliance audits.  Forgetting to consider compliance reporting needs up front when evaluating SaaS vendors and overall SaaS/cloud strategy can be painful.</li>
<li><strong>When in doubt, spending more</strong> &#8211; buying unnecessary subscription seats because of a lack of visibility to actual subscriptions and current usage.</li>
</ol>
<p>﻿We&#8217;d be interested in hearing what others are seeing and hearing in these areas as well&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Short Term Trouble, Long Term Gift? (SPY, SSO, SDS, SH, /ES)]]></title>
<link>http://lucidinvesting.wordpress.com/2009/10/30/short-term-trouble-spy-sso-sds-sh-emini/</link>
<pubDate>Sat, 31 Oct 2009 04:15:08 +0000</pubDate>
<dc:creator>Michael J Burns</dc:creator>
<guid>http://lucidinvesting.wordpress.com/2009/10/30/short-term-trouble-spy-sso-sds-sh-emini/</guid>
<description><![CDATA[Sorry about the lack of recent posts, I&#8217;ve been pretty focused on the markets lately. Last wee]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sorry about the lack of recent posts, I&#8217;ve been pretty focused on the markets lately.</p>
<p>Last week the bears broke some technical setups where the bulls had a big upper hand. I started to sell positions at that point and increased my selling this week as the charts got uglier. Thursday was absolutely short covering. Looking at the up/down volume and advance/decline ratio&#8217;s from Wednesday to Friday, you can see an almost symmetrical reversal that means the market was overwhelmingly short, covered and put the shorts back on. This current short setup has a target of $1023.90 on the /ES (E-Mini S&#38;P500 Futures). Let&#8217;s take a look at some charts:</p>
<p><img class="alignleft size-full wp-image-465" title="KillZoneLong" src="http://lucidinvesting.wordpress.com/files/2009/10/killzonelong.jpg" alt="KillZoneLong" width="600" height="343" /></p>
<p>You can see here that we bounced off of our long term downtrend line and today we closed below our nearer term support uptrend. I&#8217;d like to hope that if we close above it things will be fine but I think that is unrealistic. It&#8217;s hard to imagine why the market should be much higher than 1200 considering the long term structural issues that the U.S. is still facing. Even if the dollar continues to fall, we are net importers; so while international corporations may get revenues in stronger currencies, they still have to pay to much for input costs. a weaker dollar would be nice if we were still a manufacturing based economy but we aren&#8217;t. Next Chart.</p>
<p><img class="alignleft size-full wp-image-466" title="HeadShoulders" src="http://lucidinvesting.wordpress.com/files/2009/10/headshoulders.jpg" alt="HeadShoulders" width="600" height="343" /></p>
<p>You can see on this chart that the most recent surge took place on higher volume. However, the volume faded on the way up and picked up steam on the way down which is not a good sign if you&#8217;re a fan of Dow Theory. The good news is we have a long term inverted head and shoulder pattern (I admit I have seen better ones) which could give us support around $970.</p>
<p><img class="alignleft size-full wp-image-467" title="SupportShort" src="http://lucidinvesting.wordpress.com/files/2009/10/supportshort.jpg" alt="SupportShort" width="600" height="343" /></p>
<p>I normally wouldn&#8217;t have given much weight to the H&#38;S pattern (green line of support) but it also coincides with what should be a strong 50% fib retracement at 985. It is also an area where the shorts will be taking profits at their targets.</p>
<p>I will be in a conservative bear mode (and short through SH or SDS if the market somehow manages to rally back above 1065) until we get down below 990 where I will begin going long again. I will also consider a small long position through SSO around 1018-1020 where there is another decent long set-up.</p>
<p>Get your shopping lists ready everyone!</p>
<p>-MJB</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[8AM EST 10/29/09]]></title>
<link>http://workingmansstocktrades.wordpress.com/2009/10/29/8am-est-102909/</link>
<pubDate>Thu, 29 Oct 2009 07:48:20 +0000</pubDate>
<dc:creator>workingmansstocktrades</dc:creator>
<guid>http://workingmansstocktrades.wordpress.com/2009/10/29/8am-est-102909/</guid>
<description><![CDATA[Looking for a retracement day.  We&#8217;ll try and catch the south end of the morning&#8217;s volat]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Looking for a retracement day.  We&#8217;ll try and catch the south end of the morning&#8217;s volatility and look for a 50% retracement.</p>
<p>Place a limit order for 220 shares of SSO at $33.11, with a stop of 1% and a target price of $33.97.  We may have to adjust our target at noon, so be sure to check on direction if it is needed.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Officially 21 ;)]]></title>
<link>http://dowithlove.wordpress.com/2009/10/25/officially-21/</link>
<pubDate>Sun, 25 Oct 2009 22:15:36 +0000</pubDate>
<dc:creator>Sunny</dc:creator>
<guid>http://dowithlove.wordpress.com/2009/10/25/officially-21/</guid>
<description><![CDATA[She&#8217;s finally TWENTY ONE!! yay~~~~ &gt;_&lt; (Guess where we were taking this picture at! haha]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="size-full wp-image-1052  aligncenter" title="diana bday1" src="http://dowithlove.wordpress.com/files/2009/10/diana-bday1.jpg" alt="diana bday1" width="455" height="472" />She&#8217;s finally TWENTY ONE!! yay~~~~ &#62;_&#60;</p>
<p style="text-align:center;"><img style="border:0 initial initial;" title="diana bday2" src="http://dowithlove.wordpress.com/files/2009/10/diana-bday2.jpg?w=292" alt="diana bday2" width="292" height="300" /></p>
<p style="text-align:center;">(Guess where we were taking this picture at! haha)<br />
To celebrate Diana&#8217;s birthday, we went to a french restaurant, Floataway Cafe <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:center;"><img class="size-medium wp-image-1053 alignnone" title="DSC08986-pola" src="http://dowithlove.wordpress.com/files/2009/10/dsc08986-pola.jpg?w=292" alt="DSC08986-pola" width="211" height="216" /><img class="alignnone size-medium wp-image-1054" title="DSC08988-pola" src="http://dowithlove.wordpress.com/files/2009/10/dsc08988-pola.jpg?w=289" alt="DSC08988-pola" width="208" height="216" /> <img class="alignnone size-medium wp-image-1055" title="dianas birthday" src="http://dowithlove.wordpress.com/files/2009/10/dianas-birthday.jpg?w=290" alt="dianas birthday" width="209" height="216" /> <img class="alignnone size-medium wp-image-1056" title="DSC08991-pola01" src="http://dowithlove.wordpress.com/files/2009/10/dsc08991-pola01.jpg?w=293" alt="DSC08991-pola01" width="209" height="216" /> <img class="alignnone size-medium wp-image-1060" title="DSC09017-pola" src="http://dowithlove.wordpress.com/files/2009/10/dsc09017-pola.jpg?w=289" alt="DSC09017-pola" width="208" height="216" /> <img class="alignnone size-medium wp-image-1061" title="DSC09019-pola01" src="http://dowithlove.wordpress.com/files/2009/10/dsc09019-pola01.jpg?w=294" alt="DSC09019-pola01" width="212" height="216" /> <img class="alignnone size-full wp-image-1062" title="diana bday4" src="http://dowithlove.wordpress.com/files/2009/10/diana-bday4.jpg" alt="diana bday4" width="209" height="216" /> <img class="alignnone size-full wp-image-1063" title="DSC08996-pola" src="http://dowithlove.wordpress.com/files/2009/10/dsc08996-pola.jpg" alt="DSC08996-pola" width="209" height="216" /></p>
<p style="text-align:center;">The entrées were so so good and large!<br />
French restaurant.. we were expecting small little portions,<br />
but we were dead full when we were done lol</p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-1066" title="DSC09047-pola" src="http://dowithlove.wordpress.com/files/2009/10/dsc09047-pola.jpg" alt="DSC09047-pola" width="455" height="468" /></p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-1067" title="DSC09048-pola01" src="http://dowithlove.wordpress.com/files/2009/10/dsc09048-pola01.jpg" alt="DSC09048-pola01" width="455" height="464" /></p>
<p style="text-align:center;">I will post some pictures from after dinner party at our place soon!<br />
Oh, I also have a picture of Diana when she officially turned 21 at 12:00am on Oct. 25th.. although I don&#8217;t know if you would like for me to post it on here Diana lol</p>
<h2 style="text-align:center;">HAPPY BIRTHDAY DIANA <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </h2>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Enabling Oracle Single Sign On (OSSO) with OBIEE]]></title>
<link>http://gellio.wordpress.com/2009/10/23/enabling-oracle-single-sign-on-osso-with-obiee/</link>
<pubDate>Fri, 23 Oct 2009 00:07:48 +0000</pubDate>
<dc:creator>nqsserver</dc:creator>
<guid>http://gellio.wordpress.com/2009/10/23/enabling-oracle-single-sign-on-osso-with-obiee/</guid>
<description><![CDATA[In this blog post we will be enabling Oracle Single Sign On for OBIEE. We have already set our autho]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In this blog post we will be enabling Oracle Single Sign On for OBIEE. We have already set our authorisation to align with Oracle Internet Directory (OID), meaning that we can create users within OID that can access OBIEE. We can also assign users to groups through OID as well as set row level security in OID. We will no focus on Authentication using Oracle Single Sign On.</p>
<p>To help us carry out this task, we will be reading chapter 11 of the Oracle Business Intelligence Enterprise Edition Deployment Guide. Chapter 11 is titled &#8220;Enabling Oracle Single Sign On for Oracle Business Intelligence&#8221;. The deployment guide outlines the following steps which are required to enable Oracle Single Sign On with OBIEE.</p>
<ul>
<li style="list-style:none;"></li>
<li>Register Oracle BI as a partner application to the Oracle Single Sign On Server</li>
<li>Configure Oracle BI for SSO</li>
<li>Configure BI Presentation Services to Use the Impersonate User</li>
<li>Configure BI Presentation Services to Operate in the SSO Environment</li>
</ul>
<p><!--more--><br />
<span style="text-decoration:underline;"><strong>Register Oracle BI as a partner application to Oracle Single Sign On Server</strong></span></p>
<p>Registering Oracle BI with OSSO is carried out via a command line entry. Before carrying out the command line, we need to set the ORACLE_HOME as follows:</p>
<p>export ORACLE_HOME=/app/oracle/oas</p>
<p>Following the Deployment Guide, the entry I carried out for my environment is as follows:</p>
<p>./ssoreg.sh -oracle_home_path /app/oracle/oas -config_mod_osso TRUE -site_name gelliohost.gelliodomain.com:7777 -remote_midtier -config_file /app/oracle/oas/Apache/Apache/conf/osso/biosso.conf -mod_osso_url http://gelliohost.gelliodomain.com:7777</p>
<p>After running the above entry, you should receive a successful return message as illustrated in Figure 1 below.</p>
<p><img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-22-at-21-35-47.png?w=480&#038;h=304" alt="Screen shot 2009-10-22 at 21.35.47.png" width="480" height="304" /></p>
<p><strong>Figure 1</strong></p>
<p><strong><span style="text-decoration:underline;">Configure Oracle BI for SSO</span></strong></p>
<p>The deployment guide first asks us to copy the biosso.conf file to the directory Oracle_HOME/Apache/Apache/conf/osso. In our case this file already exists.</p>
<p>Our next step is to edit the file &#8216;mod_osso.conf&#8217; in Oracle_HOME/Apache/Apache/conf. We added the following line to this file:</p>
<p>OssoConfigFile /app/oracle/oas/Apache/Apache/conf/osso/biosso.conf</p>
<p>This can be seen in Figure 2 below:</p>
<p><img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-22-at-22-41-56.png?w=480&#038;h=305" alt="Screen shot 2009-10-22 at 22.41.56.png" width="480" height="305" /></p>
<p><strong>Figure 2</strong></p>
<p>The next step is to add the the following lines into the file:</p>
<p>&#60;Location /analytics&#62;</p>
<p>Header unset Pragma</p>
<p>OssoSendCacheHeaders off</p>
<p>AuthType Basic</p>
<p>require valid-user</p>
<p>&#60;Location&#62;</p>
<p>This is illustrated in Figure 3 below.</p>
<p><img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-22-at-22-42-07.png?w=480&#038;h=304" alt="Screen shot 2009-10-22 at 22.42.07.png" width="480" height="304" /></p>
<p><strong>Figure 3</strong></p>
<p>The deployment guide then asks us to uncomment the line:</p>
<p>#include &#8220;Oracle_Home/Apache/Apache/conf/mod_osso.conf&#8221;</p>
<p>in the file httpd.conf. Upon inspection of this file it was found that the line was already commented out.</p>
<p>We then restarted the Application Server.</p>
<p><strong><span style="text-decoration:underline;">Configuring BI Presentation Services to Use the Impersonator User</span></strong></p>
<p>The first step is to create a new user in the RPD to be used as the Impersonator User. Go into the administration tool and then go into Security Manger. Create a new user and call the user &#8216;Impersonator&#8217;. Provide a password for the new user, in my case P4ssw0rd, and ensure that the new user is assigned to the Administrator group. See Figure 4 below.</p>
<p><img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-22-at-23-10-05.png?w=358&#038;h=479" alt="Screen shot 2009-10-22 at 23.10.05.png" width="358" height="479" /></p>
<p><strong>Figure 4</strong></p>
<p>We now need to make some changes using cryptotools. Before running cryptotools, there are a couple of things that we first need to carry out to avoid cryptotools returning an error. The first is to update the LD_LIBRARY_PATH to include the web/bin directory in OracleBI. To do this I used the following command:</p>
<p>export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/app/oracle/obi/OracleBI/web/bin</p>
<p>The next step is to provide security permissions to a file that is required by cryptotools. Without running the following command, you will receive a security error if running Oracle Enterprise Linux 5.</p>
<p>chcon -t textrel_shlib_t &#8216;/app/oracle/obi/OracleBI/web/bin/libsamemoryallocator8.so&#8217;</p>
<p>To run cryptotools, we run the command below from the /app/oracle/obi/OracleBI/web/bin</p>
<p>./crpytotools credstore -add -infile /app/oracle/obi/OracleBIData/web/config/credentialstore.xml</p>
<p>The following attributes were provided to this program:</p>
<p>Credential Alias: impersonation</p>
<p>Username: Impersonator</p>
<p>Password: P4ssw0rd</p>
<p>Do you want to encrpyt the password: y</p>
<p>Passphrase for encryption: P4ssw0rd</p>
<p>Do you want to write the passphrase to the xml: n</p>
<p><img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-22-at-23-36-40.png?w=480&#038;h=304" alt="Screen shot 2009-10-22 at 23.36.40.png" width="480" height="304" /></p>
<p><strong>Figure 5</strong></p>
<p><strong>Configuring Oracle BI Presentation Services to Identify the Credential Store and Decryption Passphrase</strong></p>
<p>Our next step is to modify the instanceconfig.xml file located in /app/oracle/obi/OracleBIData/web/config</p>
<p>Following the Deployment Guide, we made 2 new entries in the instanceconfig.xml. The first entry relates to the credential store:</p>
<p>&#60;CredentialStore&#62;</p>
<p>&#60;CredentialStorage type=&#8221;file&#8221; path=&#8221;/app/oracle/obi/OracleBIData/web/config/credentialstore.xml&#8221; passphrase=&#8221;P4ssw0rd&#8221;/&#62;</p>
<p>&#60;/CredentialStore&#62;</p>
<p>The second entry relates to the Authorisation tag for Single Sign On. The entry for us was:</p>
<p>&#60;Auth&#62;</p>
<p>&#60;SSO enabled=&#8221;true&#8221;&#62;</p>
<p>&#60;ParamList&#62;</p>
<p>&#60;Param name=&#8221;IMPERSONATE&#8221; source=&#8221;serverVariable&#8221; nameInSource=&#8221;REMOTE_USER&#8221;/&#62;</p>
<p>&#60;/ParamList&#62;</p>
<p>&#60;LogoffUrl&#62;</p>
<p>http://gelliohost.gelliodomain.com:7777/pls/orasso/orasso.wwsso_app_admin.ls_logout?p_done_url=http%3A%2F%2Fgelliohost.gelliodomain.com:7777%2Fanalytics%2F</p>
<p>&#60;/LogoffUrl&#62;</p>
<p>&#60;LogonUrl&#62;</p>
<p>http://gelliohost.gelliodomain.com:7777/pls/orasso/orasso.wwsso_app_admin.ls_login</p>
<p>&#60;/LogonUrl&#62;</p>
<p>&#60;/SSO&#62;</p>
<p>&#60;/Auth&#62;</p>
<p>
<img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-26-at-15-37-13.png?w=480&#038;h=121" width="480" height="121" alt="Screen shot 2009-10-26 at 15.37.13.png" /></p>
<p><b>Figure 6</b></p>
<p>Now if we we go to our OBIEE url, in my case http://gelliohost.gelliodomain.com:7777/analytics, we should be redirected to the single-sign on login screen as illustrated in Figure 7 below.</p>
<p>
<img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-26-at-15-39-54.png?w=480&#038;h=232" width="480" height="232" alt="Screen shot 2009-10-26 at 15.39.54.png" /></p>
<p><b>Figure 7</b></p>
<p>We should still be able to log in using our OID users, for example, user_1 in our case.</p>
<p>
<img src="http://gellio.files.wordpress.com/2009/10/screen-shot-2009-10-26-at-15-41-03.png?w=480&#038;h=292" width="480" height="292" alt="Screen shot 2009-10-26 at 15.41.03.png" /></p>
<p><b>Figure 8</b></p>
<p>We can see in Figure 8 that we are now logged in as user_1. When we click on Log Out, we should see the single-sign on logout page as illustrated in Figure 9.</p>
<p>Once last note: as we now have our authentication and authorisation for security handled by both Oracle Internet Directory and Oracle Single Sign On, we will no longer be able to log into OBIEE with an existing user in the Repository. ie, We can not log into the Dashboards with the Administrator user through the Single Sign On login page. In order to maintain the Dashboards, there is a method of logging into the Dashboards using URL parameters. The following URL allows me to still log into the dashboards using the Administrator user.</p>
<p>http://gelliohost.gelliodomain.com:7777/analytics/saw.dll?Dashboard&#38;NQuser=Administrator&#38;NQPassword=P4ssw0rd</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Three Key SaaS Management Challenges]]></title>
<link>http://conformity.wordpress.com/2009/10/15/the-three-key-saas-management-challenges/</link>
<pubDate>Fri, 16 Oct 2009 05:06:01 +0000</pubDate>
<dc:creator>Scott Bils</dc:creator>
<guid>http://conformity.wordpress.com/2009/10/15/the-three-key-saas-management-challenges/</guid>
<description><![CDATA[We find very few people today that would dispute the notion that SaaS and cloud applications have be]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We find very few people today that would dispute the notion that SaaS and cloud applications have become mainstream technologies in SMB and the midmarket.  The challenges for the SaaS industry are also changing as a result.   With the battle over the viability of the on-demand model largely won,  the questions are now turning to the operational and IT management  implications of a SaaS-centric environment.</p>
<p>Our customers and prospects here at <a href="http://www.conformity-inc.com" target="_blank">Conformity</a> are forward-thinking organizations that are aggressively leveraging the cloud delivery model for multiple, if not a majority of their business applications.  Given our strong  belief in the SaaS and cloud model, we believe that they are a good indicator of trends we&#8217;ll shortly be seeing more broadly in the market.    All of these organizations are struggling with what their management processes and approaches look like in a purely &#8216;on-demand&#8217; model.   Among these multi-SaaS organizations we&#8217;re consistently seeing three general problem domains:</p>
<ol>
<li><strong>User provisioning and administration</strong> &#8211; as they&#8217;re optimized for different problem sets, all major SaaS applications have fundamentally different ways of thinking about users, roles, profiles and permissions.  Organizations have tended to have separate business administrators for say <a href="http://www.salesforce.com" target="_blank">Salesforce.com</a>, <a href="http://www.netsuite.com" target="_blank">NetSuite</a> and <a href="http://www.successfactors.com" target="_blank">SuccessFactors</a>.  Each of these admins as a result has had to develop a separate model of their organization, deparments and role structures, with the result being that various siloed identity stores have been created across the organization.  These stores are are all independent from each other and from on-premise directory services (Microsoft AD) and identity management solutions.  Normalizing these identity stores in support of centralized, streamlined administration and reporting is a common theme we&#8217;re hearing, and what what our solution here at <a href="http://www.conformity-inc.com" target="_blank">Conformity</a> is addressing.</li>
<li><strong>Single sign-on (SSO) / authentication</strong> &#8211; another common challenge we&#8217;re hearing is the desire to provide end-users the ability to access multiple SaaS applications (and often on-prem apps as well) using a single set of credentials, both for end-user convenience and security purposes.  This is the problem set being  addressed by vendors such as <a href="http://www.pingidentity.com" target="_blank">Ping Identity</a>, <a href="http://www.myonelogin.com" target="_blank">Tricipher</a> and <a href="http://www.symplified.com" target="_blank">Symplified</a>.</li>
<li><strong>Data integration &#8211; </strong>the final theme we&#8217;re hearing is around cross-application data integration, and the desire to integrate multiple &#8216;best of breed&#8217; applications across a common business processes or workflow.  This issue set consists of integration of cloud apps to both cloud and on-premise applications.  <strong> </strong>This is the domain being addressed by vendors such as <a href="http://www.castiron.com" target="_blank">Cast Iron Systems</a>, <a href="http://www.pervasive.com" target="_blank">Pervasive</a> and <a href="http://www.boomi.com" target="_blank">Boomi</a>.</li>
</ol>
<p>While the data integation challenge is fairly distinct from the first two challenges, significant market confusion exists around provisioning and SSO, and whether a solution in one addresses both areas.  The short answer is no &#8211; the very simple analogy we use is that SSO tells you if you should let the visitor knocking on the front door into the house &#8211; provisioning and permissions management provides guardrails around what they can and cannot do once they&#8217;re in the front door.  Both are needed, but complementary capabilities &#8211; more to come on this&#8230;.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Performance and Volatility: an Inverse Relationship ]]></title>
<link>http://intelledgement.wordpress.com/2009/10/14/performance-and-volatility-an-inverse-relationship/</link>
<pubDate>Wed, 14 Oct 2009 14:14:40 +0000</pubDate>
<dc:creator>intelledgement</dc:creator>
<guid>http://intelledgement.wordpress.com/2009/10/14/performance-and-volatility-an-inverse-relationship/</guid>
<description><![CDATA[Volatility in the ebb and flow of the S&amp;P 500’s valuations declined for the third straight quart]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Volatility in the ebb and flow of the S&#38;P 500’s valuations declined for the third straight quarter in 3Q09. The average daily change in the value of the S&#38;P 500 index for 3Q09 was ±0.8%, down sequentially from ±1.3% in 2Q09, from ±2.0% in 1Q09, and a nightmarish ±3.3%—the highest level of volatility in a quarter since the inception of the S&#38;P 500 index—in 4Q08 (as discussed in the previous articles, <a rel="nofollow" href="http://www.fool.com/investing/general/2009/04/24/this-volatility-is-off-the-charts.aspx" target="_blank">This Volatility is Off the Charts!</a> in April 2009 and <a rel="nofollow" href="http://seekingalpha.com/article/146926-not-your-father-s-market-volatility" target="_blank">Not Your Father’s Market Volatility</a> in July 2009).</p>
<div>For the entire year, 2009 at ±1.3% overall is still on track to be the second most volatile year on record—2008 set a new record at ±1.7%—but if the calming trend continues through 4Q09, we may drop below the pre-2008 record ±1.2% posted in 2002. Still, at this point we remain 118% more volatile than “normal” (namely, the all-time average daily change in the value of the S&#38;P 500 index, which is ±0.6%).</div>
<div><img class="aligncenter size-large wp-image-792" title="1950-3Q09_s&#38;p_volatility" src="http://intelledgement.wordpress.com/files/2009/10/1950-3q09_sp_volatility5.jpg?w=1024" alt="1950-3Q09_s&#38;p_volatility" width="670" height="333" /></div>
<div>
<p>Why do we care? Well, if you are a short-term trader, obviously more volatility is a good thing, because the opportunities for you to profit are larger and more frequent. But it turns out that if you are a long-term investor, volatility is bad news. In general, higher volatility is associated with a lower return-on-investment. Indeed, the big peaks in the above chart—when the S&#38;P 500 experienced unprecedented volatility—were all negative ROI years: 1974 -30%, 2002 -23%, and 2008 -38%. In fact, not merely negative, but the worst three years in the history of the S&#38;P 500 index.</p>
<p>But wait, there’s more! It isn’t just peak volatility that hurts. In general, the higher the volatility, the worse the ROI. Check out this chart measuring performance at various levels of volatility:</p>
</div>
<div><img class="aligncenter size-large wp-image-793" title="ROIvsVolatility" src="http://intelledgement.wordpress.com/files/2009/10/roivsvolatility.jpg?w=1024" alt="ROIvsVolatility" width="607" height="311" /></div>
<div>
<p>To build this chart, we calculated the ROI for the S&#38;P 500 index for each year since 1950, and then sorted those years by the average daily change in the S&#38;P 500 index—up or down. Clearly if you are a long-term investor seeking a 10%-or-better annual ROI, you want to root for average daily volatility around ±0.6% or less. In years when average daily volatility has exceeded ±0.8%, the S&#38;P 500 has a negative ROI, including those three major meltdown years.</p>
<p>We also did a little vector analysis. Since 1950, there were 29 years in which volatility declined from the prior year and in 18 of those (62% of the time), performance improved compared to the prior year. There were 30 years in which volatility increased from the prior year, and in 24 of those (80% of the time) performance was worse than the prior year.</p>
<p>We are not saying that volatility causes market declines; in fact, it presumably works the other way round. But if you are a long term investor and detect a rise in volatility, be prepared for an increased probability of sub-par performance by the stock market.</p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Qusaj Husseins livvakt med familj får stanna i Sverige med PUT]]></title>
<link>http://frianyheter.wordpress.com/2009/10/08/qusaj-husseins-livvakt-med-familj-far-stanna-i-sverige-med-put/</link>
<pubDate>Thu, 08 Oct 2009 15:22:19 +0000</pubDate>
<dc:creator>Fria Nyheter Skåne</dc:creator>
<guid>http://frianyheter.wordpress.com/2009/10/08/qusaj-husseins-livvakt-med-familj-far-stanna-i-sverige-med-put/</guid>
<description><![CDATA[Han var livvakt år Saddam Husseins son Qusaj. Nu har mannen och hans familj, som bor i småländska Ås]]></description>
<content:encoded><![CDATA[Han var livvakt år Saddam Husseins son Qusaj. Nu har mannen och hans familj, som bor i småländska Ås]]></content:encoded>
</item>
<item>
<title><![CDATA[Nochwas über Singapur .. (1)]]></title>
<link>http://sibylleundthomas2009.wordpress.com/2009/10/03/nochwas-uber-singapur-1/</link>
<pubDate>Sat, 03 Oct 2009 07:27:41 +0000</pubDate>
<dc:creator>sibylleundthomas</dc:creator>
<guid>http://sibylleundthomas2009.wordpress.com/2009/10/03/nochwas-uber-singapur-1/</guid>
<description><![CDATA[Wenn man abends unterwegs ist, frägt man sich: Schläft die Stadt eigentlich mal? Aber bei Heimfahren]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wenn man abends unterwegs ist, frägt man sich: Schläft die Stadt eigentlich mal? Aber bei Heimfahren stellt man dann so 20 vor Zwölf fest, daß man die letzte Bahn grad‘ noch erreicht (in Bärlieen würden die länger fahren .. aber da ist’s auch nicht so warm ..! (-;)<!--more--></p>
<p>Im Bus hat man gleich nach dem Einsteigen den Eindruck, daß die Gefrierfleisch aus einem machen wollen. Wenn‘s dann an’s Aussteigen geht, freut man sich eigentlich wieder auf die Wärme! .. hmm; .. Ying &#38; Yang .. bei all den Chinesen hier?</p>
<p>Die ‚Völkervielfalt‘ hier ist irre:</p>
<p>.. Inder (einige Frauen tragen Sari .. das hat was ..; die jungen Frauen sind teilweise unglaublich hübsch, die älteren .. teilweise richtige ‚Mamas‘ (.. ich hätte da nix zu lachen .. !(-;)</p>
<p>.. Chinesen (tendenziell die Mehrheit); sie sind halt wie sie sind .. man guckt ned wirklich rein!</p>
<p>.. Malayen, Phillipinen, Indonesier, Engländer (ziemlich viel!), Aussies und n’Haufen Expats aus .. einfach von überall her (auch Uli und Jutta aus Malsch hen se nei‘glasse!)!</p>
<p>.. (Achtung: Jetzt auf wird’s .. bla, blubb .. halbakademisch) Wenn man an die ‚Deutsch- Identitätsdiskussion‘ zuhause denkt, .. ich glaube, daß Singapur-Staatsbürger wohl nur drüber lächeln würden .. Vielfalt ist hier vielleicht (vielleicht?!) Programm? .. auf jeden Fall ist Singapur eine ‚Integrationsmaschine‘ (Nationalitäten, Religionen (ohne ‚Krach‘!), Kulturen, ..)<a href="http://sibylleundthomas2009.wordpress.com/wp-admin/#_ftn1">[1]</a> . Auch hier ist man wohl auf Zuwanderung angewiesen; auch Singapur wird immer älter.</p>
<p>Die Stadt hier ist ‚phänomenal‘ organisiert: Die MRT (Mass Rapid Transportation .. = S-Bahn) ist gut ausgebaut, schnell, nicht ganz so kalt, .. man kauft sich eine Chipkarte mit Guthaben, hält die Chipkarte (die im Geldbeutel steckenbleibt .. das fasziniert mich Landei besonders!) im Einsteige- und Ausstiegsbahnhof an ein Lesegerät und (abrakadabra!) der Betrag wird eingezogen .. und teuer ist’s auch nicht (.. die Stuttgarter S-Bahn kostet etwa 3-5 Mal soviel! .. und so hübsche Inderinnen gibt’s dort auch nur wenige .. (-:)</p>
<p>Was ist ist bei uns gelaufen? Am Donnerstag sind wir gegen 18h von Bintan zurückgekommen und gingen abends in ein traumhaftes Restaurant ‚Indochine‘ mit Terasse am Boat Quay zum Geburtstagsessen aus. .. traumhaft! Warmer Abend, sehr gutes Essen, guter Wein .. wirklich wunderschön! Uli hat&#8217;s gefallen &#8211; und das ist wichtig!</p>
<p>Am Freitag ging ich mit Uli ins MANN+HUMMEL Büro (.. mal gucken, ob der da auch was Ordentliches schafft .. er tut’s!). Ich hatte ‚Bürotag‘, .. ja, (Kommentare sind nun nicht erforderlich .. (-:)!!) ich habe wirklich was g’schafft.</p>
<p>Am Abend (.. man gönnt sich ja sonst nichts!) waren wir in ‚Esplanande Concert Hall‘ (die Leute nennen diesen (Nobel)komplex ‚Durian‘ (Stinkfrucht .. damit wird auf die Architektur hingewiesen, sieht nämlich aus wie eben diese Frucht!) bei Singapore Symphony Orchestra. .. sehr schön: Mozart Klavierkonzert – die Pianistin war eine typische (ausgehungerte!) Ostküstenamerikanerin. (.. abber g’schbielt hat se guud!) und Bruckner (.. sehr schön, .. n’Mordskrach!).</p>
<p><img class="alignnone size-medium wp-image-41" title="IMG_4516" src="http://sibylleundthomas2009.wordpress.com/files/2009/10/img_4516.jpg?w=300" alt="IMG_4516" width="300" height="225" /></p>
<p><img class="alignnone size-medium wp-image-40" title="IMG_4512" src="http://sibylleundthomas2009.wordpress.com/files/2009/10/img_4512.jpg?w=300" alt="IMG_4512" width="300" height="225" /></p>
<p>Die Konzerthalle ist (.. es ist ja nicht, wie bei armen Leuten hier!) vom Feinsten, mit Orgel, .. Man geht hier auch wohl nicht ganz so schick ins Konzert (.. alle Kleidungsstile ..von Chucks bis zum Abendkleid) .. hat auch was!</p>
<p><img class="alignnone size-medium wp-image-42" title="IMG_4508" src="http://sibylleundthomas2009.wordpress.com/files/2009/10/img_4508.jpg?w=300" alt="IMG_4508" width="300" height="225" /></p>
<p>Heute Vormittag haben sich dann Lisa und Julia für eine Woche nach Tioman/ Malaysia verabschiedet (mit Bus und Fähre). Ihr Zwei, danke für Eure Gesellschaft es war sehr nett und angenehm (bei Ebay sagt man dann: Jederzeit wieder! (:-) .. und jetzt hängen wir so rum .. Wochenende und Urlaub!</p>
<p>Ach so .., laufen war ich heute auch noch. Das gibt aber noch was Separates über Laufen in Südostasien (.. bei derre Hitz‘ und schwere Beine nach spätestens 20 Minuten ..!).</p>
<p>[Thomas]</p>
<hr size="1" /><a href="http://sibylleundthomas2009.wordpress.com/wp-admin/#_ftnref1">[1]</a> .. ich weiss , der Staat hält hier ‚deutlich‘ den Daumen drauf!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fight Poverty With Passion]]></title>
<link>http://hawaiihabitatforhumanity.wordpress.com/2009/09/25/108/</link>
<pubDate>Fri, 25 Sep 2009 21:19:37 +0000</pubDate>
<dc:creator>Hawaii Habitat for Humanity</dc:creator>
<guid>http://hawaiihabitatforhumanity.wordpress.com/2009/09/25/108/</guid>
<description><![CDATA[&#8220;Your pay will be low; the conditions of your labor often will be difficult.  But you will hav]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://hawaiihabitatforhumanity.wordpress.com/files/2009/09/americorpvista.jpg"><img class="aligncenter size-full wp-image-110" title="Fight Poverty with Passion" src="http://hawaiihabitatforhumanity.wordpress.com/files/2009/09/americorpvista.jpg" alt="Fight Poverty with Passion" width="188" height="62" /></a></p>
<p style="text-align:center;"><strong>&#8220;Your pay will be low; the conditions of your labor often will be difficult.  But you will have the satisfaction of leading a great national effort and you will have the ultimate reward which comes to those who serve their fellow citizens.&#8221;</strong></p>
<p style="text-align:center;">- President Johnson, addressing the first 20 VISTA members who began their service in January, 1965.</p>
<p style="text-align:center;">
<p>Hawaii Habitat for Humanity would like to extend a warm welcome to our two new AmeriCorps VISTAs, Amanda Johnson and Liz Bowen.</p>
<p><a href="http://www.americorps.gov" target="_blank">Volunteers in Service to America</a>, (VISTA) members build capacity in nonprofit organizations and communities to help bring individuals and communities out of poverty.  VISTA members dedicate at least one year of service to non-profit work while completely immersing themselves in their communities.</p>
<p><a href="http://hawaiihabitatforhumanity.wordpress.com/files/2009/09/profile-for-website.jpg"><img class="alignright size-medium wp-image-113" title="Profile for Website" src="http://hawaiihabitatforhumanity.wordpress.com/files/2009/09/profile-for-website.jpg?w=189" alt="Profile for Website" width="189" height="300" /></a>Amanda Johnson will be carrying out her one year commitment as the Research and Training Associate for the State Support Organization.  Amanda&#8217;s background in advocacy for non-profit organizations includes serving as the Action Coordinator for the Student Global AIDS Campaign at her alma mater, interning at Project 40/40, a branch organization of Clinton&#8217;s HIV/AIDS Initiative (CHAI), and volunteering her time with several other campus organizations.   Her plans for Hawaii Habitat for Humanity include setting up affiliate, volunteer, and staff learning opportunities based on assessments of the affiliates&#8217; interests and  transforming the State Support Office into an information hub that can keep the public up-to-date on Hawaii&#8217;s seven home-building affiliates.</p>
<p><a href="http://hawaiihabitatforhumanity.wordpress.com/files/2009/09/liz.jpg"><img class="alignleft size-medium wp-image-117" title="Liz" src="http://hawaiihabitatforhumanity.wordpress.com/files/2009/09/liz.jpg?w=256" alt="Liz" width="256" height="300" /></a></p>
<p>Liz Bowen, LEED-AP, will be carrying out her AmeriCorps year as the Green Building Associate for the State Support Organization.  Liz&#8217;s background in sustainability consulting includes working with developers, engineers, architects, business owners, and governments in achieving realistic and accountable sustainability targets.  Her plans for Hawaii Habitat include developing affordable green housing workshops and training programs for the affiliates, energy modeling to determine possible modifications for highest comfort and efficiency, securing cost-effective green materials, and researching funding and partnerships.</p>
<div><span style="font-family:Verdana, sans-serif;">Hawaii Habitat is thrilled to have Amanda and Liz join our staff for their AmeriCorps year.  To view bios of Amanda and Liz, see our &#8220;About Us&#8221; page.</span></div>
<div><span style="font-family:Verdana, sans-serif;"><br />
</span></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What Open ID is all about]]></title>
<link>http://blog.hypios.com/2009/09/25/open-id-and-hypios/</link>
<pubDate>Fri, 25 Sep 2009 17:58:34 +0000</pubDate>
<dc:creator>kristen.koch</dc:creator>
<guid>http://blog.hypios.com/2009/09/25/open-id-and-hypios/</guid>
<description><![CDATA[When we first invited people to become Solvers on hypios, we were essentially asking them to create ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.flickr.com/photos/explode/335924426/"><img class="aligncenter" title="passport photos" src="http://farm1.static.flickr.com/125/335924426_d92365d680.jpg" alt="" width="500" height="333" /></a></p>
<p>When we first invited people to become Solvers on hypios, we were essentially asking them to create new online identities.  We asked them to fill in personal details like their name, occupation, location, and interests.  We gave them the option of adding a picture or avatar, and finally (politely) requested that they share their newly-created profiles with other Solvers by tweaking their privacy settings.  Now, we&#8217;ve simplified things by adding a Facebook Connect button.  <strong>You can join hypios using the Facebook profile you already have.</strong></p>
<p><strong>Having trouble keeping track of all your usernames and passwords?</strong></p>
<p><span style="background-color:#ffffff;">It quickly gets annoying </span>to have to fill out a new form with your name and hometown each time you want to join a site<span style="background-color:#ffffff;">.</span> Once you&#8217;re signed up, you have to remember which username and password combination you&#8217;ve used for each network.  In theory, this protects your privacy.  Social networking sites keep your data to themselves, in their own walled gardens, safeguarding your personal details.  In practice, this can be frustrating.  You may have befriended your colleagues on Facebook, but if you decide you want to contact them through Linked In instead, you all have to create separate Linked In profiles and reconnect through those pages.  You also have to deal with the etiquette of different networks.  As Patty Seybold notes in an <a id="u0jc" style="color:#551a8b;" title="Patty Seybold on the Gmail outage" href="http://outsideinnovation.blogs.com/pseybold/2009/09/when-gmail-went-down-for-a-couple-of-hours-this-week-i-was-annoyed-but-not-distressed-as-a-small-business-owner-i-rely-on.html">Outside Innovation post</a>, an executive who never checks his company email may reply instantly to casual messages sent via Facebook, moving business onto supposedly social platforms.</p>
<p>This poses an obvious problem for companies like hypios, whose platform is based on a social network of Solvers.  According to a recent <a id="yztw" style="color:#551a8b;" title="Alex Korth on the web of identities" href="http://www.readwriteweb.com/archives/web_of_identities_making_machine-accessible_people_data.php">ReadWriteWeb post</a> by Alex Korth, users&#8217; most significant issues lay in having to sign up for multiple profiles, re-enter and synchronize personal data, and their inability to export this data (even though it was personal information).  hypios&#8217; success as a marketplace for solutions depends on our ability to broadcast problems to a wide network of Solvers.  The more Solvers we can recruit, the better the chances that we can help Seekers find the solutions they need.  If Solvers can join using existing profiles, they can also import the social networks they&#8217;ve built with these profiles.</p>
<p><strong>How openID standards can make your identity portable</strong></p>
<p>Fortunately, online identities are becoming more and more portable, thanks to open ID initiatives.  <a id="ym5e" style="color:#551a8b;" title="About OpenID" href="http://openid.net/get-an-openid/what-is-openid/">OpenID standards</a> allow you to create <strong>one account for several sites.</strong> The ID can come from an email account (on Google or AOL, for example), a social network profile (your Facebook or myspace account), or another <a id="sk.3" style="color:#551a8b;" title="Single sign-on" href="http://en.wikipedia.org/wiki/Single_sign_on">single sign-on</a> (SSO) provider.  You sign in by giving your password to the ID provider, who then confirms your identity to a website or application.  For example, if you want to use your Facebook account to log in to the hypios network, <strong>hypios will never see your password.</strong> Instead, Facebook checks your password and confirms your identity to hypios, keeping your account secure.</p>
<p>Some application providers have also become ID providers, namely <a id="v7fb" style="color:#551a8b;" title="Google Friend Connect" href="http://googleblog.blogspot.com/2008/12/google-friend-connect-now-available.html">Google</a> and <a id="g30l" style="color:#551a8b;" title="Facebook Connect" href="http://blog.facebook.com/blog.php?post=41735647130">Facebook</a>.  Last December, both companies launched &#8216;Friend Connect&#8217; features, which allow users to log in to different websites using previously-created identities.  However, as blogger John McCrea pointed out in his <a id="zro8" style="color:#551a8b;" title="John McCrea on friend connect launches" href="http://therealmccrea.com/2008/12/04/birth-of-the-social-web-facebook-connect-and-google-friend-connect-now-available-to-all/">post about the launches</a> , Google&#8217;s connect feature is built on open-source technology, while Facebook&#8217;s uses its own proprietary sources.  And while Facebook initially focused on integrating with major sites like Digg, Google promised to add a social component to any and every website by making it easy to cut-and-paste its code.</p>
<p><a href="http://www.flickr.com/photos/arkangel/175403291/"><img class="aligncenter" title="password pen" src="http://farm1.static.flickr.com/62/175403291_ee4c9a2cc4.jpg" alt="" width="500" height="375" /></a></p>
<p><strong>Who can you trust with your identity?</strong></p>
<p>Of course, all of this depends on your trusting a provider with your personal information in the first place.  There are privacy, security, and practical concerns:</p>
<ul>
<li>One irate former Facebook user, Leif Harmsen, told a <a id="zvrk" style="color:#551a8b;" title="Virginia Heffernan on the supposed &#34;Facebook Exodus&#34;" href="http://www.nytimes.com/2009/08/30/magazine/30FOB-medium-t.html">New York Times blogger</a> that &#8220;Facebook does everything to make you more dependent,&#8221; such that &#8220;it is not &#8216;your&#8217; Facebook profile.  It is Facebook&#8217;s profile about you.&#8221;  In fact, Facebook ended its <a id="r01p" style="color:#551a8b;" title="Facebook Beacon" href="http://en.wikipedia.org/wiki/Facebook_Beacon">Beacon</a> program after users complained that purchases they&#8217;d made on partner sites were automatically posted as &#8217;stories&#8217; in their Facebook profiles.</li>
<li>Besides concerns over commercialization of personal information, there are security worries.  Just as an OpenID provides users with access to multiple sites, it gives hackers the same freedom.</li>
<li>More practically, if an ID provider service goes down, users will be unable to sign on to any of the sites at which they use their IDs.</li>
</ul>
<p><strong>Why &#8216;open&#8217; ID doesn&#8217;t mean &#8216;open to the whole Internet&#8217;</strong></p>
<p>We think it&#8217;s important to remember that having an OpenID doesn&#8217;t mean that your profile becomes more open, though.  (Even if Facebook is encouraging its users to make some elements of their profiles <a id="vmad" style="color:#551a8b;" title="TechCrunch on Facebook's privacy policy" href="http://www.techcrunch.com/2009/07/01/the-looming-facebook-privacy-fiasco/">open to everyone</a> on the Internet.)  Though more and more websites will integrate social networks, <strong>ID providers will only reveal the details you&#8217;ve chosen to give out.</strong> It&#8217;s the same information, just displayed on more pages around the Internet.</p>
<p>As Alex Korth of ReadWriteWeb points out, however, &#8216;open&#8217; IDs may eventually lead to interoperable IDs and a &#8216;web of identities&#8217; much like the &#8216;web of data&#8217; that will form the semantic web.  Just as data will point to other data with URIs, social connections will point to each other through OpenIDs.  Depending on how much information our friends share, a typical search query on the web of identities could poll social connections&#8217; favorite books or vacation destinations by looking at purchase histories or status updates.</p>
<p>It could also help Solvers use each other as resources, whether by polling connections about the best new textbooks or soliciting advice on a scientific problem from like-minded people.  At the very least, it could help Solvers find others who have worked on similar problems or have matching interests.</p>
<p>Given our interest in the semantic web, we think this could be a really exciting way to connect with people.  No matter what ID provider you choose or how you use your online identity, we hope that openID integration will make it easier for you to become part of our network.</p>
<p>Photos from <a href="http://www.flickr.com/photos/explode/">mandamonium </a>and <a href="http://www.flickr.com/photos/arkangel/">Arkangel </a>on Flickr.</p>
<p>Share this post! <a style="margin-right:10px;" href="http://del.icio.us/post?url=http://blog.hypios.com/2009/09/25/open-id-and-hypios/;title=What Open ID is all about"><img title="del.icio.us:What Open ID is all about" src="http://sunburntkamel.wordpress.com/files/2006/11/delicious.gif" alt="add to del.icio.us" /></a><a style="margin-right:10px;" href="http://digg.com/submit?phase=2&#38;url=http://blog.hypios.com/2009/09/25/open-id-and-hypios/"><img title="Digg it:What Open ID is all about" src="http://sunburntkamel.wordpress.com/files/2006/11/digg.gif" alt="Digg it" /></a><a style="margin-right:10px;" href="http://www.stumbleupon.com/submit?url=http://blog.hypios.com/2009/09/25/open-id-and-hypios/;title=What Open ID is all about"><img title="Stumble it:What Open ID is all about" src="http://sunburntkamel.wordpress.com/files/2006/11/stumbleit.gif" alt="Stumble It!" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How much security do you need?]]></title>
<link>http://johnschuller.wordpress.com/2009/09/24/how-much-security-do-you-need/</link>
<pubDate>Thu, 24 Sep 2009 21:43:18 +0000</pubDate>
<dc:creator>johnschuller</dc:creator>
<guid>http://johnschuller.wordpress.com/2009/09/24/how-much-security-do-you-need/</guid>
<description><![CDATA[As you are already aware, Central Desktop is a leader in the SaaS arena when it comes to security. C]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>As you are already aware, Central Desktop is a leader in the SaaS arena when it comes to security. Central Desktop partners with Alchemy Communications, Latisys Data Center, Akamai, and McAfee to provide its customers and partners with state-of-the-art perimeter, network, server, application and data security to ensure privacy and availability. McAfee runs a daily security test on Central Desktop &#8211; you can read the results <a href="https://www.mcafeesecure.com/RatingVerify?ref=www.centraldesktop.com" target="_blank">here</a> anytime.</p>
<p>Our <a href="http://www.centraldesktop.com/security" target="_blank">Security Page</a> gives you an overview of the Perimeter, Physical, Network, Server, Application and Data Security that Central Desktop offers.</p>
<p>If you are working within a company, organization or market that demands the best security available &#8211; I highly recommend considering the following features that come standard with the Enterprise and Community Edition of Central Desktop.</p>
<p><strong>Advanced Password Security Settings – </strong></p>
<p><strong> </strong></p>
<p>The Enterprise Edition adds an additional layer of Password Security by allowing the administrator to adjust a range of password options such as: enforcing a minimum password length, disabling the password save option, enabling password complexity and implementing password change frequency.</p>
<p><strong>TLS Encryption and Trusted Email Domain Support –</strong></p>
<p><strong> </strong></p>
<p>The TLS (Transport Layer Security) Encryption and Trusted Email Domain feature allows you to control access and send encrypted emails to trusted users. Email domains that are listed as Trusted Domains will receive a TLS encrypted email with all of the contents of the discussion, comment or documents available for the user to read. Email domains that are NOT listed as a Trusted Email Domain will only receive a generic email notification with a direct link to login to Central Desktop.</p>
<p><strong>Trusted IP Addresses -</strong></p>
<p>The Trusted IP Address feature allows Administrators to restrict access to Central Desktop by IP Address or IP Range. Only listed IP addresses will be allowed access to Central Desktop. This is ideal for companies and organizations that need to restrict access to Central Desktop via a VPN or office location IP address. This feature can be configured at the Company level and at the individual User level.</p>
<p><strong>Custom Terms of Service &#38; Privacy Policy –</strong></p>
<p><strong> </strong></p>
<p>The Custom Terms of Service &#38; Privacy Policy feature allows Administrators to force Internal Members and External Members to agree to custom Terms of Service and Privacy Policy when they register with Central Desktop. This feature enables companies to comply with certain confidentiality or terms of use required under certain corporate policies or statutory requirements.</p>
<p><strong>Single Sign-On Redirect –</strong></p>
<p><strong> </strong></p>
<p>The Single Sign-On (SSO) Redirect features allows companies and organizations a secure way to create a Single Sign-On experience from Central Desktop to 3rd applications, so that users don’t have to login twice when clicking from Central Desktop to another application.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
