<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>John James Andersen</title>
	<atom:link href="http://www.john-james-andersen.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.john-james-andersen.com</link>
	<description>The Personal &#38; Professional Website</description>
	<lastBuildDate>Wed, 10 Mar 2010 15:26:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Converting Date Strings to Javascript Dates</title>
		<link>http://www.john-james-andersen.com/blog/programming/converting-date-strings-to-javascript-dates.html</link>
		<comments>http://www.john-james-andersen.com/blog/programming/converting-date-strings-to-javascript-dates.html#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:49:14 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=369</guid>
		<description><![CDATA[Javascript does have a good Date object that can be used to manipulate dates in your script.  Another benefit it sports is that it can take several string formats and create a Date object from that string.  However, despite their efforts to use the most common strings you will likely come across a [...]]]></description>
			<content:encoded><![CDATA[<p>Javascript does have a good Date object that can be used to manipulate dates in your script.  Another benefit it sports is that it can take several string formats and create a Date object from that string.  However, despite their efforts to use the most common strings you will likely come across a date format that doesn&#8217;t automatically convert over to the Date object.</p>
<p>This may be a little quick and dirty, but if you know your date string format is going to always be in a particular format, it is easy to convert that date string into a string that could be interpreted by the Date object constructor.  Here is an example of such an effort:</p>
<div class="codecolorer-container javascript blackboard" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span><br />
&nbsp; dateString <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;09-Jan-10&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #003366; font-weight: bold;">var</span> parts <span style="color: #339933;">=</span> dateString.<span style="color: #660066;">match</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/([0-9]*)\-([a-zA-Z]*)\-([0-9]*)/</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; dateString <span style="color: #339933;">=</span> parts<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot; &quot;</span> <span style="color: #339933;">+</span> parts<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;, 20&quot;</span> <span style="color: #339933;">+</span> parts<span style="color: #009900;">&#91;</span>3<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #003366; font-weight: bold;">var</span> myDate <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Date<span style="color: #009900;">&#40;</span>dateString<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Date :&quot;</span> <span style="color: #339933;">+</span> myDate.<span style="color: #660066;">getDate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&lt;BR&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #006600; font-style: italic;">//getMonth is 0 based for some reason so add 1 to the result</span><br />
&nbsp; document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Month : &quot;</span> <span style="color: #339933;">+</span> myDate.<span style="color: #660066;">getMonth</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span>1<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&lt;BR&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Year : &quot;</span> <span style="color: #339933;">+</span> myDate.<span style="color: #660066;">getFullYear</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/blog/programming/converting-date-strings-to-javascript-dates.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great SAML Decode/Encode Tool</title>
		<link>http://www.john-james-andersen.com/blog/programming/great-saml-decodeencode-tool.html</link>
		<comments>http://www.john-james-andersen.com/blog/programming/great-saml-decodeencode-tool.html#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:29:48 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=361</guid>
		<description><![CDATA[
I have been struggling for the past few days trying to get my Java program to properly build and encode a SAML 2.0 Authentication Request that should initiate a Single Sign-on event with a SAML 2.0 capable Identity Provider.
I was having problems with the Java library that I was using to DEFLATE the authentication request [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.john-james-andersen.com/wp-content/uploads/matrix.png" alt="Encoding &amp; Decoding SAML 2.0" title="Encoding &amp; Decoding SAML 2.0" width="393" height="292" class="alignright size-full wp-image-362" /><br />
I have been struggling for the past few days trying to get my Java program to properly build and encode a SAML 2.0 Authentication Request that should initiate a Single Sign-on event with a SAML 2.0 capable Identity Provider.</p>
<p>I was having problems with the Java library that I was using to DEFLATE the authentication request before I sent it to the IdP.  I found a great <a href="https://rnd.feide.no/simplesaml/module.php/saml2debug/debug.php">SAML debug tool</a> that helped me out immensely.</p>
<p>Here it is below:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;iframe &nbsp;width=&quot;100%&quot; height=&quot;750&quot; FRAMEBORDER= 0 src=&quot;https://rnd.feide.no/simplesaml/module.php/saml2debug/debug.php&quot;&gt;&lt;/iframe&gt;</div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/blog/programming/great-saml-decodeencode-tool.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenID Basics &#8211; Getting Going</title>
		<link>http://www.john-james-andersen.com/blog/programming/openid-basics-getting-going.html</link>
		<comments>http://www.john-james-andersen.com/blog/programming/openid-basics-getting-going.html#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:02:38 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=356</guid>
		<description><![CDATA[
I have been spending the past day working with OpenID an getting it to work on a couple of different portals/web applications.  OpenID works really well and I highly recommend it as an alternative method of authentication.
In order to get started accepting OpenID credentials in your authentication model, or even to get started using [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.john-james-andersen.com/wp-content/uploads/openid_logo.gif" alt="" title="openid_logo_long" width="337" height="200" class="aligncenter size-full wp-image-357" /></p>
<p>I have been spending the past day working with OpenID an getting it to work on a couple of different portals/web applications.  OpenID works really well and I highly recommend it as an alternative method of authentication.</p>
<p>In order to get started accepting OpenID credentials in your authentication model, or even to get started using OpenID at all, you need to follow some of these steps.  I&#8217;ll also mark some of the tools that might be helpful.</p>
<p>First, get an OpenID yourself.  Whether you are going to write an authentication module or just use OpenID, you will need to get an ID.  OpenID is a type of protocol or method.  There is not any one place that you can get an OpenID.  There are many providers of such ID&#8217;s.  You can also be your own provider.  I happened to create an openID at <a href="http://www.myopenid.com">myopenid.com</a>.  However you can search through a number of providers in this <a href="http://openid.net/get-an-openid/">openID providers list</a>.</p>
<p>Once you have an OpenID, you will notice that it is not your typical username.  An openID is a URL.  For example, one of my test openID&#8217;s is:  http://ttest123.myopenid.com.</p>
<p>Now you can try using your OpenID.  One great resource to finding OpenID enabled sites it to browse the following <a href="http://openiddirectory.com/">OpenID site directory</a>: http://openiddirectory.com/.</p>
<p>If you are going to enable one of your web applications to use OpenID, I would recommend a site that lists many already created libraries for OpenID in a number of languages. The best resource I know is this <a href="http://wiki.openid.net/Libraries">OpenID Library list</a>.</p>
<p>Use the examples in the libraries that you download to understand how to easily integrate OpenID into your own Authentication System.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/blog/programming/openid-basics-getting-going.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Implements OpenID</title>
		<link>http://www.john-james-andersen.com/latest-news/john-implements-openid.html</link>
		<comments>http://www.john-james-andersen.com/latest-news/john-implements-openid.html#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:07:15 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=352</guid>
		<description><![CDATA[
John Andersen performed research on OpenID and implemented an OpenID solution to his testing ground SEO portal that he maintains.  His portal now accepts OpenID as an alternate authentication method.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.john-james-andersen.com/wp-content/uploads/openid.png" alt="" title="openid logo" width="220" height="215" class="alignright size-full wp-image-353" /></p>
<p>John Andersen performed research on OpenID and implemented an OpenID solution to his testing ground SEO portal that he maintains.  His portal now accepts OpenID as an alternate authentication method.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/latest-news/john-implements-openid.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Ports with NX Client &amp; SSH</title>
		<link>http://www.john-james-andersen.com/blog/linux/custom-ports-with-nx-client-ssh.html</link>
		<comments>http://www.john-james-andersen.com/blog/linux/custom-ports-with-nx-client-ssh.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:53:36 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=342</guid>
		<description><![CDATA[
I recently pulled my hair out for a couple of hours on a problem that was really simple&#8230;I just was overlooking a setting.  To help other people save time on this exercise I wanted to share my experience.
I have OpenSuSE 11.1 virtual machine.  I installed the NXServer on that machine so that I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.john-james-andersen.com/wp-content/uploads/nx.png" alt="" title="nx" width="304" height="81" class="aligncenter size-full wp-image-343" /></p>
<p>I recently pulled my hair out for a couple of hours on a problem that was really simple&#8230;I just was overlooking a setting.  To help other people save time on this exercise I wanted to share my experience.</p>
<p>I have OpenSuSE 11.1 virtual machine.  I installed the NXServer on that machine so that I could control it from my Mac laptop and Windows 7 Desktop.  I needed to change the ports to allow me to communicate from outside of my home.  In order to do this, I knew that I needed to change my SSH port as well as my NX Server port.</p>
<p>Here is what you have to do:</p>
<ul>
<li><strong>Edit your sshd_config file</strong><br />
Edit the /etc/ssh/sshd_config file changing the line that says &#8220;Port 22&#8243; to &#8220;Port {your_number}&#8221;
</li>
<li><strong>Edit your ssh_config file</strong><br />
Edit the /etc/ssh/ssh_config file by changing the line that says &#8220;Port 22&#8243; to &#8220;Port {your_number}&#8221;
</li>
<li><strong>Edit your server.cfg file</strong>
<ol>
<li>Edit the /usr/NX/etc/server.cfg file by changing TWO lines.  This is where I messed up and had a hard time figuring out my problem. </li>
<li> The first line you need to edit is: &#8216;#SSHDPort = &#8220;22&#8243;.&#8217;  You need to change that to (first, remove the # sign to make it active instead of being a comment): &#8216;SSHDPort = &#8220;{your_number}&#8221;.&#8217; </li>
<li>The second line you need to edit is: &#8216;#SSHDAuthPort = &#8220;22&#8243;.&#8217;  You need to change that to (first, remove the # sign to make it active instead of being a comment): &#8216;SSHDAuthPort = &#8220;{your_number}&#8221;.&#8217;  If you don&#8217;t change this line, your NX Client will give a error saying: &#8220;Authentication failed for user {username}&#8221;.</li>
</ol>
</li>
<li><strong>Edit your node.cfg file</strong><br />
Next, edit your /usr/NX/etc/node.cfg file by changing one line:   &#8216;#SSHDPort = &#8220;22&#8243;.&#8217;  You need to change that to (first, remove the # sign to make it active instead of being a comment): &#8216;SSHDPort = &#8220;{your_number}&#8221;.&#8217; </p>
</li>
<li><strong>Restart your Services</strong><br />
Restart SSH by issuing the following Command: &#8220;/etc/init.d/sshd restart&#8221;<br />
Restart the NX Server by issuing the following Command: &#8220;/etc/init.d/nxserver restart&#8221;
</li>
</ul>
<p>There you have it.  You should be able to connect via a non-standard, non-default port with the nxclient. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/blog/linux/custom-ports-with-nx-client-ssh.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Training Manuals</title>
		<link>http://www.john-james-andersen.com/blog/service-now/good-training-manuals.html</link>
		<comments>http://www.john-james-andersen.com/blog/service-now/good-training-manuals.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 13:53:49 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Service-Now]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=339</guid>
		<description><![CDATA[
Service-now.com is a power service desk administration tool.  With it&#8217;s vast arms of flexibility, it can be a bit daunting to set up for a deployment person.
Besides the Service-now.com wiki that is full of information, there are a couple of places where you get get some training materials or user manuals.
Two places that I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.john-james-andersen.com/wp-content/uploads/sdesk.png"><img src="http://www.john-james-andersen.com/wp-content/uploads/sdesk.png" alt="" title="service-desk" width="398" height="302" class="aligncenter size-full wp-image-340" /></a></p>
<p>Service-now.com is a power service desk administration tool.  With it&#8217;s vast arms of flexibility, it can be a bit daunting to set up for a deployment person.</p>
<p>Besides the <a href="http://wiki.service-now.com">Service-now.com wiki</a> that is full of information, there are a couple of places where you get get some training materials or user manuals.</p>
<p>Two places that I learned of today are:</p>
<ul>
<li>A <a href="http://community.service-now.com/files/Nashco-Using%20Service-now%20Manual%20(v%202.1).doc">Process User&#8217;s Guide</a> for Service-Now</li>
<li>The <a href="http://www.fruitionpartners.com/img/cst/f6135/Admin101_TrainingManual_v11.pdf">Admin Training 101 Manual</a> &#8211; used in the Admin Training Courses</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/blog/service-now/good-training-manuals.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maximizing an Edit Field in Service-now forms</title>
		<link>http://www.john-james-andersen.com/blog/service-now/maximizing-an-edit-field-in-service-now-forms.html</link>
		<comments>http://www.john-james-andersen.com/blog/service-now/maximizing-an-edit-field-in-service-now-forms.html#comments</comments>
		<pubDate>Thu, 11 Feb 2010 18:02:37 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Service-Now]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=328</guid>
		<description><![CDATA[One cool feature with service-now.com is the ability to resize many of their text-boxes. 
When you are in their script editor you will often get a smaller box than you like.  For example, see the picture below of a really small box.

The textbox can be enlarged (or shortened) by clicking on the resizing icons [...]]]></description>
			<content:encoded><![CDATA[<p>One cool feature with service-now.com is the ability to resize many of their text-boxes. </p>
<p>When you are in their script editor you will often get a smaller box than you like.  For example, see the picture below of a really small box.</p>
<p><a href="http://www.john-james-andersen.com/wp-content/uploads/largerfield.png"><img src="http://www.john-james-andersen.com/wp-content/uploads/smallfield.png" alt="" title="largerfield"  class="alignnone size-medium wp-image-331" /></a></p>
<p>The textbox can be enlarged (or shortened) by clicking on the resizing icons in the upper right portion of the text box.    The text box below was enlarged by clicking the plus sign.</p>
<p><a href="http://www.john-james-andersen.com/wp-content/uploads/largerfield1.png"><img src="http://www.john-james-andersen.com/wp-content/uploads/largerfield.png" alt="" title="largerfield" class="alignnone size-medium wp-image-332" /></a></p>
<p>While this is great, when I am editing a long script, it is difficult to keep expanding the text box by clicking the + (plus) sign repeatedly until it reaches the entire size of the script. </p>
<p>I was recently told of a key board shortcut that, when used on a script field, will automatically resize the script text box so that it is the maximum size of the script.  To so this simply type:  &#8220;&lt;CTRL&gt;&lt;SHIFT&gt;&lt;M&gt;&#8221;</p>
<p>To bring the script field back to its normal size, type &#8220;&lt;CTRL&gt;&lt;SHIFT&gt;&lt;N&gt;&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/blog/service-now/maximizing-an-edit-field-in-service-now-forms.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Service-Now.com Adventure</title>
		<link>http://www.john-james-andersen.com/featured-articles/a-service-now-com-adventure.html</link>
		<comments>http://www.john-james-andersen.com/featured-articles/a-service-now-com-adventure.html#comments</comments>
		<pubDate>Wed, 03 Feb 2010 18:21:33 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=317</guid>
		<description><![CDATA[
As of January 18, 2010, John Andersen started employment at the leading provider of ITSM as a SaaS solution. Service-now.com is headquartered in Solana Beach, California.  John will be working remotely from his home in the capacity of a Senior Consultant specializing in Professional Service Integrations. 
John will be using his skills in programming [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.john-james-andersen.com/wp-content/uploads/MeAtSNC.jpg" alt="John Andersen is now a Service-now Fan/Employee" title="John Andersen is now a Service-now Fan/Employee" width="400" height="244" class="aligncenter size-full wp-image-319" /></p>
<p>As of January 18, 2010, John Andersen started employment at the leading provider of ITSM as a SaaS solution. <a href='http://www.service-now.com'>Service-now.com</a> is headquartered in Solana Beach, California.  John will be working remotely from his home in the capacity of a Senior Consultant specializing in Professional Service Integrations. </p>
<p>John will be using his skills in programming using a variety of programming languages.  John is excited to be working with a number of IT technologies in the industry as he works with customers to integrate their Service-now SaaS instances with their current IT systems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/featured-articles/a-service-now-com-adventure.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Andersen joins Service-now.com</title>
		<link>http://www.john-james-andersen.com/latest-news/john-andersen-joins-service-now-com.html</link>
		<comments>http://www.john-james-andersen.com/latest-news/john-andersen-joins-service-now-com.html#comments</comments>
		<pubDate>Mon, 18 Jan 2010 17:43:39 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=337</guid>
		<description><![CDATA[
John Andersen decided to take a challenging job opportunity with the Professional Services team at Service-now.com.  John&#8217;s title changed from Engineering Manager to Senior Consultant.  He will specialize in product integrations.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.john-james-andersen.com/wp-content/uploads/service-now.com-logo.jpg"><img src="http://www.john-james-andersen.com/wp-content/uploads/service-now.com-logo-300x75.jpg" alt="" title="Service-now.com" width="300" height="75" class="aligncenter size-medium wp-image-316" /></a></p>
<p>John Andersen decided to take a challenging job opportunity with the Professional Services team at Service-now.com.  John&#8217;s title changed from Engineering Manager to Senior Consultant.  He will specialize in product integrations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/latest-news/john-andersen-joins-service-now-com.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Andersen leaves Novell</title>
		<link>http://www.john-james-andersen.com/latest-news/john-andersen-leaves-novell.html</link>
		<comments>http://www.john-james-andersen.com/latest-news/john-andersen-leaves-novell.html#comments</comments>
		<pubDate>Fri, 15 Jan 2010 18:23:23 +0000</pubDate>
		<dc:creator>John Andersen</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.john-james-andersen.com/?p=324</guid>
		<description><![CDATA[At the beginning of 2010, John Andersen decided to say goodbye to friends and colleagues at Novell in order to take his employment to a young company, Service-now.com. John spent nearly 13 years at the networking giant and had participated in a variety of technologies.  Some of his most memorable Novell projects include NDS [...]]]></description>
			<content:encoded><![CDATA[<p>At the beginning of 2010, John Andersen decided to say goodbye to friends and colleagues at Novell in order to take his employment to a young company, Service-now.com. John spent nearly 13 years at the networking giant and had participated in a variety of technologies.  Some of his most memorable Novell projects include NDS for NT, Novell Portal Services, Novell Workspace, Novell ZENworks, and Platespin Orchestrate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.john-james-andersen.com/latest-news/john-andersen-leaves-novell.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
