<?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>Bob on Medical Device Software &#187; Microsoft</title>
	<atom:link href="http://rdn-consulting.com/blog/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://rdn-consulting.com/blog</link>
	<description>Software Development and Biomedical Engineering</description>
	<lastBuildDate>Wed, 02 May 2012 16:01:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<cloud domain='rdn-consulting.com' port='80' path='/blog/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Microsoft BUILD Conference</title>
		<link>http://rdn-consulting.com/blog/2011/09/16/microsoft-build-conference/</link>
		<comments>http://rdn-consulting.com/blog/2011/09/16/microsoft-build-conference/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 23:02:49 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=444</guid>
		<description><![CDATA[Wow &#8212; talk about drinking from a fire hose. BUILD Conference news and opinions are everywhere. Windows 8 WinRT  (no more Win32!) Metro Style Apps Death of Silverlight/Flash (?) Visual Studio 11 Fun stuff. It&#8217;s going to take a while to digest all of this.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.buildwindows.com/" target="_blank"><img class="alignright size-full wp-image-448" title="BuildWindows2011" src="http://rdn-consulting.com/blog/wp-content/uploads/2011/09/BuildWindows2011.png" alt="" width="255" height="89" /></a>Wow &#8212; talk about drinking from a fire hose. <a href="http://www.buildwindows.com/" target="_blank">BUILD Conference</a> news and opinions are everywhere.</p>
<ul>
<li>Windows 8</li>
<li>WinRT  (no more Win32!)</li>
<li>Metro Style Apps</li>
<li><a href="http://www.infoq.com/news/2011/09/Metro-Plug-ins" target="_blank">Death of Silverlight/Flash</a> (?)</li>
<li>Visual Studio 11</li>
</ul>
<p>Fun stuff. It&#8217;s going to take a while to digest all of this.</p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2011/09/16/microsoft-build-conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Binary Waveform Data in SQL Server 2008</title>
		<link>http://rdn-consulting.com/blog/2011/03/08/binary-waveform-data-in-a-sql-server-2008/</link>
		<comments>http://rdn-consulting.com/blog/2011/03/08/binary-waveform-data-in-a-sql-server-2008/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 05:08:57 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=422</guid>
		<description><![CDATA[As Shahid points out in Consider MySQL ‘Archive’ storage engine to store large amounts of med device structured or waveform data, saving physiologic waveform data from a medical device in a MySQL database for archive purposes is a reasonable alternative to using flat files. In SQL Server 2008 you can have it both ways.  In [...]]]></description>
			<content:encoded><![CDATA[<p>As Shahid points out in <a href="http://www.healthcareguy.com/2011/03/03/consider-mysql-archive-storage-engine-to-store-large-amounts-of-med-device-structured-or-waveform-data/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+HealthcareGuy+%28The+Healthcare+IT+Guy%29" target="_blank">Consider MySQL ‘Archive’ storage engine to store large amounts of med device structured or waveform data</a>, saving physiologic waveform data from a medical device in a MySQL database for archive purposes is a reasonable alternative to using flat files.</p>
<p>In SQL Server 2008 you can have it both ways.  In addition to saving binary data directly in the database you have the option to have a <a href="http://msdn.microsoft.com/en-us/library/ms188362.aspx" target="_blank">varbinary</a> column stored as a file stream. From the article <a href="http://www.codeproject.com/KB/database/SqlFileStream.aspx" target="_blank">How to store and fetch binary data into a file stream column</a>:</p>
<blockquote><p>File stream data can be used from the .NET Framework using the traditional <code><a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlparameter.aspx" target="_blank">SqlParameter</a></code>, but there is also a specialized class called <code><a href="http://msdn.microsoft.com/en-us/library/system.data.sqltypes.sqlfilestream.aspx" target="_blank">SqlFileStream</a></code> which can be used with .NET Framework 3.5 SP1 or later. This class provides mechanisms, for example, for seeking a specific position from the data.</p></blockquote>
<p>There are pros and cons to this approach. The backup and transactional issues, along with the performance considerations, all have to be evaluated against your specific system requirements.  Having the SQL Server engine manage the database relationship to the binary files seems like a big advantage over maintaining flat files yourself.</p>
<p>Read the MSDN article <a href="http://msdn.microsoft.com/en-us/library/cc949109.aspx" target="_blank">FILESTREAM Storage in SQL Server 2008</a> for all the gory details.</p>
<p>UPDATE (3/25/11): <a href="http://sqlblog.com/blogs/allen_white/archive/2011/03/24/who-s-got-access-to-your-filestream-directories.aspx" target="_blank">Who&#8217;s Got Access to your FileStream Directories?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2011/03/08/binary-waveform-data-in-a-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Threat Analysis of Networked Medical Devices</title>
		<link>http://rdn-consulting.com/blog/2010/08/14/a-threat-analysis-of-networked-medical-devices/</link>
		<comments>http://rdn-consulting.com/blog/2010/08/14/a-threat-analysis-of-networked-medical-devices/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 22:12:46 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[HIPAA]]></category>
		<category><![CDATA[Medical Devices]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[ePHI]]></category>
		<category><![CDATA[Practical threat analysis]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=387</guid>
		<description><![CDATA[Here&#8217;s an interesting analysis of security threats within a Windows-based hospital network for embedded medical devices: A threat analysis of critical patient monitoring medical devices. The threat models are fairly complex and clearly a product of wider enterprise network IT security needs. I&#8217;ve discussed some of the other issues of putting medical devices on an [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an interesting analysis of security threats within a Windows-based hospital network for embedded medical devices: <a href="http://www.software.co.il/wordpress/2010/08/a-threat-analysis-of-critical-patient-monitoring-medical-device/" target="_blank" class="broken_link">A threat analysis of critical patient monitoring medical devices</a>.</p>
<p>The threat models are fairly complex and clearly a product of wider enterprise network IT security needs. I&#8217;ve discussed some of the other issues of putting medical devices on an institutional network in <a title="Networked Medical Devices" href="http://rdn-consulting.com/blog/2008/12/20/networked-medical-devices/" target="_blank">Networked Medical Devices</a>. Security threats were not covered and this is an important topic for every hospital network.</p>
<p>There are a couple of items in this article worth commenting on.</p>
<p>The top five unmitigated threats were found to be:</p>
<p><a href="http://www.software.co.il/wordpress/2010/08/a-threat-analysis-of-critical-patient-monitoring-medical-device/" target="_blank" class="broken_link"><img class="aligncenter size-medium wp-image-388" title="topthreats" src="http://rdn-consulting.com/blog/wp-content/uploads/2010/08/topthreats.png" alt="" width="497" height="205" /></a></p>
<p>The corrective action for the top threat (T002) was (my highlight):</p>
<blockquote><p>After it was decided to <strong>remove all ePHI from the medical device data  storage</strong>, the risk assessment changed and the threat of the medical  device infecting the hospital enterprise network (T017) then became our  primary concern.</p></blockquote>
<p>This may be the &#8220;most effective countermeasure possible for HIPAA compliance and protecting patient privacy&#8221;, but it is a not practical solution in the real world. Many medical devices store patient demographics. Because the benefits of patient identification outweigh the security risks, this practice is not likely to change in the future.</p>
<p>On these questions:</p>
<ol>
<li>Can the medical devices be infected from the enterprise network?</li>
<li>Can the medical devices be infected via removable media?</li>
<li>Can infected medical devices propagate malicious software back into the enterprise network?</li>
</ol>
<p>I generally agree with the conclusions for the device under analysis. The challenge for a hospital is how do you ensure that every networked medical device follows these best practices (communications integrity, hardened OS, clean distribution media, etc.)?</p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2010/08/14/a-threat-analysis-of-networked-medical-devices/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Medical Device Gateway Data Standard?</title>
		<link>http://rdn-consulting.com/blog/2009/11/18/a-medical-device-gateway-data-standard/</link>
		<comments>http://rdn-consulting.com/blog/2009/11/18/a-medical-device-gateway-data-standard/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 21:40:53 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Medical Devices]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PHR]]></category>
		<category><![CDATA[Wipro]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=330</guid>
		<description><![CDATA[The Wipro OEM medical device gateway press release makes it all seem so easy (my highlight): The device, consisting of interfaces that can feed-in data such as blood pressure, pulse rate, ECG reading and weight from the respective devices, is connected to the gateway that would format it into standard patient information and transmit it [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.deccanherald.com/content/36395/wipros-medical-device.html" target="_blank">Wipro OEM medical device gateway</a> press release makes it all seem so easy (my highlight):</p>
<blockquote><p>The device, consisting of interfaces that can feed-in data such as blood pressure, pulse rate, ECG reading and weight from the respective devices, is connected to the gateway that would<strong> format it into standard patient information and transmit it</strong> to either public health data platform such as Google Health or to private platforms like Microsoft Health Vault.</p></blockquote>
<p>What exactly is &#8220;standard patient information&#8221;?  Maybe they&#8217;ve finally developed the magic interoperability bullet.  Yeah, right!  I&#8217;m sure companies like <a href="http://www.capsuletech.com/" target="_blank">Capsule</a> see these kind of claims all the time.  Statements like these are unfortunate because they give the impression that health data interoperability is a given. Of course we know that is not the case.</p>
<p>Also, since when is Google Health a public health data platform?</p>
<p>Hat tip: <a href="http://avantrasara.com/2009/11/20/new-medical-device-collects-and-transforms-patient-data-2/" target="_blank">Avantrasara</a></p>
<p>UPDATE (11/19/09):  <a href="http://www.currentitmarket.net/2009/11/wipro-ties-up-with-intel-for-rural.html" target="_blank">Wipro ties up with Intel for rural medical solutions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2009/11/18/a-medical-device-gateway-data-standard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Access to Medical Data: Are PC Standards and PHRs (You) the Answer?</title>
		<link>http://rdn-consulting.com/blog/2009/09/22/access-to-medical-data-are-pc-standards-and-phrs-you-the-answer/</link>
		<comments>http://rdn-consulting.com/blog/2009/09/22/access-to-medical-data-are-pc-standards-and-phrs-you-the-answer/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 04:32:16 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[EMR]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Medical Devices]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Dana Blankenhorn]]></category>
		<category><![CDATA[google health]]></category>
		<category><![CDATA[Microsoft HealthVault]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=306</guid>
		<description><![CDATA[Dana Blankenhorn&#8217;s article Give medicine access to PC standards makes some good points about the medical device industry but (IMHO) misses the mark when trying to use PC standards and PHRs as models for working towards a solution. I&#8217;ll get back to his central points in a minute. One thing I find fascinating is the [...]]]></description>
			<content:encoded><![CDATA[<p>Dana Blankenhorn&#8217;s article <a href="http://www.smartplanet.com/technology/blog/rethinking-healthcare/give-medicine-access-to-pc-standards/417/" target="_blank">Give medicine access to PC standards</a> makes some good points about the medical device industry but (IMHO) misses the mark when trying to use PC standards and PHRs as models for working towards a solution.</p>
<p>I&#8217;ll get back to his central points in a minute. One thing I find fascinating is the knee-jerk reaction in the comments to even a hint of government control.  How on earth can someone jump from &#8220;industry standard&#8221; to a &#8220;march towards socialism&#8221;? We saw the same thing at this summer&#8217;s town hall meetings and in Washington a couple of weeks ago.  The whole health care debate is just mind boggling!</p>
<p>Anyway, let&#8217;s focus on the major points of the article. First:</p>
<blockquote><p>Every industry, as its use of computing matures, eventually moves toward industry standards. It happened in law, it happened in manufacturing, it happened in publishing.</p>
<p>It has not happened, yet, in medicine.</p></blockquote>
<p>Very true.  In the medical device world, connectivity and interoperability are hot topics. A couple of recent posts &#8212; <a href="http://rdn-consulting.com/blog/2009/09/20/plug-and-play-medicine/" target="_blank">Plug-and-Play Medicine</a> and <a href="http://rdn-consulting.com/blog/2009/09/07/medical-device-software-on-shared-computers/" target="_blank">Medical Device Software on Shared Computers</a> &#8212; point out the significant challenges in this area.  In particular, the development and adoption of standards is a very intensive and political process. But where&#8217;s the incentive for the industry to go through this? Dana&#8217;s comment addresses this (my emphasis):</p>
<blockquote><p>The role I like best for government is in directing market incentives toward solutions, and not just to monopolies or bigger problems.</p>
<p>The reason health care costs jump every year is because market incentives cause them to. Those incentives must be changed, but the market won&#8217;t by itself because the market profits from them.</p>
<p><em>Only government can transform incentives.</em> &#8230;</p></blockquote>
<p>Like it or not, this may to the only way to push the medical industry to do the right thing.  But those other industries didn&#8217;t need government intervention in order to create their standards.  Using PC (or other industry) standards as a model for facilitating medical data access just doesn&#8217;t work.  The health industry will have to dragged to the table kicking and screaming, and the carrot (or stick) will have to be large in order for them to come to a consensus.</p>
<p>Second, I don&#8217;t see the relationship between the use of PHRs and the promotion of standards.</p>
<blockquote><p>By supporting PHRs, you support your right to your own data. You support liberating data from proprietary systems and placing it under industry standards.  You support integrating your health with the world of the Web, and the benefits such industry standards can deliver to you.</p></blockquote>
<p>Taking responsibility for your own health data is great, but both <a href="http://www.healthvault.com/" target="_blank">Microsoft HealthVault</a> and <a href="https://www.google.com/health" target="_blank">Google Health</a> <strong>are</strong> proprietary systems.  Just because your data is on the Web doesn&#8217;t make it any more accessible.  And even if one of these PHRs did became an industry standard, it would have very little impact on how EMRs communicate with each other or medical devices in general.</p>
<p>There are no easy answers.</p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2009/09/22/access-to-medical-data-are-pc-standards-and-phrs-you-the-answer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Liberate the Data!</title>
		<link>http://rdn-consulting.com/blog/2009/04/03/liberate-the-data/</link>
		<comments>http://rdn-consulting.com/blog/2009/04/03/liberate-the-data/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 05:02:33 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[EMR]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Health IT]]></category>
		<category><![CDATA[hitech]]></category>
		<category><![CDATA[Peter Neupert]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=259</guid>
		<description><![CDATA[Peter Neupert&#8217;s post Tear Down the Walls and Liberate the Data is worth reading. There are some Microsoft-centric comments, but a number of the linked articles are good and the overall message is correct (IMO anyway). I might have tried to find a better analogy than &#8216;tear down this wall&#8217;, but that&#8217;s because I was [...]]]></description>
			<content:encoded><![CDATA[<p>Peter Neupert&#8217;s post <a href="http://blogs.technet.com/neupertonhealth/archive/2009/04/03/tear-down-the-walls-and-liberate-the-data.aspx" target="_blank">Tear Down the Walls and Liberate the Data</a> is worth reading. There are some Microsoft-centric comments, but a number of the linked articles are good and the overall message is correct (IMO anyway).</p>
<p>I might have tried to find a better analogy than &#8216;tear down this wall&#8217;, but that&#8217;s because I was never a Ronald Reagan fan.  Nevertheless, this gets across the primary point:</p>
<blockquote><p>What’s of paramount importance is liberating the data and making it available for re-use in different contexts.</p></blockquote>
<p>Two major &#8216;walls&#8217; stand in the way of this:</p>
<ol>
<li>“it’s-my-data”</li>
<li>“waiting-for-the-right-standards-set-by-government”</li>
</ol>
<p>Both exist because of the <em>perceived</em> competitive advantages they provide to organizations and vendors.</p>
<p>Interoperability of data, or enabling data to become &#8220;liquid&#8221; would allow it to flow easily from system to system. These challenges are the same ones addressed by Adam Bosworth that I discussed in <a title="Permanent Link to Dreaming of Flexible, Simple, Sloppy, Tolerant in Healthcare IT" rel="bookmark" href="http://rdn-consulting.com/blog/dreaming-of-flexible-simple-sloppy-tolerant-in-healthcare-it/" target="_blank">Dreaming of Flexible, Simple, Sloppy, Tolerant in Healthcare IT</a>.</p>
<p>The technical issues are complicated, but I also believe that they not the primary reason that prevent  health IT systems from inter operating.  As Peter suggests, it would be good for <a href="http://frwebgate.access.gpo.gov/cgi-bin/getdoc.cgi?dbname=111_cong_bills&amp;docid=f:h1enr.pdf" target="_blank">HiTech</a> dollars to be used to break down some of the more difficult barriers that prevent data liquidity.</p>
<p>The &#8220;proven model[s] for extracting and transforming data&#8221; do exist and <em>there is no excuse not to use them</em>.</p>
<p>After thinking about it some more, a more cautionary analogy may be <a href="http://en.wikipedia.org/wiki/The_Exodus" target="_blank">The Exodus</a> &#8212; Mosses leading the Israelites out of the Land of Egypt (&#8220;let my data go!&#8221;).  1) It took an act of God to part the Red Sea, and 2) after their dramatic escape they roamed the desert for 40 years. Let&#8217;s hope that health IT interoperability does not need devine intervention or suffer the same fate.</p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2009/04/03/liberate-the-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Exploring Cloud Computing Development</title>
		<link>http://rdn-consulting.com/blog/2009/02/07/exploring-cloud-computing-development/</link>
		<comments>http://rdn-consulting.com/blog/2009/02/07/exploring-cloud-computing-development/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 00:05:34 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[BigTable]]></category>
		<category><![CDATA[CodeProject]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[S3]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=233</guid>
		<description><![CDATA[It&#8217;s not easy getting your arms around this one. The term Cloud Computing has become a catch-all for a number of related technologies that have been used in enterprise-class systems for many years (e.g. grid computing, SOA, virtualization, etc.). One of the primary concerns of cloud computing in Healthcare IT is privacy and security.  A [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-242 alignright" title="Cloud Computing" src="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/cloud_computing.jpg" alt="Cloud Computing" width="180" height="228" />It&#8217;s not easy getting your arms around this one. The term <a href="http://en.wikipedia.org/wiki/Cloud_computing" target="_blank">Cloud Computing</a> has become a catch-all for a number of related technologies that have been used in enterprise-class systems for many years (e.g. <a href="http://en.wikipedia.org/wiki/Grid_computing" target="_blank">grid computing</a>, <a href="http://en.wikipedia.org/wiki/Service-oriented_architecture" target="_blank">SOA</a>, <a href="http://en.wikipedia.org/wiki/Virtualization" target="_blank">virtualization</a>, etc.).</p>
<p>One of the primary concerns of cloud computing in Healthcare IT is <strong>privacy and security</strong>.  A majority of the content and comments in just about every article or blog post about CC, re: health data or not, deal with these concerns. I&#8217;m going to save that discussion for a future post.</p>
<p>I&#8217;m also not going to dig into the multitude of business and technical trade-offs of  these &#8220;cloud&#8221; options versus more traditional <a href="http://en.wikipedia.org/wiki/Software_as_a_service" target="_blank">SaaS</a> and other hybrid server approaches.  People write books about this stuff and there&#8217;s a flood of Internet content that slice and dice these subjects to death.</p>
<p>My purpose here is to provide an <strong>overview of cloud computing from a developers point-of-view</strong> so we can begin to understand what it would take to implement custom software in the cloud.  All of the major technical aspects are well covered elsewhere and I&#8217;m not going to repeat them here. I&#8217;m just going to note the things that I think were important to take into consideration when looking at each option.</p>
<p><a href="http://it.toolbox.com/blogs/oracle-guide/cloud-computing-defined-28433" target="_blank">Here</a>&#8216;s a simplified definition of Cloud Computing that&#8217;s easy to understand and will get us started:</p>
<blockquote><p>Cloud computing is using the internet to access someone else&#8217;s software running on someone else&#8217;s hardware in someone else&#8217;s data center while paying only for what you use.</p></blockquote>
<p>As a consumer, for example of a social networking site or PHR lets say, this definition fits pretty well.  There&#8217;s even an EMR that is  implemented in the cloud, <a href="http://www.practicefusion.com/" target="_blank">Practice Fusion</a>, that would fit this definition.</p>
<p>As a developer though,  I want it to be <strong>my software</strong> running in the cloud so I can make use of someone else&#8217;s infrastructure in a cost effective manner.  There are currently three major CC options.  <a href="http://simpable.com/software/cloud-options/" target="_blank" class="broken_link">Cloud Options &#8211; Amazon, Google, &amp; Microsoft</a> gives a good overview of these.</p>
<p>The Amazon and Google diagrams below were derived from <a href="http://blogs.zdnet.com/Hinchcliffe/?p=166&amp;tag=mncol;txt" target="_blank">here</a>.</p>
<h3><span style="text-decoration: underline;"><a href="http://aws.amazon.com/" target="_blank">Amazon Web Services</a></span></h3>
<p><a href="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/amazon-crop.png"><img class="aligncenter size-medium wp-image-239" title="Amazon Cloud Services" src="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/amazon-crop-300x234.png" alt="Amazon Cloud Services" width="300" height="234" /></a></p>
<p>The Amazon development model involves building <a href="http://www.xen.org/" target="_blank">Zen</a> virtual machine images that are run in the cloud by EC2. That means you build your own Linux/Unix or Windows operating system image and upload it to be  run in EC2. AWS has many pre-configured images that you can start with and customize to your needs. There are web service APIs (via <a href="http://www.w3.org/TR/wsdl" target="_blank">WSDL</a>) for the additional support services like S3, SimpleDB, and SQS.  Because you are building self-contained OS images, you are responsible for your own development and deployment tools.</p>
<p>AWS is the most mature of the CC options.  Applications that require the processing of huge amounts of data can make effective you of the AWS on-demand EC2 instances which are  managed by <a href="http://hadoop.apache.org/core/" target="_blank">Hadoop</a>.</p>
<p>If you have previous virtual machine experience (e.g. with  <a href="http://www.microsoft.com/windows/downloads/virtualpc/default.mspx" target="_blank">Microsoft Virtual PC 2007</a> or <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>) one of the main differences working with EC2 images is that they do not provide persistent storage. The EC2 instances have anywhere from 160 GB to 1.7 TB of attached storage but it disappears as soon as the instance is shut down. If you want to save data you have to use S3, SimpleDB, or your own remote storage server.</p>
<p>It seems to me that having to manage OS images along with applications development could be burdensome.  On the other hand, having complete control over your operating environment gives you maximum flexibility.</p>
<p>A good example of using AWS is here: <a title="How We Built a Web Hosting Infrastructure on EC2" href="http://www.mikebrittain.com/blog/2008/07/19/web-hosting-on-ec2/" target="_blank">How We Built a Web Hosting Infrastructure on EC2</a>.</p>
<h3><span style="text-decoration: underline;"><a href="http://code.google.com/appengine/" target="_blank">Google AppEngine</a></span></h3>
<p><a href="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/googleapps-crop.png"><img class="aligncenter size-medium wp-image-238" title="Google App Engine" src="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/googleapps-crop-285x300.png" alt="Google App Engine" width="285" height="300" /></a></p>
<p>GAE allows you to run <a href="http://www.python.org/" target="_blank">Python</a>/<a href="http://www.djangoproject.com/" target="_blank">Django</a> web applications in the cloud.  Google provides a set of development tools for this purpose. i.e. You can develop your application within the GAE run-time environment on our local system and deploy it after it&#8217;s been debugged and working the way you want it.</p>
<p>Google provides entity-based SQL-like (GQL) back-end data storage on their scalable infrastructure (<a href="http://en.wikipedia.org/wiki/BigTable" target="_blank">BigTable</a>) that will support very large data sets. Integration with Google Accounts allows for simplified user authentication.</p>
<p>From the GAE web site:  &#8220;This is a <strong>preview release</strong> of Google App   Engine. For now, applications are restricted to the free quota limits.&#8221;</p>
<h3><span style="text-decoration: underline;"><a href="http://www.microsoft.com/azure/default.mspx" target="_blank">Microsoft Windows Azure</a></span></h3>
<p><a href="http://www.microsoft.com/azure/howdoesitwork.mspx"><img class="aligncenter size-medium wp-image-240" title="Microsoft Windows Azure" src="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/azure-how_it_works_slide_3-300x190.jpg" alt="Microsoft Windows Azure" width="300" height="190" /></a></p>
<p>Azure is essentially a Windows OS running in the cloud.  You are effectively uploading and running  your ASP.NET (IIS7) or .NET (3.5) application.  Microsoft provides tight integration of Azure development directly into Visual Studio 2008.</p>
<p>For enterprise Microsoft developers the .NET Services and SQL Data Services (SDS) will make Azure a very attractive option.  The Live Framework provides a resource model that includes access to the Microsoft <a href="http://explore.live.com/windows-live-mesh" target="_blank">Live Mesh</a> services.</p>
<p>Bottom line for Azure: If you&#8217;re already a .NET programmer, Microsoft is creating a very comfortable path for you to migrate to <em>their</em> cloud.</p>
<p>Azure is now in CTP and is expected to be released later this year.</p>
<p>UPDATE (4/27/09) Here&#8217;s a good Azure article:  <a href="http://msdn.microsoft.com/en-us/magazine/dd727504.aspx" target="_blank">Patterns For High Availability, Scalability, And Computing Power With Windows Azure</a>.</p>
<h3>Getting Started</h3>
<p>All three companies make it pretty easy to get software up and running in the cloud. The documentation is generally good, and each has a quick start tutorial to get you going. I tried out the Google App Engine <a href="http://code.google.com/appengine/docs/python/gettingstarted/" target="_blank">tutorial</a> and had <a href="http://bobintheclouds.appspot.com/" target="_blank">Bob in the Clouds</a> on their server in about 30 minutes.</p>
<p><a href="http://bobintheclouds.appspot.com/"><img class="aligncenter size-medium wp-image-243" title="Bob's Guest Book" src="http://rdn-consulting.com/blog/wp-content/uploads/2009/02/gae-guestbook2-300x196.png" alt="Bob's Guest Book" width="300" height="196" /></a></p>
<p>Stop by and sign my cloud guest book!</p>
<p>Misc. Notes:</p>
<ul>
<li>All three systems have Web portal tools for managing and monitoring uploaded applications.</li>
<li>The Dr. Dobbs article <a href="http://www.ddj.com/web-development/213000642" target="_blank">Computing in the Clouds</a> has a more detailed look at AWS and GAE development.</li>
</ul>
<h3>Which is Best for You?</h3>
<p>One of the first things that struck me about these options is how different they all are.  Because of this, from a developer&#8217;s point-of-view I think you&#8217;ll quickly have a gut feeling about which one best matches your current skill sets and project requirements. The development components are just one piece of the selection process puzzle though. Which one you actually <em>might</em> end up using (it could very well be none) will also be based on all your other technical and business needs.</p>
<p>UPDATE (6/23/09): Here&#8217;s a good high level cloud computing discussion: <a href="http://srtsolutions.com/blogs/billwagner/archive/2009/06/19/reflections-on-executive-briefing-event-cloud-amp-ria.aspx" target="_blank" class="broken_link">Reflections on Executive Briefing Event: Cloud &amp; RIA</a>.  I like the phrase &#8220;<em>Cloud Computing is Elastic&#8221;</em> because it captures most the appealing aspects of the technology.  It&#8217;s no wonder Amazon latched on to that one &#8212; EC2.</p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2009/02/07/exploring-cloud-computing-development/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Microsoft Research at PDC2008</title>
		<link>http://rdn-consulting.com/blog/2008/11/05/microsoft-research-at-pdc2008/</link>
		<comments>http://rdn-consulting.com/blog/2008/11/05/microsoft-research-at-pdc2008/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 04:53:05 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/?p=207</guid>
		<description><![CDATA[Most of the press coming out of PDC2008 were all the cool new product development technology announcements. What you probably don&#8217;t appreciate is the depth and breadth of the Microsoft research effort that is really the foundation for many of these products. The Day Three PDC Keynote by Rick Rashid (and others) is over 90 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://research.microsoft.com/en-us/default.aspx"><img class="alignright size-full wp-image-208" title="microsoft-research" src="http://rdn-consulting.com/blog/wp-content/uploads/2008/11/microsoft-research.png" alt="" width="145" height="42" /></a>Most of the press coming out of <a href="http://www.microsoftpdc.com/" target="_blank">PDC2008</a> were all the cool new product development technology announcements. What you probably don&#8217;t appreciate is the depth and breadth of the Microsoft research effort that is really the foundation for many of these products.</p>
<p>The <a href="http://channel9.msdn.com/pdc2008/KYN04/" target="_blank">Day Three PDC Keynote by Rick Rashid</a> (and others) is over 90 minutes long, but is worth a look.  It&#8217;s all fascinating stuff.</p>
<p>Hat tip: Dr. Neil&#8217;s Notes: <a href="http://drneil.blogspot.com/2008/11/day-three-pdc-keynote-microsoft.html" target="_blank">Day Three PDC Keynote:  Microsoft Research Magic</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2008/11/05/microsoft-research-at-pdc2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Health Launches: More PHR for the masses.</title>
		<link>http://rdn-consulting.com/blog/2008/05/19/google-health-launches-more-phr-for-the-masses/</link>
		<comments>http://rdn-consulting.com/blog/2008/05/19/google-health-launches-more-phr-for-the-masses/#comments</comments>
		<pubDate>Tue, 20 May 2008 03:06:52 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PHR]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/2008/05/19/google-health-launches-more-phr-for-the-masses/</guid>
		<description><![CDATA[It&#8217;s finally here: Drumroll, Please: Google Health Launches! If you use any of the Google applications (like Gmail), it&#8217;s just as easy as all the others: It will be interesting to see if this and HealthVault have an impact on how patients interact with their medical service providers. The privacy and security issues are certain [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s finally here: <a href="http://blogs.wsj.com/health/2008/05/19/drumroll-please-google-health-launches/" target="_blank">Drumroll, Please: Google Health Launches!</a></p>
<p>If you use any of the Google applications (like Gmail), it&#8217;s just as easy as all the others:</p>
<p align="center"> <a href="https://www.google.com/accounts/ServiceLogin?service=health" target="_blank" title="Google Health"><img src="http://rdn-consulting.com/blog/wp-content/uploads/2008/05/googlehealth.JPG" alt="Google Health" /></a></p>
<p>It will be interesting to see if this and <a href="http://www.healthvault.com/" target="_blank">HealthVault</a> have an impact on how patients interact with their medical service providers. The privacy and security issues are certain to remain a significant barrier to adoption. Only time will tell.</p>
<p>UPDATE (5/23/08): See  <a href="http://science.slashdot.org/article.pl?sid=08/05/23/0520223&amp;from=rss" target="_blank">Delving Into Google Health&#8217;s Privacy Concerns</a></p>
<p>UPDATE (5/24/08): Apparently this Slashdot reference is &#8220;uninformed&#8221;:  <a href="http://www.healthcareguy.com/index.php/archives/428" target="_blank">Why Google Health and HealthVault are not covered by HIPAA</a>.</p>
<p>UPDATE (7/6/08): I ran across this post that talks about Microsoft HealthVault security:  <a href="http://www.0x000000.com/?i=594" target="_blank">You Will Never Get It Microsoft.</a> Here&#8217;s a quote from it:</p>
<blockquote><p>Microsoft obviously think that I don&#8217;t know how HealthVault works. I don&#8217;t have to know how it works, I only know that it will and can be abused one day.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2008/05/19/google-health-launches-more-phr-for-the-masses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Health Common User Interface (CUI) v1.3</title>
		<link>http://rdn-consulting.com/blog/2008/05/13/microsoft-health-common-user-interface-cui-v13/</link>
		<comments>http://rdn-consulting.com/blog/2008/05/13/microsoft-health-common-user-interface-cui-v13/#comments</comments>
		<pubDate>Wed, 14 May 2008 04:08:04 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[EMR]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://rdn-consulting.com/blog/2008/05/13/microsoft-health-common-user-interface-cui-v13/</guid>
		<description><![CDATA[Last year I looked at the MSCUI. Along with the v1.3 release is a glimpse into the future. The user experience is greatly enhanced with the use of Silverlight 2.0. Check out the Patient Journey Demonstrator (you&#8217;ll need to install Silverlight first): Bill Crounse has a good overview and links here. The UI busy and [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I <a href="http://rdn-consulting.com/blog/2007/07/24/first-look-microsoft-health-common-user-interface-cui/" target="_blank">looked</a> at the <a href="http://www.mscui.net/" target="_blank">MSCUI</a>. Along with the v1.3 release is a glimpse into the future. The user experience is greatly enhanced with the use of<a href="http://www.microsoft.com/silverlight/default.aspx" target="_blank"> Silverlight 2.0</a>. Check out the <a href="http://www.mscui.net/PatientJourneyDemonstrator/" target="_blank">Patient Journey Demonstrator</a> (you&#8217;ll need to install Silverlight first):</p>
<p><a title="Patient Chart" href="http://rdn-consulting.com/blog/wp-content/uploads/2008/05/patient-chart.JPG"><img src="http://rdn-consulting.com/blog/wp-content/uploads/2008/05/patient-chart.JPG" alt="Patient Chart" width="542" height="269" /></a></p>
<p>Bill Crounse has a good overview and links <a href="http://blogs.msdn.com/healthblog/archive/2008/05/12/microsoft-common-user-interface-for-health-applications-take-1-3.aspx" target="_blank">here</a>.</p>
<p>The UI busy and complex, but there seems to be an intuitive consistency to the madness. Besides the slick look, one of the great things about Silverlight (and <a href="http://msdn.microsoft.com/en-us/library/ms754130.aspx" target="_blank">WPF</a>) are the <strong>transition animations</strong> that makes using the controls a feel-good experience.</p>
<p>Most of the Silverlight/WPF demos I&#8217;ve seen are photo/video mashup types of applications. The MSCUI clinical workflow and patient record demos give you a much better appreciation for how this UI technology can be put to effective use.</p>
<p>I still think the <a href="http://www.mscui.net/DesignGuide/DesignGuide.aspx" target="_blank">MSCUI Design Guidance</a> documents are the key to success. Everybody goes gaga over the cool graphics and animations, but these requirements need to drive the use of the technology.</p>
<p>UPDATE (9/11/08): <a href="http://www.codeplex.com/mscui/Thread/View.aspx?ThreadId=35453" target="_blank">MSCUI R1.5 is now live</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rdn-consulting.com/blog/2008/05/13/microsoft-health-common-user-interface-cui-v13/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

