<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Dude, Wasn&amp;#39;t That Native Coding?</title><subtitle type="html">Thoughts and reflections from a programming veteran.</subtitle><id>http://blogs.msdn.com/b/diegumzone/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/diegumzone/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2008-12-05T20:48:00Z</updated><entry><title>C++ Programming Interviews: What Interviewers Want You To Show</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2010/11/27/c-programming-interviews-what-interviewers-want-you-to-show.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2010/11/27/c-programming-interviews-what-interviewers-want-you-to-show.aspx</id><published>2010-11-27T08:13:18Z</published><updated>2010-11-27T08:13:18Z</updated><content type="html">I recently passed a test on C/C++ and I like to share what I was challenged to to, what (and how) I responded. This post will seem like a lost chapter of the book Programming Interviews Exposed-Secrets to Landing Your Next Job, 2nd Edition [Mongan, Soujanen, Giguère; Wrox 2007]. &amp;#160; I was asked to pseudo-code a function that returns the decimal equivalent to a roman numeral received as input. It seems like a trivial challenge but what the aspiring candidate must keep in mind, first of all, is...(&lt;a href="http://blogs.msdn.com/b/diegumzone/archive/2010/11/27/c-programming-interviews-what-interviewers-want-you-to-show.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10097328" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="C++" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/C_2B002B00_/" /><category term="best practices" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/best+practices/" /><category term="programming techniques" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/programming+techniques/" /><category term="C++ jobs" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/C_2B002B00_+jobs/" /></entry><entry><title>Recent Quotes from C++ Inventor Bjarne Stroustrup</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2010/11/10/recent-quotes-from-c-inventor-bjarne-stroustrup.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2010/11/10/recent-quotes-from-c-inventor-bjarne-stroustrup.aspx</id><published>2010-11-10T23:31:00Z</published><updated>2010-11-10T23:31:00Z</updated><content type="html">A selection of a few quotes recently told by C++ father to Wired magazine , in occasion of the 25 years of its creation. My aim for C++ was always to go beyond the narrow definitions of OOP. Sometimes, it is more important to have the right problem than the best solution. Ada, Smalltalk, Eiffel, Objective C, the forerunners of CLOS, and other languages were vigorously competing for mind share. In that context, C++ was the only “advanced language” without a marketing organization. If I had thought...(&lt;a href="http://blogs.msdn.com/b/diegumzone/archive/2010/11/10/recent-quotes-from-c-inventor-bjarne-stroustrup.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10091505" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="C++" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/C_2B002B00_/" /><category term="Bjarne Stroustrup" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Bjarne+Stroustrup/" /><category term="Dialogues" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Dialogues/" /></entry><entry><title>Coffee Break: Swapping Two Values Without Involving a Third One</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2010/10/05/coffee-break-swapping-two-values-without-involving-a-third-one.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2010/10/05/coffee-break-swapping-two-values-without-involving-a-third-one.aspx</id><published>2010-10-05T22:02:00Z</published><updated>2010-10-05T22:02:00Z</updated><content type="html">Everybody knows the XOR bitwise operator. It returns 1 for every couple of bits that don’t match, 0 otherwise. What not everybody may be aware is a curious feature of it: it may serve to swap integer values ( char , short , int , long long or their unsigned versions). Let’s see: // shemp contains 01000001 and curly 01011010 respectively 
 char shemp = ' A ' , curly = ' Z ' ;
 
 shemp ^= curly; // shemp ends with 00011011 
 
 curly ^= shemp; // curly ends with 01000001
 // that's shemp initial...(&lt;a href="http://blogs.msdn.com/b/diegumzone/archive/2010/10/05/coffee-break-swapping-two-values-without-involving-a-third-one.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10075032" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="Coffee Break" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Coffee+Break/" /></entry><entry><title>The Architecture Newsletter, June 2009</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2009/06/17/the-architecture-newsletter-june-2009.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2009/06/17/the-architecture-newsletter-june-2009.aspx</id><published>2009-06-18T00:46:00Z</published><updated>2009-06-18T00:46:00Z</updated><content type="html">&lt;meta content="text/html; charset=windows-1252" http-equiv="Content-Type" /&gt;&lt;meta name="ProgId" content="Word.Document" /&gt;&lt;meta name="Generator" content="Microsoft Word 12" /&gt;&lt;meta name="Originator" content="Microsoft Word 12" /&gt;&lt;link rel="File-List" href="newsletter_files/filelist.xml" /&gt;&lt;link rel="Edit-Time-Data" href="newsletter_files/editdata.mso" /&gt;&lt;style&gt;


v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}&lt;/style&gt;&lt;link rel="themeData" href="newsletter_files/themedata.thmx" /&gt;&lt;link rel="colorSchemeMapping" href="newsletter_files/colorschememapping.xml" /&gt;&lt;style&gt;

 
&lt;!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-charset:1;
	mso-generic-font-family:roman;
	mso-font-format:other;
	mso-font-pitch:variable;
	mso-font-signature:0 0 0 0 0 0;}
@font-face
	{font-family:calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520092929 1073786111 9 0 415 0;}
@font-face
	{font-family:tahoma;
	panose-1:2 11 6 4 3 5 4 4 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
@font-face
	{font-family:verdana;
	panose-1:2 11 6 4 3 5 4 4 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-1593833729 1073750107 16 0 415 0;}
 /* Style Definitions */
 p.msonormal, li.msonormal, div.msonormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:calibri;
	mso-fareast-theme-font:minor-latin;}
a:link, span.msohyperlink
	{mso-style-noshow:yes;
	mso-style-priority:99;
	color:#0033cc;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.msohyperlinkfollowed
	{mso-style-noshow:yes;
	mso-style-priority:99;
	color:purple;
	mso-themecolor:followedhyperlink;
	text-decoration:underline;
	text-underline:single;}
p.msoacetate, li.msoacetate, div.msoacetate
	{mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-link:"Balloon Text Char";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:8.0pt;
	font-family:"Tahoma","sans-serif";
	mso-fareast-font-family:calibri;
	mso-fareast-theme-font:minor-latin;}
span.balloontextchar
	{mso-style-name:"Balloon Text Char";
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-unhide:no;
	mso-style-locked:yes;
	mso-style-link:"Balloon Text";
	mso-ansi-font-size:8.0pt;
	mso-bidi-font-size:8.0pt;
	font-family:"Tahoma","sans-serif";
	mso-ascii-font-family:tahoma;
	mso-hansi-font-family:tahoma;
	mso-bidi-font-family:tahoma;}
.msochpdefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	mso-ascii-font-family:calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:calibri;
	mso-fareast-theme-font:minor-latin;
	mso-hansi-font-family:calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
.msopapdefault
	{mso-style-type:export-only;
	margin-bottom:10.0pt;
	line-height:115%;}
@page section1
	{size:11.0in 8.5in;
	mso-page-orientation:landscape;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.section1
	{page:section1;}
--&gt;&lt;/style&gt;  &lt;div class="Section1"&gt;   &lt;table style="border-bottom: #999999 1pt solid; border-left: #999999 1pt solid; width: 562.5pt; border-top: #999999 1pt solid; border-right: #999999 1pt solid; mso-cellspacing: 0in; mso-border-alt: solid #999999 .75pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" width="750"&gt;&lt;tbody&gt;       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;         &lt;td style="border-bottom-style: none; padding-bottom: 0in; border-right-style: none; padding-left: 0in; padding-right: 0in; border-top-style: none; border-left-style: none; padding-top: 0in"&gt;           &lt;table style="width: 100%; background: white; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100%"&gt;&lt;tbody&gt;               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                   &lt;table style="width: 100%; background: #3a3a3a; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100%"&gt;&lt;tbody&gt;                       &lt;tr style="height: 15pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 3.75pt; height: 15pt; padding-top: 0in" nowrap="nowrap"&gt;                           &lt;p style="text-align: right" class="MsoNormal" align="right"&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114993&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white; text-decoration: none; text-underline: none"&gt;Sign up for this newsletter&lt;/span&gt;&lt;/a&gt; &lt;/span&gt;&lt;span style="color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;| &lt;/span&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114994&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white; text-decoration: none; text-underline: none"&gt;Unsubscribe&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt; | &lt;/span&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114995&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white; text-decoration: none; text-underline: none"&gt;Update your profile&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt; &lt;/span&gt;                              &lt;p&gt;&lt;/p&gt;                           &lt;/p&gt;                            &lt;p&gt;&lt;/p&gt;                         &lt;/td&gt;                       &lt;/tr&gt;                     &lt;/tbody&gt;&lt;/table&gt;                 &lt;/td&gt;               &lt;/tr&gt;             &lt;/tbody&gt;&lt;/table&gt;            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;              &lt;p&gt;&amp;#160;&lt;/p&gt;           &lt;/p&gt;            &lt;p&gt;&lt;/p&gt;            &lt;table style="width: 100%; background: white; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100%"&gt;&lt;tbody&gt;               &lt;tr style="height: 71.25pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; height: 71.25pt; padding-top: 0in" valign="top"&gt;                   &lt;p style="text-align: right" class="MsoNormal" align="right"&gt;&lt;shapetype id="_x0000_t75"&gt;&lt;stroke&gt;&lt;/stroke&gt;&lt;formulas&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;f&gt;&lt;/f&gt;&lt;/formulas&gt;&lt;path&gt;&lt;/path&gt;&lt;lock aspectratio="t" v:ext="edit"&gt;&lt;/lock&gt;&lt;/shapetype&gt;&lt;shape style="z-index: 2; position: absolute; text-align: left; margin-top: 0px; width: 393pt; height: 107.25pt; visibility: visible; margin-left: 353pt; left: 0px; mso-wrap-style: square; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: right; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line" id="Picture_x0020_2" o:spid="_x0000_s1029"&gt;&lt;imagedata&gt;&lt;/imagedata&gt;&lt;wrap anchory="line"&gt;&lt;/wrap&gt;&lt;/shape&gt;&lt;span style="mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;/span&gt;                      &lt;p&gt;&lt;/p&gt;                   &lt;/p&gt;                    &lt;p&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114996&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;img border="0" alt="The Architecture Journal" align="right" src="http://i.msdn.microsoft.com/bb410935.JournalBrand(en-us,MSDN.10).jpg" width="524" height="143" /&gt;&lt;/a&gt;&lt;/p&gt;                 &lt;/td&gt;                  &lt;td style="padding-bottom: 0in; padding-left: 0in; width: 135pt; padding-right: 0in; height: 71.25pt; padding-top: 0in" valign="top" width="180"&gt;                   &lt;table style="background: #3a3a3a; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: right; mso-table-top: middle" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" align="right"&gt;&lt;tbody&gt;                       &lt;tr style="height: 71.25pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                         &lt;td style="padding-bottom: 0in; padding-left: 0in; width: 135pt; padding-right: 0in; height: 71.25pt; padding-top: 0in" valign="top" width="180"&gt;                           &lt;table style="width: 135pt; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="180"&gt;&lt;tbody&gt;                               &lt;tr style="height: 41.25pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;                                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; background: #3a3a3a; height: 41.25pt; padding-top: 0in"&gt;                                   &lt;p style="text-align: center" class="MsoNormal" align="center"&gt;&lt;a name="top"&gt;&lt;/a&gt;&lt;span style="mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-no-proof: yes"&gt;&lt;shape style="width: 115.5pt; height: 99pt; visibility: visible; mso-wrap-style: square" id="Picture_x0020_1" o:spid="_x0000_i1031"&gt;&lt;imagedata o:title="June 2009"&gt;&lt;/imagedata&gt;&lt;/shape&gt;&lt;/span&gt;&lt;span style="mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;img border="0" alt="June 2009" align="middle" src="http://i.msdn.microsoft.com/bb410935.JournalLogoOnly(en-us,MSDN.10).jpg" width="154" height="132" /&gt;&lt;/p&gt;                                 &lt;/td&gt;                               &lt;/tr&gt;                                &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;                                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; background: #3a3a3a; padding-top: 0in" valign="top"&gt;                                   &lt;p style="text-align: center" class="MsoNormal" align="center"&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;Issue 20                                        &lt;br /&gt;June 2009 &lt;/span&gt;&lt;/p&gt;                                 &lt;/td&gt;                               &lt;/tr&gt;                             &lt;/tbody&gt;&lt;/table&gt;                         &lt;/td&gt;                       &lt;/tr&gt;                     &lt;/tbody&gt;&lt;/table&gt;                 &lt;/td&gt;               &lt;/tr&gt;             &lt;/tbody&gt;&lt;/table&gt;            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;              &lt;p&gt;&amp;#160;&lt;/p&gt;           &lt;/p&gt;            &lt;p&gt;&lt;/p&gt;            &lt;table style="width: 562.5pt; background: white; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="750"&gt;&lt;tbody&gt;               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;                 &lt;td style="padding-bottom: 0in; padding-left: 15pt; padding-right: 11.25pt; padding-top: 3.75pt" valign="top" colspan="2"&gt;&lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow: 1"&gt;                 &lt;td style="padding-bottom: 0in; padding-left: 15pt; padding-right: 11.25pt; padding-top: 3.75pt" colspan="2"&gt;                   &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" colspan="2"&gt;                           &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black; font-size: 16pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;Architecture in Turbulent Times &lt;/span&gt;                              &lt;p&gt;&lt;/p&gt;                           &lt;/p&gt;                            &lt;p&gt;&lt;/p&gt;                            &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;Letter from the Editor &lt;/span&gt;                              &lt;p&gt;&lt;/p&gt;                           &lt;/p&gt;                            &lt;p&gt;&lt;/p&gt;                         &lt;/td&gt;                       &lt;/tr&gt;                        &lt;tr style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;                         &lt;td style="padding-bottom: 7.5pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&lt;/td&gt;                          &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                           &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-no-proof: yes"&gt;&lt;shape style="width: 408pt; height: 261pt; visibility: visible; mso-wrap-style: square" id="Picture_x0020_3" o:spid="_x0000_i1029"&gt;&lt;imagedata o:title="Architecture in Turbulent Times"&gt;&lt;/imagedata&gt;&lt;/shape&gt;&lt;/span&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;/span&gt;                              &lt;p&gt;&lt;/p&gt;                           &lt;/p&gt;                            &lt;p&gt;&lt;/p&gt;                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;                               &lt;br /&gt;Dear Architect,                                 &lt;br /&gt;                                &lt;br /&gt;Let's start with the basics: the goal of our Architect role is to align IT with the course of business. So far, so good, eh? So, being that almost every business has been challenged as a consequence of the current economic slowdown, we-as architects-are challenged to make our architectures follow the pace of business that these days is particularly changeable and unstable.                                 &lt;br /&gt;                                &lt;br /&gt;We thought that we had a clear understanding of the rules corresponding to the latest scenario. Having made a plan to face it, and being in the middle of the execution, we're told that the organization must now implement further changes to keep business going. The results of the last quarter were known, and growth expectations were revised to lower-perhaps negative-numbers.                                 &lt;br /&gt;                                &lt;br /&gt;This issue of The Architecture Journal won't tell you when this meltdown will end or whether we'll have kept our jobs. It will, however, share architecture strategies, IT behaviors, and-for sure-success stories. I counted on the invaluable collaboration of Mike Walker as guest editor for this issue. Mike wrote the opening article, which details how architects can add value back to the business during climates as particular as the current one. He and the other authors are architects like you and me: they didn't live during the Great Depression and, even if they had, technology in general and IT architecture as a discipline were slightly different from what they are today. They were suddenly challenged, and they responded to those challenges. Now, they tell us how they are succeeding. I hope you'll find both inspiration and courage in these pages.                                 &lt;br /&gt;                                &lt;br /&gt;By the way, as announced in the last issue, we keep adding features to the Journal to take advantage of its now mainstream digital format. We've introduced a &amp;quot;Follow Up&amp;quot; section at the end of any article that has references for going further with implementation.                                 &lt;br /&gt;                                &lt;br /&gt;This issue, we're introducing the &amp;quot;guest columnist&amp;quot; concept. You'll find that an article comes with one, two, or even three guest columnists. We intend to widen coverage on a given topic by offering different perspectives and voices. We're not yet done with these new features. Also, for those of you who are interested in receiving a printed version, we're still working on a print on-demand model.                                 &lt;br /&gt;                                &lt;br /&gt;By chance, are you interested in writing an article for the Journal? We just finished a call for papers on &amp;quot;SOA at the end of the decade,&amp;quot; and we thank all of you who participated in that call. You can learn about a future call for papers by subscribing to The Architecture Journal newsletter, which you can do by visiting &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114985&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;i&gt;The Architecture Journal&lt;/i&gt; Web site&lt;/a&gt;.                                 &lt;br /&gt;                                &lt;br /&gt;As always, you can let us know your opinions directly by &lt;a href="mailto:archjrnl@microsoft.com?subject="&gt;e-mailing us&lt;/a&gt;.                                 &lt;br /&gt;                                &lt;br /&gt;                                &lt;br /&gt;Diego Dagum                                 &lt;br /&gt;Editor-in-Chief &lt;/span&gt;                              &lt;p&gt;&lt;/p&gt;                           &lt;/p&gt;                            &lt;p&gt;&lt;/p&gt;                         &lt;/td&gt;                       &lt;/tr&gt;                     &lt;/tbody&gt;&lt;/table&gt;                 &lt;/td&gt;               &lt;/tr&gt;                &lt;tr style="mso-yfti-irow: 2; mso-yfti-lastrow: yes"&gt;                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                   &lt;table style="width: 100%; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100%"&gt;&lt;tbody&gt;                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 7.5pt" valign="top"&gt;                           &lt;table style="mso-cellspacing: 1.5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt" class="MsoNormalTable" border="0" cellpadding="0"&gt;&lt;tbody&gt;                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                 &lt;td style="padding-bottom: 0.75pt; padding-left: 0.75pt; padding-right: 0.75pt; padding-top: 0.75pt"&gt;                                   &lt;table style="width: 100%; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100%"&gt;&lt;tbody&gt;                                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                         &lt;td style="padding-bottom: 0in; padding-left: 15pt; padding-right: 11.25pt; padding-top: 3.75pt"&gt;                                           &lt;p class="MsoNormal"&gt;&lt;a name="EAABAAAA"&gt;&lt;/a&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 11.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;Contents &lt;/span&gt;                                                &lt;p&gt;&lt;/p&gt;                                             &lt;/b&gt;&lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115000&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Architecture in Turbulent Times&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Mike Walker (Microsoft).                                                        &lt;br /&gt;A review of how the crisis is changing the business agenda, how architectural priorities are altered as a consequence, and a method for maximizing architecture decisions. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                              &lt;p&gt;&amp;#160;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115001&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Reuse, Buy, or Build: Components and Services&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Simon Thurman (Microsoft) and Phil Rowland (Capgemini UK).                                                        &lt;br /&gt;An exploration of the attributes that drive a decision, high-order considerations, forces that may influence the process, and how to extract a conclusion after a balanced analysis. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                              &lt;p&gt;&amp;#160;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115002&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&amp;quot;Live Long and Prosper&amp;quot;: Customer and Employee Retention with an Agile Process&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Rodney Guzman (InterKnowlogy).                                                        &lt;br /&gt;Lessons learned from a concrete case study on how a real software shop delivers on time, even with changing definitions (for instance, those taken under pressure these days), and keeping customers and employees so satisfied that they don't think about leaving you. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                              &lt;p&gt;&amp;#160;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115003&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Surviving Turbulent Times: Prioritizing IT Initiatives Using Business Architecture&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Martin Sykes (Microsoft) and Brad Clayton (Microsoft).                                                        &lt;br /&gt;How Microsoft prioritizes its project portfolio to maximize return on investment (ROI), determining the projects that should receive budget and resource allocation. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                              &lt;p&gt;&amp;#160;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115004&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Practical Architecture in Impractical Times&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Matt Valentine (Microsoft).                                                        &lt;br /&gt;Mindsets, practices, and an invaluable set of illustrative real-world case studies to help understand that progress isn't but the consequence of a former stagnation. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                              &lt;p&gt;&amp;#160;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115005&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Reducing Infrastructure Costs Through Virtualization&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Leandro Sgallari (TI Sistemas).                                                        &lt;br /&gt;A review of the multiple virtualization techniques that allow you to get more for less. This article quantifies the margins to be saved, as no other articles on virtualization have done. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                              &lt;p&gt;&amp;#160;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 15pt; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                                   &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115006&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Engineering in the Cloud: An Engineering Software + Services Architecture Forged in Turbulent Times&lt;/a&gt; &lt;/span&gt;                                                        &lt;p&gt;&lt;/p&gt;                                                     &lt;/b&gt;&lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                    &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;By Peter Williams (dezineforce) and Simon Cox (dezineforce).                                                        &lt;br /&gt;A real-world story of a company that switched from manufacturing and delivering a solution hosted entirely by its customers on an expensive infrastructure, to offering the application as a service, with the consequent cost reduction for its customers. &lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;table style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" align="left"&gt;&lt;tbody&gt;                                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;&amp;#160;&lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;                                                   &lt;p class="MsoNormal"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115007&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="text-decoration: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; text-underline: none; mso-no-proof: yes"&gt;&lt;shape style="width: 75pt; height: 101.25pt; visibility: visible; mso-wrap-style: square" id="Picture_x0020_4" o:spid="_x0000_i1028"&gt;&lt;imagedata o:title="Journal 20 - Architecture in Turbulent Times"&gt;&lt;/imagedata&gt;&lt;/shape&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; width: 9pt; padding-right: 0in; padding-top: 0in" width="12"&gt;                                                   &lt;p class="MsoNormal"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115007&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;img border="0" alt="Journal 20 - Architecture in Turbulent Times" src="http://i.msdn.microsoft.com/bb410935.Journal-20(en-us,MSDN.10).jpg" width="100" height="135" /&gt;&lt;/a&gt;&lt;span style="mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;/span&gt;                                                      &lt;p&gt;&lt;/p&gt;                                                   &lt;/p&gt;                                                    &lt;p&gt;&lt;/p&gt;                                                 &lt;/td&gt;                                               &lt;/tr&gt;                                             &lt;/tbody&gt;&lt;/table&gt;                                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114986&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Download This Issue as a PDF&lt;/a&gt; &lt;/span&gt;                                              &lt;p&gt;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114987&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Find more architecture resources&lt;/a&gt; &lt;/span&gt;                                              &lt;p&gt;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                         &lt;/td&gt;                                       &lt;/tr&gt;                                     &lt;/tbody&gt;&lt;/table&gt;                                 &lt;/td&gt;                                  &lt;td style="padding-bottom: 0.75pt; padding-left: 0.75pt; width: 9pt; padding-right: 0.75pt; padding-top: 0.75pt" width="12"&gt;&amp;#160;&lt;/td&gt;                               &lt;/tr&gt;                             &lt;/tbody&gt;&lt;/table&gt;                         &lt;/td&gt;                          &lt;td style="padding-bottom: 0in; padding-left: 0in; width: 135pt; padding-right: 0in; padding-top: 0in" valign="top" width="180"&gt;                           &lt;table style="width: 100%; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100%"&gt;&lt;tbody&gt;                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                 &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in" valign="top"&gt;                                   &lt;table style="width: 135pt; background: #dddddd; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="180"&gt;&lt;tbody&gt;                                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;                                           &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;MSDN Mag, June&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115008&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;img border="0" alt="MSDN Magazine - June 2009" src="http://i.msdn.microsoft.com/dd767791.June09Cover(en-us,MSDN.10).jpg" width="150" height="195" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                                         &lt;/td&gt;                                       &lt;/tr&gt;                                     &lt;/tbody&gt;&lt;/table&gt;                                    &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                    &lt;table style="width: 135pt; background: #cacaca; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="180"&gt;&lt;tbody&gt;                                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;                                           &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;TechNet Mag, June&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;                                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12115009&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;img border="0" alt="Technet Magazine - June 2009" src="http://i.technet.microsoft.com/dd353269.062009(en-us).gif" width="150" height="195" /&gt;&lt;/a&gt;&lt;/p&gt;                                         &lt;/td&gt;                                       &lt;/tr&gt;                                     &lt;/tbody&gt;&lt;/table&gt;                                    &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                    &lt;table style="width: 135pt; background: #dddddd; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="180"&gt;&lt;tbody&gt;                                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;                                           &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;p&amp;amp;p Summit, 2009 &lt;/span&gt;                                                &lt;p&gt;&lt;/p&gt;                                             &lt;/b&gt;&lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;If you are a software architect or developer who is passionate about mastering your craft, you should register now to attend the next &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114988&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;b&gt;patterns &amp;amp; practices Summit&lt;/b&gt;&lt;/a&gt;, October 12-16th at the Microsoft Conference Center in Redmond, Washington. &lt;/span&gt;                                              &lt;p&gt;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                         &lt;/td&gt;                                       &lt;/tr&gt;                                     &lt;/tbody&gt;&lt;/table&gt;                                    &lt;p class="MsoNormal"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                    &lt;table style="width: 135pt; background: #cacaca; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="180"&gt;&lt;tbody&gt;                                       &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;                                           &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 8.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;Infrastructure Planning and Design &lt;/span&gt;                                                &lt;p&gt;&lt;/p&gt;                                             &lt;/b&gt;&lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                            &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;Considering an online solution for your organization's collaboration services? The &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114989&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;b&gt;SharePoint Online-Evaluating Software-plus-Services&lt;/b&gt;&lt;/a&gt; guide presents a clear comparison of SharePoint collaboration technologies across on-premises, standard hosting, and dedicated hosting scenarios. &lt;/span&gt;                                              &lt;p&gt;&lt;/p&gt;                                           &lt;/p&gt;                                            &lt;p&gt;&lt;/p&gt;                                         &lt;/td&gt;                                       &lt;/tr&gt;                                     &lt;/tbody&gt;&lt;/table&gt;                                    &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 11pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-fareast-theme-font: minor-fareast; mso-bidi-font-family: &amp;#39;Times New Roman&amp;#39;; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-bidi"&gt;&lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                 &lt;/td&gt;                               &lt;/tr&gt;                             &lt;/tbody&gt;&lt;/table&gt;                         &lt;/td&gt;                       &lt;/tr&gt;                        &lt;tr style="mso-yfti-irow: 1"&gt;                         &lt;td style="padding-bottom: 3.75pt; padding-left: 15pt; padding-right: 11.25pt; padding-top: 3.75pt"&gt;                           &lt;p style="line-height: 140%" class="MsoNormal"&gt;&lt;span style="line-height: 140%; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;To cancel your subscription to this newsletter, reply to this message with the word UNSUBSCRIBE in the Subject line. You can also unsubscribe at &lt;a href="http://msdn.microsoft.com/en-us/architecture/bb410935.aspx"&gt;the Architecture Journal web site&lt;/a&gt;. You can manage all your Microsoft.com communication preferences at this site.                                 &lt;br /&gt;                                &lt;br /&gt;&lt;a href="https://profile.microsoft.com/RegSysProfileCenter/SubCntDefault.aspx"&gt;Legal Information&lt;/a&gt;.                                 &lt;br /&gt;                                &lt;br /&gt;This newsletter was sent by the Microsoft Corporation                                 &lt;br /&gt;1 Microsoft Way                                 &lt;br /&gt;Redmond, Washington, USA                                 &lt;br /&gt;98052 &lt;/span&gt;                              &lt;p&gt;&lt;/p&gt;                           &lt;/p&gt;                            &lt;p&gt;&lt;/p&gt;                         &lt;/td&gt;                          &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;&lt;/td&gt;                       &lt;/tr&gt;                        &lt;tr style="mso-yfti-irow: 2; mso-yfti-lastrow: yes"&gt;                         &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; background: #3a3a3a; padding-top: 0in" colspan="2"&gt;                           &lt;table style="width: 457.5pt; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="610" align="left"&gt;&lt;tbody&gt;                               &lt;tr style="height: 37.5pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                 &lt;td style="padding-bottom: 3.75pt; padding-left: 7.5pt; padding-right: 3.75pt; background: #3a3a3a; height: 37.5pt; padding-top: 3.75pt"&gt;                                   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: #666666; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114993&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white"&gt;Sign up for this newsletter&lt;/span&gt;&lt;/a&gt; | &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114994&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white"&gt;Unsubscribe&lt;/span&gt;&lt;/a&gt; | &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114995&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white"&gt;Update your profile&lt;/span&gt;&lt;/a&gt; &lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                    &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: white; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;© 2009 Microsoft Corporation &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114997&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white"&gt;Terms of Use&lt;/span&gt;&lt;/a&gt; | &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114998&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white"&gt;Trademarks&lt;/span&gt;&lt;/a&gt; | &lt;a href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=12114999&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;span style="color: white"&gt;Privacy Statement&lt;/span&gt;&lt;/a&gt; &lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                 &lt;/td&gt;                               &lt;/tr&gt;                             &lt;/tbody&gt;&lt;/table&gt;                            &lt;table style="width: 75pt; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: right; mso-table-top: middle" class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="100" align="right"&gt;&lt;tbody&gt;                               &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;                                 &lt;td style="padding-bottom: 0in; padding-left: 7.5pt; padding-right: 0in; background: #3a3a3a; padding-top: 0in"&gt;                                   &lt;p class="MsoNormal"&gt;&lt;shape style="z-index: 1; position: absolute; margin-top: 0px; width: 75pt; height: 37.5pt; visibility: visible; margin-left: 35pt; mso-wrap-style: square; mso-wrap-distance-left: 0; mso-wrap-distance-top: 0; mso-wrap-distance-right: 0; mso-wrap-distance-bottom: 0; mso-position-horizontal: right; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: line" id="Picture_x0020_3" o:spid="_x0000_s1028"&gt;&lt;imagedata&gt;&lt;/imagedata&gt;&lt;wrap anchory="line"&gt;&lt;/wrap&gt;&lt;/shape&gt;&lt;img alt="Microsoft" align="right" src="http://www.microsoft.com/library/images/pens/mslogos/MSlogo_PeopleReady.gif" width="100" height="50" /&gt;&lt;span style="font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: #666666; font-size: 7.5pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt; &lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                 &lt;/td&gt;                                  &lt;td style="padding-bottom: 0in; padding-left: 0in; width: 0.3pt; padding-right: 0in; padding-top: 0in" valign="bottom"&gt;&lt;layer visibility="hide"&gt;                                   &lt;p style="text-align: right; mso-line-height-alt: 0pt" class="MsoNormal" align="right"&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all; mso-no-proof: yes"&gt;&lt;shape style="width: 0.75pt; height: 0.75pt; visibility: visible; mso-wrap-style: square" id="Picture_x0020_7" o:spid="_x0000_i1025"&gt;&lt;imagedata o:title="Empty"&gt;&lt;/imagedata&gt;&lt;/shape&gt;&lt;/span&gt;&lt;span style="display: none; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-hide: all"&gt;&lt;/span&gt;                                      &lt;p&gt;&lt;/p&gt;                                   &lt;/p&gt;                                    &lt;p&gt;&lt;/p&gt;                                 &lt;/td&gt;                               &lt;/tr&gt;                             &lt;/tbody&gt;&lt;/table&gt;                         &lt;/td&gt;                       &lt;/tr&gt;                     &lt;/tbody&gt;&lt;/table&gt;                 &lt;/td&gt;                  &lt;td style="padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in"&gt;&lt;/td&gt;               &lt;/tr&gt;             &lt;/tbody&gt;&lt;/table&gt;            &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 11pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-fareast-theme-font: minor-fareast; mso-bidi-font-family: &amp;#39;Times New Roman&amp;#39;; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-bidi"&gt;&lt;/span&gt;              &lt;p&gt;&lt;/p&gt;           &lt;/p&gt;            &lt;p&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;     &lt;/tbody&gt;&lt;/table&gt;    &lt;p class="MsoNormal"&gt;&lt;span style="mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;"&gt;&lt;/span&gt;      &lt;p&gt;&amp;#160;&lt;/p&gt;   &lt;/p&gt;    &lt;p&gt;&lt;/p&gt;    &lt;p class="MsoNormal"&gt;&lt;/p&gt;    &lt;p&gt;&amp;#160;&lt;/p&gt;    &lt;p&gt;&lt;/p&gt; &lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9793040" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="The Architecture Journal" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/The+Architecture+Journal/" /></entry><entry><title>The Architecture Newsletter, May 2009</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2009/05/22/the-architecture-newsletter-may-2009.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2009/05/22/the-architecture-newsletter-may-2009.aspx</id><published>2009-05-22T02:21:00Z</published><updated>2009-05-22T02:21:00Z</updated><content type="html">&lt;TABLE style="BORDER-BOTTOM: #999999 1pt solid; BORDER-LEFT: #999999 1pt solid; WIDTH: 562.5pt; BORDER-TOP: #999999 1pt solid; BORDER-RIGHT: #999999 1pt solid; mso-cellspacing: 0in; mso-border-alt: solid #999999 .75pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=1 cellSpacing=0 cellPadding=0 width=750 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; PADDING-BOTTOM: 0in; BORDER-RIGHT-STYLE: none; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none; PADDING-TOP: 0in"&gt;
&lt;TABLE style="WIDTH: 100%; BACKGROUND: white; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width="100%" class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;TABLE style="WIDTH: 100%; BACKGROUND: #3a3a3a; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width="100%" class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 15pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 3.75pt; HEIGHT: 15pt; PADDING-TOP: 0in" noWrap&gt;
&lt;P style="TEXT-ALIGN: right" class=MsoNormal align=right&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947795&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947795&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white; TEXT-DECORATION: none; text-underline: none"&gt;Sign up for this newsletter&lt;/SPAN&gt;&lt;/A&gt; &lt;/SPAN&gt;&lt;SPAN style="COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;| &lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947796&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947796&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white; TEXT-DECORATION: none; text-underline: none"&gt;Unsubscribe&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt; | &lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947797&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947797&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white; TEXT-DECORATION: none; text-underline: none"&gt;Update your profile&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;?xml:namespace prefix = o /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE style="WIDTH: 100%; BACKGROUND: white; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: right; mso-table-top: middle" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width="100%" align=right class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;
&lt;DIV align=right&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 71.25pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; HEIGHT: 71.25pt; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="TEXT-ALIGN: right" class=MsoNormal align=right&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947798&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947798&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;IMG title="" border=0 alt="The Architecture Journal" align=right src="http://i.msdn.microsoft.com/bb410935.JournalBrand(en-us,MSDN.10).jpg" width=524 height=143 v:shapes="Picture_x0020_2" mce_src="http://i.msdn.microsoft.com/bb410935.JournalBrand(en-us,MSDN.10).jpg"&gt;&lt;/A&gt;&lt;A title=top name=top&gt;&lt;/A&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 135pt; PADDING-RIGHT: 0in; HEIGHT: 71.25pt; PADDING-TOP: 0in" vAlign=top width=180&gt;
&lt;TABLE style="BACKGROUND: #3a3a3a; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: right; mso-table-top: middle" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 align=right class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 71.25pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 135pt; PADDING-RIGHT: 0in; HEIGHT: 71.25pt; PADDING-TOP: 0in" vAlign=top width=180&gt;
&lt;TABLE style="WIDTH: 135pt; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width=180 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 41.25pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BACKGROUND: #3a3a3a; HEIGHT: 41.25pt; PADDING-TOP: 0in"&gt;
&lt;P style="TEXT-ALIGN: center" class=MsoNormal align=center&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'; mso-no-proof: yes"&gt;&lt;IMG border=0 alt="May 2009" src="http://i.msdn.microsoft.com/bb410935.JournalLogoOnly(en-us,MSDN.10).jpg" width=154 height=132 v:shapes="Picture_x0020_1" mce_src="http://i.msdn.microsoft.com/bb410935.JournalLogoOnly(en-us,MSDN.10).jpg"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BACKGROUND: #3a3a3a; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="TEXT-ALIGN: center" class=MsoNormal align=center&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;SOA Call for Papers &lt;BR&gt;&lt;SPAN style="mso-no-proof: yes"&gt;&lt;IMG border=0 alt=http://www.microsoft.com/library/images/pens/system/1ptrans.gif src="http://blogs.msdn.com/controlpanel/blogs/newsletter2_files/image003.gif" width=1 height=4 v:shapes="Picture_x0020_2" mce_src="newsletter2_files/image003.gif"&gt;&lt;/SPAN&gt; &lt;BR&gt;May 2009&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 15pt; PADDING-RIGHT: 11.25pt; PADDING-TOP: 3.75pt"&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 15pt; PADDING-RIGHT: 11.25pt; PADDING-TOP: 3.75pt"&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 7.5pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: black; FONT-SIZE: 16pt; mso-fareast-font-family: 'Times New Roman'"&gt;SOA Keys for Success&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; mso-fareast-font-family: 'Times New Roman'"&gt;Call for Papers&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;The 21st issue of the Architecture Journal will be devoted to &lt;B&gt;SOA Keys for Success&lt;/B&gt;. &lt;BR&gt;&lt;BR&gt;While Cloud, Utility, and Green Computing trends emerge as probable candidates for the top of the enterprise IT agenda for the next decade, SOA undoubtedly has been the priority during this decade, and particularly during these five last years. &lt;BR&gt;&lt;BR&gt;The initial appeal of SOA came when the industry acknowledged how standards such as XML Web Services easily achieved decoupled levels of integration that were unseen on previous, complex attempts such as CORBA or COM. &lt;BR&gt;&lt;BR&gt;Then came the SOA rush, and a growing number of companies embarked on SOA projects while Web Services standards continued to evolve in order to close the gap in security, reliable messaging, and transactional integrity. &lt;BR&gt;&lt;BR&gt;Some years later, we can confirm that SOA has accomplished its promise of interoperability. But where SOA practitioners probably will disagree is on the total cost of ownership of this kind of project. We might find as many successful stories (on time, on budget, and straightforward) as not-so-successful stories (more expensive than projected, unforeseeable complexity, and so on). &lt;BR&gt;&lt;BR&gt;What are the factors that make the difference? We are calling for articles on: &lt;BR&gt;&lt;BR&gt;. &lt;B&gt;SOA practices&lt;/B&gt;. Which ones determine the success-or failure-of a project? &lt;BR&gt;. &lt;B&gt;SOA governance&lt;/B&gt;. Running, monitoring, versioning: How better to serve services? &lt;BR&gt;. &lt;B&gt;To ESB or not to ESB&lt;/B&gt;. Angel or demon? When to consider it a fundamental piece? What about it should you get rid of? &lt;BR&gt;. &lt;B&gt;From object to services&lt;/B&gt;. Considerations to guarantee separation of concerns after shifting paradigms. &lt;BR&gt;. &lt;B&gt;Enhanced SOA&lt;/B&gt;. How alternative, complementary approaches such as Event-Driven Architecture (EDA), REST protocols, service virtualization, and others are helping SOA traverse the last mile of integration. &lt;BR&gt;. &lt;B&gt;SOA and The Cloud&lt;/B&gt;. What SaaS, S+S, and related emerging delivery models have to offer to an in-house SOA investment. &lt;BR&gt;&lt;BR&gt;If you have ideas on these topics that you would like to share with the architecture community, this is your chance! To submit an idea for an article, please send the following before &lt;B&gt;June 11, 2009&lt;/B&gt;: &lt;BR&gt;&lt;BR&gt;. An abstract of between two and four paragraphs that explains what the reader will get from your article with regard to the "&lt;B&gt;SOA Keys for Success&lt;/B&gt;" theme of the issue. If you like, you may submit on an alternative topic; we have published out-of-theme articles in the past. However, your chances of being selected might be lower. &lt;BR&gt;. A bio of between one and two paragraphs. &lt;BR&gt;. A list of your previously published articles, if any. &lt;BR&gt;&lt;BR&gt;Submissions should be made via e-mail to &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="mailto:archjrnl@microsoft.com" mce_href="mailto:archjrnl@microsoft.com"&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;archjrnl@microsoft.com&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt; (we receive many submissions for each issue, so we encourage you to put time and thought into your submission). &lt;BR&gt;&lt;BR&gt;After the call for articles has ended, everyone who has submitted an idea will be notified via e-mail as to whether their submission was successful or not. If it is accepted, your article must follow this schedule: &lt;BR&gt;&lt;BR&gt;. &lt;B&gt;June 17&lt;/B&gt;. Acceptance notified. &lt;BR&gt;. &lt;B&gt;July 8&lt;/B&gt;. First draft (possibly unfinished) is due. &lt;BR&gt;. &lt;B&gt;July 22&lt;/B&gt;. Final draft is due.* &lt;BR&gt;. &lt;B&gt;September 5&lt;/B&gt;. Your article and the Journal are ready and published. &lt;BR&gt;&lt;BR&gt;* We recommend that articles be between 2,500 and 3,500 words in length. We will ask you to sign a release form that gives Microsoft permission to reprint the article, although ownership of the article will remain with you. &lt;BR&gt;&lt;BR&gt;For more information, check out &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947790&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947790&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;this link&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt; or contact us at &lt;A href="mailto:archjrnl@microsoft.com" mce_href="mailto:archjrnl@microsoft.com"&gt;archjrnl@microsoft.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;. Good luck!&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;
&lt;DIV style="TEXT-ALIGN: center; LINE-HEIGHT: 140%" class=MsoNormal align=center&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;
&lt;HR style="COLOR: #cccccc" align=center SIZE=1 width="100%" noShade&gt;
&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 3; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;TABLE style="WIDTH: 100%; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" id=table3 class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width="100%" class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 7.5pt" vAlign=top&gt;
&lt;TABLE style="mso-cellspacing: 1.5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt" class=MsoNormalTable border=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-RIGHT: 0.75pt; PADDING-TOP: 0.75pt"&gt;
&lt;TABLE style="WIDTH: 100%; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width="100%" class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 15pt; PADDING-RIGHT: 11.25pt; PADDING-TOP: 3.75pt"&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-row-margin-right: 24.0pt"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" colSpan=4&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-bookmark: top"&gt;&lt;A title=ECAAAAAA name=ECAAAAAA&gt;&lt;/A&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 11.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Architecture Resources: Editor's Choice&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; PADDING-BOTTOM: 0in; BORDER-RIGHT-STYLE: none; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none; PADDING-TOP: 0in; mso-cell-special: placeholder" width=32&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 50%; PADDING-RIGHT: 7.5pt; PADDING-TOP: 0in" vAlign=top width="50%"&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947802&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947802&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;ALM: Download the Microsoft Visual Studio 2010 Beta&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;VSTS 2010 Architecture supports both Unified Modeling Language and Domain Specific Language, core part of the larger Microsoft modeling platform, which will also include the &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947791&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947791&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;"Oslo"&lt;/A&gt; repository, tools and language.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://soa.sys-con.com/node/904780" mce_href="http://soa.sys-con.com/node/904780"&gt;[SOA World] The Five Pillars of Cloud Computing&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Cloud computing requires a dynamic computing infrastructure - there are four other pillars, too.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947803&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947803&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Federated Identity: "Geneva" Beta 2 Released&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;"Geneva" is Microsoft's open platform for user access that helps companies simplify access to applications and other systems with an interoperable claims-based model.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://visualstudiomagazine.com/Blogs/RDN-Express/2009/05/Reaching-for-the-Cloud.aspx" mce_href="http://visualstudiomagazine.com/Blogs/RDN-Express/2009/05/Reaching-for-the-Cloud.aspx"&gt;[Visual Studio Magazine] Reaching for the Cloud?&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;It seems developers are either quite immersed in the technical underpinnings of Redmond's next-generation platform (Azure cloud services) or they're ambivalent about it.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947804&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947804&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Rich Internet Applications: .NET RIA Services&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;A framework that provides a pattern to write application logic that runs on the mid-tier and controls access to data for queries, changes and custom operations.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BACKGROUND: #e3e3e3; PADDING-TOP: 0in"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'; mso-no-proof: yes"&gt;&lt;IMG border=0 alt=http://www.microsoft.com/library/images/pens/system/1ptrans.gif src="http://blogs.msdn.com/controlpanel/blogs/newsletter2_files/image002.gif" width=1 height=1 v:shapes="Picture_x0020_4" mce_src="newsletter2_files/image002.gif"&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 7.5pt; WIDTH: 50%; PADDING-RIGHT: 7.5pt; PADDING-TOP: 0in" vAlign=top width="50%"&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://www.infoq.com/articles/virtual-service-grids-intel" mce_href="http://www.infoq.com/articles/virtual-service-grids-intel"&gt;[infoQ] Virtual Service Oriented Grids&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;This article discusses virtualization, service orientation, and grid computing, and then shows how they are combining to create new design and deployment options.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947805&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947805&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;SOA and BPM: BizTalk Server 2009 Ready&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Enhancements and new features were introduced in four main areas: latest MS platforms, developer productivity and application life cycle management, agile SOA and end-to-end supply chain management.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://java.sys-con.com/node/905532" mce_href="http://java.sys-con.com/node/905532"&gt;[Java Developer's Journal] Application Grids&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Doing more with less infrastructure.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947806&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947806&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Remote Server Administration for Windows 7&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;IT administrators can now manage roles and features that are installed on computers that are running Windows Server 2008 or Windows Server 2003, from a remote computer that is running Windows 7 RC. &lt;BR&gt;Extra: &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947792&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947792&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Will Windows 7 run in your desktops?&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://www.esj.com/articles/2009/05/12/Outsourcing.aspx" mce_href="http://www.esj.com/articles/2009/05/12/Outsourcing.aspx"&gt;[Enterprise Systems] Outsourcing Status&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Although outsourcing revenues increased by nearly 50 percent last year, experts predict slowing demand for outsourcing services in the first half of this year.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE: 10pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 50%; PADDING-RIGHT: 0in; PADDING-TOP: 0in" width="50%"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" width=346&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" width=1&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" width=346&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;A title=EBAAAAAA name=EBAAAAAA&gt;&lt;/A&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Get more resources at &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947793&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947793&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;MSDN Architecture Center&lt;/A&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV style="TEXT-ALIGN: center; LINE-HEIGHT: 140%" class=MsoNormal align=center&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;
&lt;HR style="COLOR: #cccccc" align=center SIZE=1 width="100%" noShade&gt;
&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-row-margin-right: 24.0pt"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" colSpan=4&gt;
&lt;P class=MsoNormal&gt;&lt;A title=EAAAAAAA name=EAAAAAAA&gt;&lt;/A&gt;&lt;B&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 11.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;From Ideas to Real Implementation&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; PADDING-BOTTOM: 0in; BORDER-RIGHT-STYLE: none; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none; PADDING-TOP: 0in; mso-cell-special: placeholder" width=32&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 50%; PADDING-RIGHT: 7.5pt; PADDING-TOP: 0in" vAlign=top width="50%"&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 align=left class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;
&lt;P class=MsoNormal&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947808&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947808&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="TEXT-DECORATION: none; mso-fareast-font-family: 'Times New Roman'; text-underline: none; mso-no-proof: yes"&gt;&lt;SPAN style="mso-ignore: vglayout"&gt;&lt;IMG border=0 alt="Going Green TechNet Special Issue" src="http://i.technet.microsoft.com/dd353269.GR2009(en-us).gif" width=102 height=135 v:shapes="Picture_x0020_6" mce_src="http://i.technet.microsoft.com/dd353269.GR2009(en-us).gif"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 9pt; PADDING-RIGHT: 0in; PADDING-TOP: 0in" width=12&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&amp;nbsp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947807&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947807&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;Online Only: Earth Day TechNet Special Issue&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Framework for Building a "Hyper-Green" Virtual Server System &lt;BR&gt;Planning Your Power Management and Virtualization Strategies &lt;BR&gt;Essential Tools for Planning Your Virtual Infrastructure &lt;BR&gt;Build a Green Datacenter &lt;BR&gt;... and more!!&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BACKGROUND: #e3e3e3; PADDING-TOP: 0in"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'; mso-no-proof: yes"&gt;&lt;IMG border=0 alt=http://www.microsoft.com/library/images/pens/system/1ptrans.gif src="http://blogs.msdn.com/controlpanel/blogs/newsletter2_files/image002.gif" width=1 height=1 v:shapes="Picture_x0020_7" mce_src="newsletter2_files/image002.gif"&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 7.5pt; WIDTH: 50%; PADDING-RIGHT: 7.5pt; PADDING-TOP: 0in" vAlign=top width="50%"&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 15pt; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;TABLE style="mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 align=left class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;
&lt;P class=MsoNormal&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947810&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947810&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="TEXT-DECORATION: none; mso-fareast-font-family: 'Times New Roman'; text-underline: none; mso-no-proof: yes"&gt;&lt;SPAN style="mso-ignore: vglayout"&gt;&lt;IMG border=0 alt="TechNet Magazine - May 2009" src="http://i.technet.microsoft.com/dd353269.062009(en-us).gif" width=102 height=135 v:shapes="Picture_x0020_8" mce_src="http://i.technet.microsoft.com/dd353269.062009(en-us).gif"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 9pt; PADDING-RIGHT: 0in; PADDING-TOP: 0in" width=12&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'Times New Roman'"&gt;&amp;nbsp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=top&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;B&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947809&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947809&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;TechNet Magazine June: Application Compatibility&lt;/A&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;Providing Scalability for ASP.NET Applications &lt;BR&gt;Inside the Application Compatibility Toolkit 5.5 &lt;BR&gt;Planning Your Application Compatibility Project &lt;BR&gt;Automating Group Policy Management with Windows PowerShell &lt;BR&gt;... and more!!&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 50%; PADDING-RIGHT: 0in; PADDING-TOP: 0in" width="50%"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" width=346&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" width=1&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" width=346&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;DIV style="TEXT-ALIGN: center; LINE-HEIGHT: 140%" class=MsoNormal align=center&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 8.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;
&lt;HR style="COLOR: #cccccc" align=center SIZE=1 width="100%" noShade&gt;
&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0.75pt; PADDING-LEFT: 0.75pt; WIDTH: 9pt; PADDING-RIGHT: 0.75pt; PADDING-TOP: 0.75pt" width=12&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD style="PADDING-BOTTOM: 3.75pt; PADDING-LEFT: 15pt; PADDING-RIGHT: 11.25pt; PADDING-TOP: 3.75pt"&gt;
&lt;P style="LINE-HEIGHT: 140%" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT: 140%; FONT-FAMILY: 'Verdana','sans-serif'; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;To cancel your subscription to this newsletter, unsubscribe at &lt;A href="http://msdn.microsoft.com/en-us/architecture/bb410935.aspx" mce_href="http://msdn.microsoft.com/en-us/architecture/bb410935.aspx"&gt;the Architecture Journal web site&lt;/A&gt;. You can manage all your Microsoft.com communication preferences at this site. &lt;BR&gt;&lt;BR&gt;&lt;A href="https://profile.microsoft.com/RegSysProfileCenter/SubCntDefault.aspx" mce_href="https://profile.microsoft.com/RegSysProfileCenter/SubCntDefault.aspx"&gt;Legal Information&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;This newsletter was sent by the Microsoft Corporation &lt;BR&gt;1 Microsoft Way &lt;BR&gt;Redmond, Washington, USA &lt;BR&gt;98052&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; PADDING-TOP: 0in"&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BACKGROUND: #3a3a3a; PADDING-TOP: 0in" colSpan=2&gt;
&lt;TABLE style="WIDTH: 457.5pt; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width=610 align=left class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 37.5pt; mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 3.75pt; PADDING-LEFT: 7.5pt; PADDING-RIGHT: 3.75pt; BACKGROUND: #3a3a3a; HEIGHT: 37.5pt; PADDING-TOP: 3.75pt"&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: #666666; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947795&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947795&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white"&gt;Sign up for this newsletter&lt;/SPAN&gt;&lt;/A&gt; | &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947796&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947796&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white"&gt;Unsubscribe&lt;/SPAN&gt;&lt;/A&gt; | &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947797&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947797&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white"&gt;Update your profile&lt;/SPAN&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: white; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;© 2009 Microsoft Corporation &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947799&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947799&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white"&gt;Terms of Use&lt;/SPAN&gt;&lt;/A&gt; | &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947800&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947800&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white"&gt;Trademarks&lt;/SPAN&gt;&lt;/A&gt; | &lt;A href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947801&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e" mce_href="http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/mcoeredirect.aspx?linkId=11947801&amp;amp;s1=ae4521b8-aa45-a730-abcf-508a610b862e"&gt;&lt;SPAN style="COLOR: white"&gt;Privacy Statement&lt;/SPAN&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE style="WIDTH: 75pt; mso-cellspacing: 0in; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 0in 0in 0in; mso-table-lspace: 2.25pt; mso-table-rspace: 2.25pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: right; mso-table-top: middle" class=MsoNormalTable border=0 cellSpacing=0 cellPadding=0 width=100 align=right class="MsoNormalTable"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes"&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 7.5pt; PADDING-RIGHT: 0in; BACKGROUND: #3a3a3a; PADDING-TOP: 0in"&gt;
&lt;P class=MsoNormal&gt;&lt;IMG alt=Microsoft align=right src="http://www.microsoft.com/library/images/pens/mslogos/MSlogo_PeopleReady.gif" width=100 height=50 v:shapes="Picture_x0020_3" mce_src="http://www.microsoft.com/library/images/pens/mslogos/MSlogo_PeopleReady.gif"&gt;&lt;SPAN style="FONT-FAMILY: 'Verdana','sans-serif'; COLOR: #666666; FONT-SIZE: 7.5pt; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="PADDING-BOTTOM: 0in; PADDING-LEFT: 0in; WIDTH: 0.3pt; PADDING-RIGHT: 0in; PADDING-TOP: 0in" vAlign=bottom&gt;&lt;LAYER visibility="hide"&gt;
&lt;P style="TEXT-ALIGN: right; mso-line-height-alt: 0pt" class=MsoNormal align=right&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-no-proof: yes; mso-hide: all"&gt;&lt;IMG border=0 alt=http://co1piltwb.partners.extranet.microsoft.com/mcoeredir/Empty.gif?J1=177956&amp;amp;J2=1&amp;amp;S1=ae4521b8-aa45-a730-abcf-508a610b862e src="http://blogs.msdn.com/controlpanel/blogs/newsletter2_files/image002.gif" width=1 height=1 v:shapes="Picture_x0020_10" mce_src="newsletter2_files/image002.gif"&gt;&lt;/SPAN&gt;&lt;SPAN style="DISPLAY: none; mso-fareast-font-family: 'Times New Roman'; mso-hide: all"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9634473" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="The Architecture Journal" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/The+Architecture+Journal/" /><category term="Call for Papers" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Call+for+Papers/" /><category term="Service Oriented Architecture" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Service+Oriented+Architecture/" /></entry><entry><title>Speaking on Mission-Critical Apps at SATURN 2009 (SEI's Architecture Conference) – May 7, Pittsburgh, PA</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2009/04/10/speaking-on-mission-critical-apps-at-saturn-2009-sei-s-architecture-conference-may-7-pittsburgh-pa.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2009/04/10/speaking-on-mission-critical-apps-at-saturn-2009-sei-s-architecture-conference-may-7-pittsburgh-pa.aspx</id><published>2009-04-10T22:39:00Z</published><updated>2009-04-10T22:39:00Z</updated><content type="html">&lt;TABLE border=0 cellSpacing=3 cellPadding=0 width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top&gt;&lt;A href="http://www.sei.cmu.edu/architecture/saturn/2009" mce_href="http://www.sei.cmu.edu/architecture/saturn/2009"&gt;&lt;IMG title="SATURN 2009 Speaker" border=0 alt="SATURN 2009 Speaker" src="http://www.sei.cmu.edu/architecture/saturn/2009/images/SATURN_speaker_badge.png" width=120 height=240 mce_src="http://www.sei.cmu.edu/architecture/saturn/2009/images/SATURN_speaker_badge.png"&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD vAlign=top&gt;
&lt;P&gt;&lt;FONT color=#000080 size=5&gt;&amp;nbsp;Dear Architect,&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; I'll be delivering a session on &lt;STRONG&gt;"Architecting for Highly Available, Scalable, and Reliable Mission-Critical Applications"&lt;/STRONG&gt; in the &lt;A href="http://www.sei.cmu.edu/architecture/saturn/2009/" target=_blank mce_href="http://www.sei.cmu.edu/architecture/saturn/2009/"&gt;5th edition of SEI Architecture Technology User Network Conference&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Hope to see you there&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sincerely,&lt;/P&gt;
&lt;P&gt;Diegum&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9543894" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="Events" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Events/" /><category term="Architecture" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Architecture/" /><category term="Exception Handling" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Exception+Handling/" /><category term="Application Development" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Application+Development/" /><category term="Infrastructure" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Infrastructure/" /><category term="Performance" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Performance/" /><category term="Scalability" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Scalability/" /><category term="Parallel Computing" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Parallel+Computing/" /></entry><entry><title>Microsoft Architecture Journal Issue 20 - Call For Papers</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2009/02/25/microsoft-architecture-journal-issue-20-call-for-papers.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2009/02/25/microsoft-architecture-journal-issue-20-call-for-papers.aspx</id><published>2009-02-26T02:31:00Z</published><updated>2009-02-26T02:31:00Z</updated><content type="html">&lt;p&gt;&lt;font color="#000080" size="5"&gt;The 20th issue&lt;/font&gt; of The Architecture Journal will provide insights into &lt;strong&gt;how turbulent times affect architects and the new and challenging solutions they will need to create&lt;/strong&gt;. This issue will examine how Software and Infrastructure Architects can add value back to their business units through business alignment, IT optimization, externalization of services, and consolidation of redundant or obsolete solutions. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;How can the IT architects help keep business alignment and efficiency in such scenario? We are looking for real world ideas such as:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Optimizing&amp;#160; software development and delivery (i.e. via enterprise agile process implementation or any other strategy) &lt;/li&gt;    &lt;li&gt;Optimized deployment to low-cost desktop infrastructure (thru virtualization or any other technique) &lt;/li&gt;    &lt;li&gt;What IT Operations consolidation strategies Infrastructure Architects should know about &lt;/li&gt;    &lt;li&gt;Efficient communication between distributed teams (IT, users, etc) &lt;/li&gt;    &lt;li&gt;Any other original idea based on past, local crisis contexts &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you have ideas that you would like to share with the architect community on this topic, here is your chance! Follow the instructions below to send an abstract before the cut-off date and you could see your thoughts and ideas shared with over 62,000 readers, translated in several languages, and distributed at multiple conferences around the world! &lt;/p&gt;  &lt;p&gt;The cut-off date for abstracts for the next issue is &lt;b&gt;March 18th 2009&lt;/b&gt;.&amp;#160; If you are interested in making a submission, here are the details: &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;How do I make a submission?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;To submit an idea for a paper, please send the following: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;A 2 – 4 paragraph abstract explaining how your paper fits the &lt;b&gt;&amp;quot;Architecture in Uncertain Times&amp;quot;&lt;/b&gt; theme of the magazine &lt;/li&gt;    &lt;li&gt;A 1 – 2 paragraph bio &lt;/li&gt;    &lt;li&gt;A list of previously published articles &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Submissions should be made via Email to &lt;a href="mailto:archjrnl@microsoft.com"&gt;archjrnl@microsoft.com&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We receive many submissions for each issue, so we encourage you to put time and thought into the submission. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;When will I know whether my submission is accepted?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;After the call for papers has ended, you will be notified via Email as to whether your submission was successful or not. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;What happens if my submission is accepted?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;If accepted, you’ll have between 6 weeks to submit two drafts and a final version of your paper. These dates will be clearly communicated. Your first draft will be reviewed by an editorial board to ensure it is on message for the magazine. Your second draft and final version will be subject to both technical and copy editing. &lt;/p&gt;  &lt;p&gt;The magazine is generally available in print and online 4 weeks after final drafts are submitted. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;What are the guidelines for papers printed in the Architecture Journal?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;We recommend that papers are between 3,500 and 4,500 words in length – although we have accepted shorter and longer papers in the past. The article should be submitted using Microsoft Word. Diagrams should be submitted in either Microsoft Visio or Microsoft PowerPoint, and will be reformatted for the magazine. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Do I still own the work?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Yes. We ask you to sign a release form that gives Microsoft permission to reprint the article, but ownership of the paper remains with you, the author. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Will I get paid for writing?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;We do not currently reimburse authors for contributing to the Architecture Journal. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Will I get copies of the magazine as an author?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;After printing you’ll be sent 10 copies of the Journal for your own use.   &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;   &lt;b&gt;Where can I get more information?&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Check out &lt;a href="http://msdn2.microsoft.com/en-us/arcjournal/bb219087.aspx"&gt;this link&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9445933" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Computer Sciences and Consciousness: Journal on Sustainable Computing Just Released</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2008/12/19/computer-science-and-consciousness-journal-on-sustainable-computing-just-released.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2008/12/19/computer-science-and-consciousness-journal-on-sustainable-computing-just-released.aspx</id><published>2008-12-19T05:01:00Z</published><updated>2008-12-19T05:01:00Z</updated><content type="html">&lt;P&gt;&lt;A target=_blank href="http://www.msarchitecturejournal.com/pdf/Journal18.pdf" mce_href="http://www.msarchitecturejournal.com/pdf/Journal18.pdf"&gt;&lt;IMG style="MARGIN: 0px 5px 0px 0px" align=left src="http://blufiles.storage.msn.com/y1p3Bs2VhU_71I-5O6qJb3SnCppmpc4eWlV6dAA0NWY4mDjj1BKsOzyNcl4z_kXMMOO?PARTNER=WRITER" width=361 height=484 mce_src="http://blufiles.storage.msn.com/y1p3Bs2VhU_71I-5O6qJb3SnCppmpc4eWlV6dAA0NWY4mDjj1BKsOzyNcl4z_kXMMOO?PARTNER=WRITER"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT style="BACKGROUND-COLOR: #ffc000" color=#ffffff size=5 face="Lucida Handwriting"&gt;&amp;nbsp;The theme of this issue,&amp;nbsp;&lt;/FONT&gt; “&lt;STRONG&gt;&lt;A target=_blank href="http://www.msarchitecturejournal.com/pdf/Journal18.pdf" mce_href="http://www.msarchitecturejournal.com/pdf/Journal18.pdf"&gt;Green Computing&lt;/A&gt;&lt;/STRONG&gt;,” is especially important and timely: As computing becomes increasingly pervasive, the energy consumption attributable to computing is climbing, despite the clarion call to action to reduce consumption and reverse greenhouse effects. At the same time, the rising cost of energy — due to regulatory measures enforcing a “true cost” of energy coupled with scarcity as finite natural resources are rapidly being diminished — is refocusing IT leaders on efficiency and total cost of ownership, particularly in the context of the world-wide financial crisis.&lt;/P&gt;
&lt;P&gt;We are pleased to have &lt;STRONG&gt;Lewis Curtis&lt;/STRONG&gt;, Principal Architect on the Microsoft Platform Architecture Team, as our subject matter expert on this topic and co-editor for this issue. In the first article (page 2), Lewis provides a holistic approach to greener architectures, and he also helped us subdivide the topic in five perspectives:&lt;/P&gt;
&lt;P&gt;• &lt;STRONG&gt;Physical&lt;/STRONG&gt;. The Genome research project, described in “Wireless Sensor Network for Data Center Monitoring” (page 28), uses heat distribution data from a wireless sensor network to optimize data center design and server provisioning in order to avoid overcooling the entire data center. &lt;BR&gt;• &lt;STRONG&gt;Operating Platform&lt;/STRONG&gt;. Hardware resources are often allocated based on a worst-case scenario that may happen with a low frequency. As a result, complete farms may be as much as 90 percent underutilized. Read Mark Pohto’s article on SQL Server consolidation (page 35) to learn more about virtualization and other consolidation tactics. &lt;BR&gt;• &lt;STRONG&gt;Sustainable Intelligence&lt;/STRONG&gt;. An Energy Usage Profile (EUP) is an essential tool for measuring energy consumption in various domains such as hardware, operating systems, users, and applications, as the Software Architect of the Future explains in the article by Steve Stevanovich and coauthors (page 24). &lt;BR&gt;• &lt;STRONG&gt;Application Development&lt;/STRONG&gt;. Solution architects also have an opportunity here, as coauthors Dan Rogers and Ulrich Homann point out in “Application Patterns for Green IT” (page 16). Green computing discussions today tend to focus on the platform, hardware, and data centers. However, application inefficiencies, such as suboptimal algorithms and inefficient usage of shared resources causing contentions, are originators of higher CPU usage and, therefore, energy consumption. &lt;BR&gt;• &lt;STRONG&gt;The Cloud&lt;/STRONG&gt;. In their article on virtualization maturity model (page 9), Kevin Francis and Peter Richardson also cover utility computing-based delivery models. Insofar as this these models consolidate organizations, consumption has the potential to be remarkably reduced as the Internet scale data centers in which services are hosted can make efficient use of shared resources (servers, storage, cooling mechanisms, and so forth).&lt;/P&gt;
&lt;P&gt;Now and in the future, green computing will be a key challenge for businesses and presents a leadership opportunity for all architects. It is an exciting time to &lt;BR&gt;be an architect. Celebrating the relaunch of the Architect MVP (Most Valuable Professional) program, we interviewed Udi Dahan (Architect MVP for four years &lt;BR&gt;now) in our Architecture Journal Profile (page 22).&lt;/P&gt;
&lt;P&gt;We hope you enjoy &lt;A target=_blank href="http://www.msarchitecturejournal.com/pdf/Journal18.pdf" mce_href="http://www.msarchitecturejournal.com/pdf/Journal18.pdf"&gt;these thoughtful articles on &lt;STRONG&gt;green computing&lt;/STRONG&gt;&lt;/A&gt;. We invite you to visit the Microsoft Environmental Sustainability portal at &lt;A href="http://www.microsoft.com/environment/" mce_href="http://www.microsoft.com/environment/"&gt;http://www.microsoft.com/environment/&lt;/A&gt;, and as always, we welcome your feedback at &lt;A href="mailto:editors@architecturejournal.net" mce_href="mailto:editors@architecturejournal.net"&gt;editors@architecturejournal.net&lt;/A&gt;.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P align=right&gt;Diego Dagum&lt;BR&gt;&lt;EM&gt;Editor-in-chief&lt;/EM&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9239616" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="The Architecture Journal" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/The+Architecture+Journal/" /><category term="Green Computing" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Green+Computing/" /></entry><entry><title>Tech•Ed 2009 North America: Architecture Track Call for Papers</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2008/12/05/tech-ed-2009-north-america-architecture-track-call-for-papers.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2008/12/05/tech-ed-2009-north-america-architecture-track-call-for-papers.aspx</id><published>2008-12-05T23:56:00Z</published><updated>2008-12-05T23:56:00Z</updated><content type="html">&lt;P&gt;&lt;FONT style="BACKGROUND-COLOR: #002060" color=#ffffff size=5 face=Garamond&gt;&amp;nbsp;You are cordially invited&amp;nbsp;&lt;/FONT&gt; to submit a title and abstract for a Breakout Session, Hands-on Lab, Interactive Theater Session, Tech•Ed Online Tech Talk,&amp;nbsp; or Tech•Ed Online Panel Discussion for the Architecture track at Tech•Ed North America 2009. &lt;/P&gt;
&lt;P&gt;The Architecture [ARC] track has become a key contributor at Tech•Ed and we plan to continue leading the sessions by providing relevant content. This is your opportunity to propose sessions for delivery. &lt;BR&gt;The Architecture track will offer sessions that target Architecture (of technology) and Architects (as part of a job description). Elements include the architectural process of translating business vision, intent, and strategy into effective technological change in the Enterprise; addressing the skills of creating, communicating, and improving the key tenets, principles, and models that describe the Enterprise's future state and enable its transformation, evolution, or migration. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color=#ff0000&gt;ACTION&lt;/FONT&gt;:&lt;/B&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to: &lt;A href="https://2009.msteched.com/cft/default.aspx" mce_href="https://2009.msteched.com/cft/default.aspx"&gt;https://2009.msteched.com/cft/default.aspx&lt;/A&gt;&lt;S&gt;&lt;/S&gt;&lt;/LI&gt;
&lt;LI&gt;Enter RSVP Access Code: &lt;B&gt;RSVP09-ARC&lt;/B&gt;&lt;/LI&gt;
&lt;LI&gt;Complete all the fields and submit your entry.&lt;/LI&gt;&lt;/OL&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;NOTE: You will use the email alias and password you entered when creating your Call for Content profile to return to this site to review or edit your submission or to submit another topic. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color=#ff0000&gt;Deadline for Submissions&lt;/FONT&gt;:&amp;nbsp; &lt;/B&gt;&lt;B&gt;January 5, 2009&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;B&gt;What is Tech•Ed? &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Tech•Ed is Microsoft’s premier global conference designed to provide Developers and IT Professionals with the technical education, product evaluation and community resources they need to design, develop, manage, secure, and mobilize state-of-the-art software solutions for a connected enterprise.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Tech•Ed North America 2009 Returns to a Single Week Event!&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;To better serve the needs of Developers and IT Professionals, Microsoft constantly looks for the best, most efficient channels to educate both communities on the latest technology developments. Based on our recent findings, Tech•Ed North America will once again be focused into a single week for both communities. &lt;/P&gt;
&lt;P&gt;The return to a combined event is the result of feedback from both the Developer and IT Professional communities. We remain excited to provide the best technical education event in the industry, and we are confident the combined-week model will continue to deliver the great content, education, and connection opportunities it has delivered for more than 16 years. &lt;/P&gt;
&lt;P&gt;The following information will be helpful as you think about the session ideas that you would like to submit and present at Tech•Ed.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Audience Segments&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Approximately 40% of those who attend Tech•Ed are developers, solution architects, designers and testers who seek to engage with Microsoft and take a deep dive into the latest enterprise development solutions using Microsoft’s developer tools, frameworks, and platforms. The remaining 60% are IT Professionals seeking to collaborate and network with Microsoft staff and other IT professionals, and who also want to learn how to design, plan, deploy, manage, and secure a connected enterprise.&lt;/P&gt;
&lt;P&gt;Content directed at these audience segments focuses on current and soon-to-release (available in CTP) Microsoft products, technologies and services. &lt;/P&gt;
&lt;P&gt;Tech•Ed 2009 kicks off in North America and is followed by international Tech•Ed events that leverage much of the same content reaching 50,000 customers in-person and over 100,000 online. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Breakout Sessions&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Breakout Sessions are the main content delivery modality at Tech•Ed. These sessions are lecture-style presentations located in rooms seating anywhere from 200-1,200 people and are 75 minutes in length. They typically include slides, demos, and a Question &amp;amp; Answer period, and they are recorded and distributed in the Global TechEd content library. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Next steps…&lt;/B&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;We will review session submissions to determine which ones best meet the needs of the Tech•Ed audience, adhere to the content guidelines, and fulfill the messaging requirements of the product group.&amp;nbsp; &lt;/LI&gt;
&lt;LI&gt;We will relay the final status of all submissions by March 2009. Please be sure to contact your track owner for any questions you have about the status of your submission, &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Tech•Ed is a strategic event for Architecture as a discipline and as a profession. Thank you taking the time to begin planning for this important customer event. Please feel free to contact me and send any additional questions that you have regarding the Architecture track.&lt;/P&gt;
&lt;P&gt;Warmest regards,&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Tech Ed 2008 ARC Core Team&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG alt="Tech•Ed 2009 North America logo" src="http://blogs.msdn.com/blogfiles/diegumzone/WindowsLiveWriter/TechEd2009NorthAmericaArchitectureTrackC_B605/clip_image002_3.gif" width=159 height=64 mce_src="http://blogs.msdn.com/blogfiles/diegumzone/WindowsLiveWriter/TechEd2009NorthAmericaArchitectureTrackC_B605/clip_image002_3.gif"&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9180627" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author><category term="Events" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Events/" /><category term="Architecture" scheme="http://blogs.msdn.com/b/diegumzone/archive/tags/Architecture/" /></entry><entry><title>Microsoft Generation 4.0 Data Center Vision</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/diegumzone/archive/2008/12/05/microsoft-generation-4-0-data-center-vision.aspx" /><id>http://blogs.msdn.com/b/diegumzone/archive/2008/12/05/microsoft-generation-4-0-data-center-vision.aspx</id><published>2008-12-05T23:48:00Z</published><updated>2008-12-05T23:48:00Z</updated><content type="html">&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width="100%"&gt;[Extracted from &lt;A target=_blank href="http://www.infoworld.com/article/08/12/03/Microsoft_applies_Model_T_factory_methods_to_datacenters_1.html" mce_href="http://www.infoworld.com/article/08/12/03/Microsoft_applies_Model_T_factory_methods_to_datacenters_1.html"&gt;&lt;STRONG&gt;InfoWorld&lt;/STRONG&gt;&lt;/A&gt;]: 
&lt;BLOCKQUOTE style="MARGIN-RIGHT: 0px" dir=ltr&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT style="BACKGROUND-COLOR: #002060" color=#ffffff size=5 face=Garamond&gt;&amp;nbsp;"Microsoft has come up with a faster,&amp;nbsp;&lt;/FONT&gt; cheaper way to build its datacenters over the next five years, and it says other companies could use its methods too. &lt;BR&gt;Microsoft's approach, described by General Manager Michael Manos in a &lt;/EM&gt;&lt;A target=_blank href="http://loosebolts.wordpress.com/2008/12/02/our-vision-for-generation-4-modular-data-centers-one-way-of-getting-it-just-right/" mce_href="http://loosebolts.wordpress.com/2008/12/02/our-vision-for-generation-4-modular-data-centers-one-way-of-getting-it-just-right/"&gt;&lt;EM&gt;blog post&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt; Tuesday, uses a modular design in which standard units of computing, cooling, and electrical equipment are delivered to a facility on the back of a truck and assembled on site. The system, which Microsoft calls its "Generation 4" design, will allow its datacenters to become operational more quickly and cut the cost of building traditional, brick and mortar facilities."&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;&lt;EM&gt;"This is our vision and will be the foundation of our cloud data center infrastructure in the next five years. A highly modular, scalable, efficient, just-in-time data center capacity program that can be delivered anywhere in the world very quickly and cheaply, while allowing for continued growth as required. We believe it is one of the most revolutionary changes to happen to data centers in the last 30 years."&lt;/EM&gt; (Michael Manos, General Manager responsible for global data center design, construction and ongoing operations for Microsoft’s online services)&lt;/P&gt;
&lt;P&gt;&lt;EMBED id=irdgmuqj height=364 type=application/x-shockwave-flash pluginspage=http://macromedia.com/go/getflashplayer width=432 src=http://images.video.msn.com/flash/soapbox1_1.swf flashvars="c=v&amp;amp;v=b4d189d3-19bd-42b3-85d7-6ca46d97fe40&amp;amp;ifs=true&amp;amp;fr=msnvideo&amp;amp;mkt=en-US" allowscriptaccess="always" allowfullscreen="true" mce_src="http://images.video.msn.com/flash/soapbox1_1.swf"&gt;&lt;/EMBED&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9180621" width="1" height="1"&gt;</content><author><name>Diego Dagum - MSFT</name><uri>http://blogs.msdn.com/diegumzone/ProfileUrlRedirect.ashx</uri></author></entry></feed>