<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Denny Boynton</title>
    <description>(Literally) Beating the Drum of Software Architecture!</description>
    <link>http://blog.dennyboynton.com/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.Net Syndication Generator 1.0.0.0 (http://dotnetblogengine.net/)</generator>
    <language>en-GB</language>
    <blogChannel:blogRoll>http://blog.dennyboynton.com/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.dotnetblogengine.net/syndication.axd</blogChannel:blink>
    <dc:creator>Denny Boynton</dc:creator>
    <dc:title>Denny Boynton</dc:title>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/DennyBoynton" type="application/rss+xml" /><item>
      <title>Three Keys to a Successful Code Review</title>
      <description>&lt;p&gt;
Code reviews &lt;em&gt;should&lt;/em&gt; be built into every project timeline. What I find most of the time is that they are overlooked, excluded in lieu of functional testing only, or worst of all, performed by the wrong person. This is shame because a code review can significantly enhance a team&amp;#39;s chance of delivering a quality piece of software that the customer will actually use. 
&lt;/p&gt;
&lt;p&gt;
There are several ways of conducting an effective code review, some very &lt;em&gt;laize faire&lt;/em&gt; and some very hands-on. The key is combining the power of review tools with an architect&amp;#39;s personal and professional experience to yield the most effective review possible without taking inordinate amounts of time away from the project itself. 
&lt;/p&gt;
&lt;p&gt;
The following are three tips I&amp;#39;d like to offer to help you get the most out of your code reviews. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;1. Do Reviews Early, Do Reviews Often&lt;/strong&gt; &lt;br /&gt;
The first three weeks of a project are the most crucial. It is during this early time that the foundational parts of the application are being developed. This will be the first and best opportunity for issues in this vital part of your application to be identified and fixed inexpensively. Every day that goes by without identifying a critical defect in the code will cost you exponentially down the road in lost time and money. 
&lt;/p&gt;
&lt;p&gt;
The first key to a successful code review is to start reviewing &lt;strong&gt;the first day of the project&lt;/strong&gt;. Look at code written by all the members of the development team and make sure that they are heading in the right direction. Some important things to look for in these early reviews include: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Are they correctly implementing classes, interfaces and layers per the system design? &lt;/li&gt;
	&lt;li&gt;Are they leveraging any reusable utility components in your organization? &lt;/li&gt;
	&lt;li&gt;Are they using established naming conventions, either industry or organization specific? &lt;/li&gt;
	&lt;li&gt;Are they implementing &lt;em&gt;proper&lt;/em&gt; exception handling, i.e. &lt;strong&gt;not&lt;/strong&gt; swallowing exceptions? &lt;/li&gt;
	&lt;li&gt;Are they properly closing database connections, streams, etc.? &lt;/li&gt;
	&lt;li&gt;Is there any redundant code that can be consolidated? &lt;/li&gt;
	&lt;li&gt;Are they properly addressing tier requirements for the system?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
With a focus on these specific items, I recommend that you do &lt;strong&gt;daily code reviews for the first three weeks of the project, providing feedback to the team the same day. &lt;/strong&gt;By identifying these fundamental structural issues &lt;strong&gt;before&lt;/strong&gt; thousands of more lines of code are written on top of them allow your team to address them while they are still easy and inexpensive to fix. 
&lt;/p&gt;
&lt;p&gt;
This process also provides the architect a great opportunity to mentor your development team. Looking at their code will be a great indicator of how experienced they are and sharing your feedback will help make them better developers down the road. 
&lt;/p&gt;
&lt;p&gt;
After the first three weeks of the project, you should be able to back off the daily code reviews and start doing them every couple of days instead. By this time, your team should have firm expectations what they need to do and solid direction going forward. Ideally, within a month, you should be able to move to weekly reviews with minimal risk of missing something important. Of course, every project and development team is different, so use your best judgement as to the effectiveness this approach offers at the start of each new project. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;2. Tools: Trust, but Verify&lt;/strong&gt; &lt;br /&gt;
Any software vendor that you talk to will tell you that their static analysis tools will catch most of the bad stuff in your code, and the only ones you should be considering should allow you customize the rules that the tool applies in its analysis. 
&lt;/p&gt;
&lt;p&gt;
However, analysis tools are just like any other piece of software: They&amp;#39;re limited by the number and quality of rules provided them to do their job. Most static analysis tools I&amp;#39;ve worked with in my career provide good starting points for a more in-depth, manual review. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/ThreeKeystoaSuccessfulCodeReview_F060/cliffsnotes_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/ThreeKeystoaSuccessfulCodeReview_F060/cliffsnotes_thumb.jpg" border="0" alt="cliffsnotes" width="155" height="244" align="right" /&gt;&lt;/a&gt;Think about a code analysis tool like Cliff&amp;#39;s Notes. Cliff&amp;#39;s Notes were meant to be a study &lt;em&gt;assistant&lt;/em&gt; while reading a particular book, not a replacement for the book itself. However, ask any group of high school English students and I&amp;#39;m sure you find them enjoying the Cliff&amp;#39;s Notes for &lt;em&gt;Huckleberry Finn&lt;/em&gt; without a copy of the novel anywhere in site. While this will give you a high level overview of the plot and the major themes, nothing can replace the level of detail you&amp;#39;ll only get from reading the book itself. 
&lt;/p&gt;
&lt;p&gt;
Also, Cliff&amp;#39;s Notes are not always correct. I remember using Cliff&amp;#39;s in college for some 18th century British novel I was struggling to get through (I wish I could remember wish -- it was dry as hell). I got through the novel, but depended almost solely on the Cliff&amp;#39;s Notes to arm me with the information I needed to discuss it in class. As it turns out, we were using an alternative version of the original text and I was missing several details which made me look like an idiot in front of my classmates. 
&lt;/p&gt;
&lt;p&gt;
If anyone out there used FxCop before it was (arguably) improved and integrated into Visual Studio Team System, you know that tools can&amp;#39;t always be trusted to return an accurate representation of reality. I once wrote a &amp;quot;Hello World&amp;quot; console application in C# and FxCop told me I had over 1,200 defects in my code. 
&lt;/p&gt;
&lt;p&gt;
The point of this is to use code analysis tools as a means of &amp;quot;sniffing&amp;quot; your code for potential problems. Look at them as sign posts to something you should investigate further. Sadly, I don&amp;#39;t think we&amp;#39;ll ever see a tool that will deliver the same, high-quality results as actual human eyeballs on the source code. &amp;quot;Trust&amp;quot; that the tool is pointing you in the right direction, but &amp;quot;verify&amp;quot; that there is really some fire to go with that smoke. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;3. Actually Read the Code&lt;/strong&gt; &lt;br /&gt;
Building on the previous section, nothing can replace actually looking at source code. This is definitely time consuming, but will yield the best results. While code analysis tools will catch naming convention violations and orphan variables, actually looking at the code will provide you the &lt;em&gt;context&lt;/em&gt; &lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/ThreeKeystoaSuccessfulCodeReview_F060/first-folio_2.gif"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/ThreeKeystoaSuccessfulCodeReview_F060/first-folio_thumb.gif" border="0" alt="first-folio" width="126" height="168" align="left" /&gt;&lt;/a&gt;of those issues, especially in the structural integrity of the application as a whole. 
&lt;/p&gt;
&lt;p&gt;
The other benefit is that it gives you more visibility to what your developers know how to do. In my first bibliography class as an undergraduate, I was fascinated to learn that literary scientists had been able to identify individual typesetters of Shakespeare&amp;#39;s first folio by the grammatical and spelling errors they made setting type on the printing press. The same principle can be applied to reviewing developers&amp;#39; code. It will help you identify strengths and weakness in individuals&amp;#39; coding and allow you act accordingly. 
&lt;/p&gt;
&lt;p&gt;
Reading raw code isn&amp;#39;t necessarily to most exciting or desirable work in the world. In fact, it can be downright tedious and tiring. However, it is the most sure way to make sure that your project is proceeding the way it should be in development, so budget time to sit and just read and understand the code being written for your project. If you do, I can guarantee you&amp;#39;ll reap the benefits later. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Just Do It&lt;/strong&gt; &lt;br /&gt;
Hopefully you&amp;#39;ll find these tips useful in getting better quality results from your development projects. I absolutely recommend trying these techniques out on your next project, but also encourage you to try them out on your current project, even if it is well underway. You may not get all the benefits, especially from the early and often reviews, but doing some level of review is better than doing none at all. 
&lt;/p&gt;
&lt;p&gt;
I welcome your input, experiences and additional best practices. Please leave a comment if you have something to add to the conversation. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2fb5ad29-3016-4268-ac34-f0c54c562e8d" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Code%20Review"&gt;Code Review&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Static%20Analysis"&gt;Static Analysis&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Software%20Architecture"&gt;Software Architecture&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Project%20Management"&gt;Project Management&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/289006207" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/289006207/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Three-Keys-to-a-Successful-Code-Review.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=50510234-1c26-463f-840e-41a864e347f3</guid>
      <pubDate>Mon, 12 May 2008 17:48:00 -0500</pubDate>
      <category>Architecture</category>
      <category>Best Practices</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=50510234-1c26-463f-840e-41a864e347f3</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=50510234-1c26-463f-840e-41a864e347f3</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Three-Keys-to-a-Successful-Code-Review.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=50510234-1c26-463f-840e-41a864e347f3</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=50510234-1c26-463f-840e-41a864e347f3</feedburner:origLink></item>
    <item>
      <title>Why is Microsoft So Slow to Adopt Silverlight?</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhyisMicrosoftSoSlowtoAdoptSilverlight_A41D/silverlight_logo_2.jpg"&gt;&lt;img style="margin: 0px 5px 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhyisMicrosoftSoSlowtoAdoptSilverlight_A41D/silverlight_logo_thumb.jpg" border="0" alt="silverlight_logo" width="192" height="98" align="right" /&gt;&lt;/a&gt;In a &lt;a href="http://blog.searchenginewatch.com/blog/080509-105719" target="_blank"&gt;post&lt;/a&gt; yesterday, Eli Feldblum makes the assertion that Microsoft seems to prefer to use Flash over &lt;a href="http://silverlight.net" target="_blank"&gt;Silverlight&lt;/a&gt;. He argues this fact is obvious since most of the rich, interactive parts of Microsoft&amp;#39;s public sites are using Flash. In fact, he even states that &amp;quot;the software giant seems to be not even trying&amp;quot; to move to Silverlight and goes on to say: 
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	&lt;em&gt;A quick check through Microsoft properties reveals that only the &lt;/em&gt;&lt;a href="http://www.microsoft.com/en/us/default.aspx"&gt;&lt;em&gt;Microsoft Home Page&lt;/em&gt;&lt;/a&gt;&lt;em&gt;&amp;nbsp; and the &lt;/em&gt;&lt;a href="http://msdn.microsoft.com/en-us/default.aspx"&gt;&lt;em&gt;Microsoft Developer Network&lt;/em&gt;&lt;/a&gt;&lt;em&gt; use Silverlight; MSN Video, &lt;/em&gt;&lt;a href="http://Zune.net"&gt;&lt;em&gt;Zune.net&lt;/em&gt;&lt;/a&gt;&lt;em&gt; and the new &lt;/em&gt;&lt;a href="http://www.worldwidetelescope.org/"&gt;&lt;em&gt;WWTelescope&lt;/em&gt;&lt;/a&gt;&lt;em&gt; all use Flash.&lt;/em&gt; 
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
The idea that Microsoft isn&amp;#39;t interested in using Silverlight on its sites is, of course, completely wrong. However, in Mr. Feldblum&amp;#39;s defense, it could certainly seem that way if you make the assumption that any company, including Microsoft, could implement massive technical and creative changes across an incredibly wide swatch of high traffic sites like the ones cited above in a month or two. 
&lt;/p&gt;
&lt;p&gt;
I felt compelled to respond to Mr. Feldblum&amp;#39;s post not necessarily to defend Microsoft, but because I have very similar conversations with people all the time about adopting new technology in general. There is a natural human reaction when something new and revolutionary is laid before them. They need to strike a balance between all the new possibilities this new technology offers with the tangible business value of replacing what they already have in place. In this case, the question is, &amp;quot;What do I gain from paying a development team to replace the considerable Flash presence on my sites with Silverlight?&amp;quot; 
&lt;/p&gt;
&lt;p&gt;
To assume that a project team with &lt;em&gt;any&lt;/em&gt; company would simply throw out a project plan already in motion, ramp their developers and designers in a new technology and start over for the simple fact that there is a new way of accomplishing their goal is ridiculous. You wouldn&amp;#39;t do that and I wouldn&amp;#39;t do that, unless there was a real ROI as a result. 
&lt;/p&gt;
&lt;p&gt;
However, when I talk to people about adopting Silverlight, they always make the comment, &amp;quot;I already have so much Flash built into my web site, I don&amp;#39;t know where to start with Silverlight.&amp;quot; Well, the good news is you don&amp;#39;t have to throw out the baby with the bath water. The fact of the matter is that you can begin to implement Silverlight &lt;em&gt;where it makes sense&lt;/em&gt; in your web site without modifying or removing any of the Flash assets you already have in place. Silverlight will run just fine in a web page with Flash, so you can iteratively begin the process if implementing Silverlight and, if prudent, replacing Flash to take advantage of &lt;a href="http://msdn2.microsoft.com/en-us/library/ms752059.aspx" target="_blank"&gt;XAML&lt;/a&gt;, &lt;a href="https://www.microsoft.com/expression/products/Overview.aspx?key=blend" target="_blank"&gt;developer/designer collaboration&lt;/a&gt;, developing in managed code and all the other benefits Silverlight has to offer. No expensive and painful &amp;quot;big bang&amp;quot; replacement is necessary. Find a requirement for which Silverlight is a good fit and implement it. It&amp;#39;s as simple as that. 
&lt;/p&gt;
&lt;p&gt;
The truth is, while the rest of the world would hold Microsoft to a higher standard than any other company, at the end of the day Microsoft works very much like the IT shops you probably work in. Each Microsoft product and web site has a team of developers and product managers that have a finite budget, timeline and resource pool in which to work. Believe me, if Silverlight could be deployed as a replacement to Flash across all Microsoft web sites next week, it would certainly make my job a hell of a lot easier, but that&amp;#39;s not possible and difficult decisions have to be made in order to deliver a multitude of solutions currently underway on time and on budget. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhyisMicrosoftSoSlowtoAdoptSilverlight_A41D/NBCOlympicsScreenShot_2.jpg"&gt;&lt;img style="border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhyisMicrosoftSoSlowtoAdoptSilverlight_A41D/NBCOlympicsScreenShot_thumb.jpg" border="0" alt="NBCOlympicsScreenShot" width="341" height="200" align="right" /&gt;&lt;/a&gt;I can all but guarantee you that there are roadmaps in place to adopt Silverlight across most or all of the Microsoft web assets. That adoption will be rolled-out in a manner that delivers value to the business and as it makes sense. You&amp;#39;re seeing that adoption begin on &lt;a href="http://www.microsoft.com" target="_blank"&gt;Microsoft.com&lt;/a&gt; and &lt;a href="http://msdn.microsoft.com" target="_blank"&gt;MSDN&lt;/a&gt;, and should see it on more Microsoft sites in the coming months and years, a very timely example being the &lt;strong&gt;new&lt;/strong&gt; &lt;a href="https://www.microsoft.com/expression/" target="_blank"&gt;Expression Suite web site&lt;/a&gt;, all built in Silverlight. 
&lt;/p&gt;
&lt;p&gt;
In fact, if you&amp;#39;re &lt;em&gt;still&lt;/em&gt; of the mindset that Microsoft isn&amp;#39;t using Silverlight because they don&amp;#39;t believe in it, it will probably interest you to know that &lt;a href="http://www.nbc.com" target="_blank"&gt;NBC&lt;/a&gt; will be broadcasting all 17 days and 34 sports of the 2008 Summer Olympic Games this year, at total of 2,200 hours of streaming HD video with multiple views and control gadgets, all in Silverlight. For an early review, have a look at Adam Kinney&amp;#39;s &lt;a href="http://adamkinney.com/blog/317/default.aspx" target="_blank"&gt;post&lt;/a&gt;. 
&lt;/p&gt;
&lt;p&gt;
Rather than shame Microsoft for not dropping everything else that they&amp;#39;re working on to replace Flash with Silverlight, we should learn from their example of implementing Silverlight iteratively as it makes sense. That just good project management and good business. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:d5a7afd2-ae1f-4a7a-be58-9a61d71e3389" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Microsoft"&gt;Microsoft&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Silverlight"&gt;Silverlight&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/287587405" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/287587405/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Why-is-Microsoft-So-Slow-to-Adopt-Silverlight.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=d471246f-929f-46c1-9155-740d4fb8f4c2</guid>
      <pubDate>Sat, 10 May 2008 11:59:00 -0500</pubDate>
      <category>RIA</category>
      <category>Silverlight</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=d471246f-929f-46c1-9155-740d4fb8f4c2</pingback:target>
      <slash:comments>8</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=d471246f-929f-46c1-9155-740d4fb8f4c2</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Why-is-Microsoft-So-Slow-to-Adopt-Silverlight.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=d471246f-929f-46c1-9155-740d4fb8f4c2</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=d471246f-929f-46c1-9155-740d4fb8f4c2</feedburner:origLink></item>
    <item>
      <title>Monty Python and "The Role of the Architect"</title>
      <description>&lt;p&gt;
While there is still a lot of conversation going on about what it means to be a software architect, there are a few things that are true among all of us who wear the title &amp;quot;Architect&amp;quot;: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Architects are thought leaders, pushing the envelope on what&amp;#39;s possible &lt;/li&gt;
	&lt;li&gt;Architects provide the vision, guidance and experience that enable others to make that vision a reality &lt;/li&gt;
	&lt;li&gt;Architects need to understand the technical and the business (practical) side of any project to provide the best proposed solution&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Now, watch the following &lt;a href="http://pythonline.com/" target="_blank"&gt;Monty Python&lt;/a&gt; &amp;quot;Architect Sketch&amp;quot; with these points in mind. It&amp;#39;s not only entertaining (one of my very favorites from the Python troupe), but required viewing for anyone who purports to have a sense of humor: 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:0a20adba-f103-40b1-924c-8709534efa53" class="wlWriterSmartContent" style="display: inline; float: none; margin: 0px; width: 349px; padding: 0px"&gt;
&lt;div id="aae76d75-ba2b-4d10-90ef-7e8142bf4545" style="display: inline; margin: 0px; padding: 0px"&gt;
&lt;div&gt;
&lt;a href="http://www.youtube.com/watch?v=IwwztaZUkUw" target="_new"&gt;&lt;img src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/videoc3bfa9ba3553_1.jpg" alt="" width="349" height="292" /&gt;&lt;/a&gt; 
&lt;/div&gt;
&lt;/div&gt;
Monty Python&amp;#39;s &amp;quot;Architect Sketch&amp;quot; 
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Though &lt;a href="http://en.wikipedia.org/wiki/John_Cleese" target="_blank"&gt;John Cleese&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Eric_Idle" target="_blank"&gt;Eric Idle&lt;/a&gt; are pitching &amp;quot;a block of flats,&amp;quot; there are certainly many things that should resonate and seem familiar to those of us working in the software industry today. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Understanding the Project Requirements&lt;/strong&gt; &lt;br /&gt;
This is one of the most obvious and most missed parts of working as an architect. There are several reasons for this: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;The architect doesn&amp;#39;t understand what the customer wants, but doesn&amp;#39;t know it &lt;/li&gt;
	&lt;li&gt;The customer doesn&amp;#39;t know what he/she wants, but doesn&amp;#39;t know it &lt;/li&gt;
	&lt;li&gt;The architect makes certain assumptions about the customer&amp;#39;s intent, goals and technical maturity &lt;/li&gt;
	&lt;li&gt;The customer makes certain assumptions about the architect&amp;#39;s experience and level of knowledge &lt;/li&gt;
	&lt;li&gt;The customer and the architect don&amp;#39;t ask questions or challenge ideas for fear of looking unknowledgeable&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/JohnCleese-ArchitectSketch_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/JohnCleese-ArchitectSketch_thumb.jpg" border="0" alt="JohnCleese-ArchitectSketch" width="210" height="164" align="right" /&gt;&lt;/a&gt; Any one of these common situations can send a project off the rails before it even gets started, and usually there are two or three in play at the same time. 
&lt;/p&gt;
&lt;p&gt;
As architects, we need to understand the business drivers of the project in order to present the &amp;quot;right&amp;quot; solution to the customer. There&amp;#39;s an old joke that says, &amp;quot;The only answer an architect needs to any question is, &amp;#39;It depends.&amp;#39;&amp;quot; Well, to a certain degree, that&amp;#39;s true. There are always going to be many different ways to solve a problem. Our job is to understand our customers&amp;#39; motivations by asking pointed questions and challenging them on things that don&amp;#39;t seem to make sense, thereby enabling us to provide the best solution to meet their needs and avoid pitching an &lt;em&gt;abattoir&lt;/em&gt; when a block of flats is what the customer really wants. 
&lt;/p&gt;
&lt;p&gt;
In addition, the architect needs to be self aware and not push a customer into a solution because he/she is afraid to admit they&amp;#39;ve missed something during the discovery phase of the project. I&amp;#39;ve never heard tell of someone being removed from a project because he/she was honest and said, &amp;quot;I must have misunderstood what you were looking for here -- let me work on an alternative solution,&amp;quot; at the &lt;em&gt;beginning&lt;/em&gt; of the project. I can imagine it would be &lt;strong&gt;very&lt;/strong&gt; easy to get thrown off a team for spending several weeks developing only then to find out that the solution you convinced your customer was the &amp;quot;right&amp;quot; one is not going to get them what they need. 
&lt;/p&gt;
&lt;p&gt;
Thought leadership becomes a reality by taking your collective experience, diving deep into the customer&amp;#39;s needs by asking the right questions and challenging the ideas that don&amp;#39;t make sense and by listening as much as you talk. Self-criticality and honesty build trust and credibility. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Compromising the &amp;quot;Right&amp;quot; Solution&lt;/strong&gt; &lt;br /&gt;
No one who has worked on even one project in their careers is unfamiliar with the multitude of external forces that can negatively impact a project&amp;#39;s outcome. The customer wants the most business value from a piece of software for the least amount of money. Developers don&amp;#39;t tend to care about cost as much as putting together solid code that works. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/EricIdle-ArchitectSketch_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/EricIdle-ArchitectSketch_thumb.jpg" border="0" alt="EricIdle-ArchitectSketch" width="169" height="141" align="left" /&gt;&lt;/a&gt;In the middle sits the architect. 
&lt;/p&gt;
&lt;p&gt;
It&amp;#39;s not unusual for a customer to look to cut corners to save money on a project, especially if there isn&amp;#39;t a real, tangible ROI attached to the final product. As an architect, we need to make sure we communicate the probable consequences of these cuts and make sure that we adjust the technical roadmap as a result. The fact is that the customer is &lt;strong&gt;not&lt;/strong&gt; always right, and we need to make sure that they have all the facts about a decision before they make it. 
&lt;/p&gt;
&lt;p&gt;
At the end of the day, the customer is one paying for the project and we need to attentively listen to their ideas, but we must not passively let the make erroneous decisions. Our passion for building solid, secure and performant solutions has to be asserted in a way that serves our customer&amp;#39;s best interests. This sometimes means pushing back on cutting corners, especially if they involve a &amp;quot;central pillar system,&amp;quot; &amp;quot;recessed magnilium phalange groups&amp;quot; or &amp;quot;fire suppressant materials,&amp;quot; i.e scalability, performance and security. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Politics and Technological Religion&lt;/strong&gt; &lt;br /&gt;
It&amp;#39;s been said that if you put more more than two people in a room together, politics becomes part of the decision making process. OK, I&amp;#39;ve always said that, but it seems too obvious for someone else to &lt;strong&gt;not&lt;/strong&gt; have said it already -- I just don&amp;#39;t know who. 
&lt;/p&gt;
&lt;p&gt;
Political struggles within companies are right up there with death and taxes on the &amp;quot;Things You&amp;#39;ll Eventually Have to Deal With&amp;quot; list. More times than not, politics drives the decisions made concerning technology, the one area where it &lt;em&gt;should&lt;/em&gt; be easy to purge political influence. I say that because it is very easy to quantify technical decisions. You can easily apply hard numbers to: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Development resources required to deliver the solution &lt;/li&gt;
	&lt;li&gt;Cost of new software and hardware to support the proposed solution &lt;/li&gt;
	&lt;li&gt;Cost to integrate the new system with existing systems &lt;/li&gt;
	&lt;li&gt;Cost of training to ramp developers&amp;#39; skill sets &lt;/li&gt;
	&lt;li&gt;&lt;em&gt;Projected&lt;/em&gt; cost of maintaining the solution over its life span&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
All this being said, I still see decisions made all the time based on political and technologically &amp;quot;religious&amp;quot; grounds instead of hard-core numbers. I was once talking to an architect who was working on performance problems with a JSP-based line-of-business application. He had the idea to build a WinForm application with .NET and see if he could improve on the 57 seconds it was taking for the JSP page to render a grid of data from a local database. 
&lt;/p&gt;
&lt;p&gt;
He got it down to 2 1/2 seconds. 
&lt;/p&gt;
&lt;p&gt;
When he presented the solution &amp;quot;bake off&amp;quot; to his management team, the conversation went a little bit like this: 
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	&lt;strong&gt;Management&lt;/strong&gt;: &amp;quot;How many records could be returned in the web app so that it would match the performance of the client-side &amp;#39;test&amp;#39; you wrote?&amp;quot; &lt;br /&gt;
	&lt;strong&gt;Architect&lt;/strong&gt;: &amp;quot;About 250.&amp;quot; &lt;br /&gt;
	&lt;strong&gt;Management&lt;/strong&gt;: &amp;quot;OK, change the web app so it only returns 250 records.&amp;quot; 
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Clearly, politics and technological religion are so prevalent in that organization, management is willing to dramatically alter user requirements to stay on one technological stack and avoid the other completely, regardless of the hard facts in front of them. 
&lt;/p&gt;
&lt;p&gt;
As architects, we need to be aware of the these forces at work all around us. Ultimately, we have to consider the existing technology landscape within an organization and weigh the potential advantages and disadvantages of our proposed solution. As much as possible, we need to consider ourselves &amp;quot;technology agnostic&amp;quot; and truly consider what is the &amp;quot;right&amp;quot; architectural approach to meet the customer&amp;#39;s needs. 
&lt;/p&gt;
&lt;p&gt;
Put simply, the architect should expect to deal with politics, but not participate in them.&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/MontyPython-MasonHandshake_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheMontyPythonGuidetoBeingaBadArchitect_BF51/MontyPython-MasonHandshake_thumb.jpg" border="0" alt="MontyPython-MasonHandshake" width="209" height="160" align="right" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&amp;quot;Free Masonry Opens Doors&amp;quot;&lt;/strong&gt; &lt;br /&gt;
In the end game, being an effective architect is about integrity as much as it is technical skill. I&amp;#39;ve known many people over the course of my career that were my technical superior, but always struggled to fill the role of the architect on projects, due primarily to their overly focusing on implementation details. 
&lt;/p&gt;
&lt;p&gt;
Success is largely dependant on being able to take a macroscopic view of the project and the overall ecosystem in which it will need to fit. Having a detailed understanding of the requirements, being your customer&amp;#39;s biggest advocate (sometimes in spite of their best efforts) and distancing yourself as much as possible from internal politics and technological &amp;quot;religious wars&amp;quot; will go a long way to letting you apply your technical expertise and be a successful architect. 
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;Then&lt;/em&gt; you&amp;#39;ll learn the secret handshake. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fa618a80-60f3-4bae-a267-fb6fe505a985" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Architecture"&gt;Architecture&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Architects"&gt;Architects&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Monty%20Python"&gt;Monty Python&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/287104641" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/287104641/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Monty-Python-and-quot3bThe-Role-of-the-Architectquot3b.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=6d7e9043-6e04-471f-aab6-1e9054438b69</guid>
      <pubDate>Fri, 09 May 2008 16:38:00 -0500</pubDate>
      <category>Architecture</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=6d7e9043-6e04-471f-aab6-1e9054438b69</pingback:target>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=6d7e9043-6e04-471f-aab6-1e9054438b69</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Monty-Python-and-quot3bThe-Role-of-the-Architectquot3b.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=6d7e9043-6e04-471f-aab6-1e9054438b69</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=6d7e9043-6e04-471f-aab6-1e9054438b69</feedburner:origLink></item>
    <item>
      <title>The Water Hobo III</title>
      <description>&lt;p&gt;
Late last year, I shot a podcast with a local developer/architect/IT manager named Tim Higgins. I was intrigued by a device he built called &lt;em&gt;The Water Hobo.&lt;/em&gt; It&amp;#39;s essentially a water cannon with a motion sensor that detects when people are cutting through his yard and it shoots a stream of water at them. What&amp;#39;s more, the software that controls the motion detector and the actual firing of the weapon (including a setting called &amp;quot;The Holy Hand Grenade&amp;quot;) was written in C# and hosted on a PC in Tim&amp;#39;s garage. For all the social and technical details behind the invention of The Water Hobo, please have &lt;a href="http://blog.dennyboynton.com/post/First-Episode-of-Weird-Code-quot3bThe-Water-Hoboquot3b.aspx" target="_blank"&gt;a look at the podcast&lt;/a&gt;. It&amp;#39;s not only informative, but entertaining (hopefully). 
&lt;/p&gt;
&lt;p&gt;
Today, I got a note from Tim that he&amp;#39;d made a few updates to the Water Hobo recently. While I didn&amp;#39;t have time to run out and run film on it, I thought I&amp;#39;d share the photos with you. If you watch the podcast, you see the cannon is clearly visible over the fence line. The Water Hobo III was obviously built for stealth &lt;em&gt;and&lt;/em&gt; power:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheWaterHoboIII_331/PIC-0032_2.jpg"&gt;&lt;img style="border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheWaterHoboIII_331/PIC-0032_thumb.jpg" border="0" alt="PIC-0032" width="244" height="184" /&gt;&lt;/a&gt;&amp;nbsp; &lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheWaterHoboIII_331/PIC-0034_2.jpg"&gt;&lt;img style="border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheWaterHoboIII_331/PIC-0034_thumb.jpg" border="0" alt="PIC-0034" width="244" height="184" /&gt;&lt;/a&gt;&amp;nbsp; &lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheWaterHoboIII_331/PIC-0037_2.jpg"&gt;&lt;img style="border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheWaterHoboIII_331/PIC-0037_thumb.jpg" border="0" alt="PIC-0037" width="244" height="184" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Noooo, that&amp;#39;s not a high-pressure, .NET controlled water cannon. It&amp;#39;s just a harmless creeping vine on an innocent looking fence in just another suburban neighborhood.
&lt;/p&gt;
&lt;p&gt;
During the podcast, Tim said he was looking to implement the ability to activate and fire The Water Hobo with his Xbox 360 using the XNA Studio. I haven&amp;#39;t heard back as to whether or not this phase is complete, but I&amp;#39;ll be sure to keep you up to date. If he has, &lt;strong&gt;please&lt;/strong&gt; don&amp;#39;t cut though Tim&amp;#39;s yard!
&lt;/p&gt;
&lt;p&gt;
Well done, Tim. Looking forward to the The Water Hobo IV!
&lt;/p&gt;
&lt;p&gt;
And by the way, if you&amp;#39;ve built something interesting or just plain weird using .NET or some other Microsoft technology, please &lt;a href="mailto:denny.boynton@microsoft.com" target="_blank"&gt;drop me an email&lt;/a&gt; or leave a comment below and let me know about it. I&amp;#39;d love to shoot an episode of Weird Code with you and show off your work!
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:406fd749-fa46-4d77-b283-991e09480e4c" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/The%20Water%20Hobo"&gt;The Water Hobo&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Tim%20Higgins"&gt;Tim Higgins&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/286586083" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/286586083/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/The-Water-Hobo-III.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=04163267-b72b-4e6b-8912-0e06597852bf</guid>
      <pubDate>Fri, 09 May 2008 00:13:00 -0500</pubDate>
      <category>Weird Code</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=04163267-b72b-4e6b-8912-0e06597852bf</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=04163267-b72b-4e6b-8912-0e06597852bf</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/The-Water-Hobo-III.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=04163267-b72b-4e6b-8912-0e06597852bf</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=04163267-b72b-4e6b-8912-0e06597852bf</feedburner:origLink></item>
    <item>
      <title>Luminary David Chappell Touring the Central Region This Month</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/LuminaryDavidChappellTouringtheCentralRe_14430/DavidChappell2_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/LuminaryDavidChappellTouringtheCentralRe_14430/DavidChappell2_thumb.jpg" border="0" alt="DavidChappell2" width="139" height="165" align="right" /&gt;&lt;/a&gt; Industry thought-leader &lt;a href="http://www.davidchappell.com/" target="_blank"&gt;David Chappell&lt;/a&gt; will be visiting four cities in the central part of the country throughout the month of May to present &lt;em&gt;Undestanding Software + Services: A Perspective&lt;/em&gt;. David&amp;#39;s talk will provide a clear explanation of what an S+S approach to architecture really looks like, an overview of building software with hosted &amp;quot;services in the cloud,&amp;quot; as well as the tools and guidance Microsoft is providing to help development teams be successful in developing S+S oriented solutions. 
&lt;/p&gt;
&lt;p&gt;
David will be speaking from 1:00 PM to 4:00 PM in the following cities on the following dates: 
&lt;/p&gt;
&lt;table border="1" cellspacing="0" cellpadding="2" width="392"&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;td width="170" valign="top"&gt;&lt;strong&gt;&lt;u&gt;Location&lt;/u&gt;&lt;/strong&gt;&lt;/td&gt;
			&lt;td width="91" valign="top"&gt;&lt;strong&gt;&lt;u&gt;Date&lt;/u&gt;&lt;/strong&gt;&lt;/td&gt;
			&lt;td width="129" valign="top"&gt;&lt;strong&gt;&lt;u&gt;Registration Link&lt;/u&gt;&lt;/strong&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td width="170" valign="top"&gt;Southfield, Michigan&lt;/td&gt;
			&lt;td width="91" valign="top"&gt;May 13th&lt;/td&gt;
			&lt;td width="129" valign="top"&gt;[&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032375525&amp;amp;Culture=en-US" target="_blank"&gt;register&lt;/a&gt;]&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td width="169" valign="top"&gt;Bloomington, Minnesota&lt;/td&gt;
			&lt;td width="91" valign="top"&gt;May 15th&lt;/td&gt;
			&lt;td width="129" valign="top"&gt;[&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032375531&amp;amp;Culture=en-US" target="_blank"&gt;register&lt;/a&gt;]&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td width="168" valign="top"&gt;Downer&amp;#39;s Grove, Illinois&lt;/td&gt;
			&lt;td width="91" valign="top"&gt;May 20th&lt;/td&gt;
			&lt;td width="129" valign="top"&gt;[&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032375532&amp;amp;Culture=en-US" target="_blank"&gt;register&lt;/a&gt;]&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td width="168" valign="top"&gt;Houston, Texas&lt;/td&gt;
			&lt;td width="91" valign="top"&gt;May 22nd&lt;/td&gt;
			&lt;td width="129" valign="top"&gt;[&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032375533&amp;amp;Culture=en-US" target="_blank"&gt;register&lt;/a&gt;]&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;
David is Principal of &lt;a href="http://www.davidchappell.com/" target="_blank"&gt;Chappell &amp;amp; Associates&lt;/a&gt; in San Francisco, California. David has been the keynote speaker for dozens of conferences and events in the U.S., Europe, Asia, Latin America, and Australia. His popular seminars have been attended by tens of thousands of developers, architects, and decision makers in forty countries. David&amp;rsquo;s books have been translated into ten languages and used regularly in courses at MIT, ETH Zurich, and many other universities. In his consulting practice, he has helped clients such as Hewlett-Packard, IBM, Microsoft, Stanford University, and Target Corporation adopt new technologies, market new products, train their sales staffs, and create business plans. 
&lt;/p&gt;
&lt;p&gt;
I am coordinating David&amp;#39;s tour through this part of the country. If you have any questions about the event or have any problems registering, please &lt;a href="mailto:Denny.Boynton@microsoft.com" target="_blank"&gt;drop me an email&lt;/a&gt; or leave me a comment below. 
&lt;/p&gt;
&lt;p&gt;
If you&amp;#39;ve never seen David Chappell speak, you won&amp;#39;t want to miss this opportunity to see one of great luminaries in the industry talk about one of the most exciting topics in software architecture today. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0e223f07-329f-4e30-865c-9b987c0aebce" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/David%20Chappell"&gt;David Chappell&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Software%20Plus%20Services"&gt;Software Plus Services&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/S+S"&gt;S+S&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Software%20Architecture"&gt;Software Architecture&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Chicago"&gt;Chicago&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Detroit"&gt;Detroit&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Minneapolis"&gt;Minneapolis&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Houston"&gt;Houston&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/285835773" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/285835773/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Luminary-David-Chappell-Touring-the-Central-Region-This-Month.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=623c46e1-6299-414a-a6e4-22e9aec8ac71</guid>
      <pubDate>Thu, 08 May 2008 00:44:00 -0500</pubDate>
      <category>Software Plus Services</category>
      <category>Events</category>
      <category>Architecture</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=623c46e1-6299-414a-a6e4-22e9aec8ac71</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=623c46e1-6299-414a-a6e4-22e9aec8ac71</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Luminary-David-Chappell-Touring-the-Central-Region-This-Month.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=623c46e1-6299-414a-a6e4-22e9aec8ac71</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=623c46e1-6299-414a-a6e4-22e9aec8ac71</feedburner:origLink></item>
    <item>
      <title>ZoomIt</title>
      <description>&lt;p&gt;I got the following question several times after my presentation at the St. Louis &lt;em&gt;Heroes Happen Here&lt;/em&gt; launch event yesterday:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&lt;em&gt;"What utility were you using to zoom in on your code? That was freakin' cool!"&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;That utility is &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897434.aspx" target="_blank"&gt;ZoomIt&lt;/a&gt;, and it is a free tool available on Microsoft's &lt;a href="http://technet.microsoft.com/en-us/default.aspx" target="_blank"&gt;TechNet&lt;/a&gt; site. You can download it &lt;a href="http://download.sysinternals.com/Files/ZoomIt.zip" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;To install ZoomIt, open the Zip file you downloaded and simply extract the file content to a directory somewhere on your computer. You can then add a shortcut for the executable file in your Startup folder so it fires up every time you start Windows, or, if you're like me and trying to limit how much background processes are running on your machine, just add the shortcut to your Quick Launch bar. That way, you can start it up any 'ol time you need it.&lt;/p&gt; &lt;p&gt;ZoomIt has a couple of other features as well, including the ability to draw and type text directly on your screen while zoomed. When you fire up the application for the first time, you'll be presented with a dialog box where you can set the keystroke preferences for activating these ZoomIt features and, of course, to turn ZoomIt off. Full directions for setting-up ZoomIt are on its main &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897434.aspx" target="_blank"&gt;product page&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;I discovered this tool for the first time at the launch event in Minneapolis back on April 1st. I delivered the "next web" demo during the keynote and ZoomIt really helped me show some of the code and especially the toolbar details in a hall that sat 3,000 people.&lt;/p&gt; &lt;p&gt;If you do a lot of presenting, you should definitely go grab ZoomIt and use it in your presentations. It really works and the price is right!&lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3f511d2e-fbe2-486d-b194-c0e7955cb61a" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/ZoomIt" rel="tag"&gt;ZoomIt&lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/285835774" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/285835774/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/ZoomIt.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=ed3df549-bf47-4878-9efc-b140a3cc2c7f</guid>
      <pubDate>Wed, 07 May 2008 00:19:16 -0500</pubDate>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=ed3df549-bf47-4878-9efc-b140a3cc2c7f</pingback:target>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=ed3df549-bf47-4878-9efc-b140a3cc2c7f</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/ZoomIt.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=ed3df549-bf47-4878-9efc-b140a3cc2c7f</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=ed3df549-bf47-4878-9efc-b140a3cc2c7f</feedburner:origLink></item>
    <item>
      <title>Thank You for a Great Launch Event, St. Louis</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/ThankYouforaGreatLaunchEventSt.Louis_E903/HeroesHappenHere_2.png"&gt;&lt;img style="margin: 5px; border: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/ThankYouforaGreatLaunchEventSt.Louis_E903/HeroesHappenHere_thumb.png" border="0" alt="HeroesHappenHere" width="169" height="196" align="right" /&gt;&lt;/a&gt;I finished up my speaking tour for the &lt;em&gt;&lt;a href="http://www.microsoft.com/heroeshappenhere/default.mspx" target="_blank"&gt;Heroes Happen Here&lt;/a&gt;&lt;/em&gt; product launch of Windows Server, Visual Studio and SQL Server 2008 about 25 minutes ago here in my home town of St. Louis. The audience was great. I hope you enjoyed the talk and thanks to you all for your attention and the great questions. I hope you enjoy the t-shirts! 
&lt;/p&gt;
&lt;p&gt;
I&amp;#39;m actually sitting in the front row at the launch as I write this watching &lt;a href="http://www.notsotrivial.net" target="_blank"&gt;Clint Edmonson&lt;/a&gt; talk about occasionally connected applications (OCAs) and the synch framework. As promised, you can download the deck that I showed you today &lt;a href="http://blog.dennyboynton.com/Downloads/BuildingOBADeck_KC.zip" target="_blank"&gt;here&lt;/a&gt;. 
&lt;/p&gt;
&lt;p&gt;
Also, just to make things easy, here are the links from my resource slide at the end of my presentation: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://msdn.microsoft.com/vstudio"&gt;Install of Visual Studio 2008 Trial Edition&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href="http://forums.microsoft.com/msdn/ShowForum.aspx?ForumID=16"&gt;Visit the Office Developer Forum&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/office/default.aspx"&gt;Visit the Office Developer Center&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.microsoft.com/vstudio"&gt;Download the Evaluation Materials&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
As a follow-up to the gentleman who asked me a question about downloading &lt;a href="http://en.wikipedia.org/wiki/VSTO" target="_blank"&gt;Visual Studio Tools for Office&lt;/a&gt; (VSTO) and installing it in Visual Studio 2008, unfortunately, that isn&amp;#39;t currently possible. I know everyone who attended the launch received a copy of VS2008 Standard which doesn&amp;#39;t support VSTO at this time. Hopefully, you&amp;#39;ll have access to the Professional version of VS2008 so you can try out some of the techniques we talked about this afternoon. 
&lt;/p&gt;
&lt;p&gt;
Again, please feel free to leave any questions in the comment section below or send me an email! 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:79423a93-8fbc-4d41-94c8-e9fba803ffe9" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Product%20Launch"&gt;Product Launch&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/OBA"&gt;OBA&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Microsoft%20Office"&gt;Microsoft Office&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Heroes%20Happen%20Here"&gt;Heroes Happen Here&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/285835775" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/285835775/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Thank-You-for-a-Great-Launch-Event2c-St-Louis.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=639ab8b4-a3a5-404f-8d6d-25a03d22f667</guid>
      <pubDate>Tue, 06 May 2008 16:34:00 -0500</pubDate>
      <category>MOSS</category>
      <category>Office Development</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=639ab8b4-a3a5-404f-8d6d-25a03d22f667</pingback:target>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=639ab8b4-a3a5-404f-8d6d-25a03d22f667</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Thank-You-for-a-Great-Launch-Event2c-St-Louis.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=639ab8b4-a3a5-404f-8d6d-25a03d22f667</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=639ab8b4-a3a5-404f-8d6d-25a03d22f667</feedburner:origLink></item>
    <item>
      <title>First Hundred Days With Windows Home Server</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/FirstHundredDaysWithWindowsHomeServer_F8E3/windows_home_server_2.jpg"&gt;&lt;img style="margin: 0px 5px 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/FirstHundredDaysWithWindowsHomeServer_F8E3/windows_home_server_thumb.jpg" border="0" alt="windows_home_server" width="204" height="236" align="right" /&gt;&lt;/a&gt; Weekends are for fun and relaxation. As I was pulling up some music to listen to via my &lt;a href="http://www.xbox.com/en-US/" target="_blank"&gt;Xbox 360&lt;/a&gt; last Saturday morning, it occurred to me that I&amp;#39;ve been running &lt;a href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx" target="_blank"&gt;Windows Home Server&lt;/a&gt; for quite awhile now. In fact, last Saturday was the 100th day I&amp;#39;d had Home Server running on my home network. So I thought I&amp;#39;d share some of the ups and downs I&amp;#39;ve had over that time with Home Server. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;font size="4"&gt;What I Dig&lt;/font&gt;&lt;/strong&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;u&gt;Hardware Requirements&lt;/u&gt;&lt;/strong&gt;: I have a decent PC that I build about four years ago in my home office. By &amp;quot;decent&amp;quot; I mean that it is adequate for accessing and storing data, being a print server and some gaming. Very solids, but nothing spectacular, but let&amp;#39;s face it, it&amp;#39;s &lt;em&gt;freaking four years old&lt;/em&gt;. 
&lt;/p&gt;
&lt;p&gt;
The basic specs are: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;P4 2.4 GHz &lt;/li&gt;
	&lt;li&gt;512 MB SD RAM &lt;/li&gt;
	&lt;li&gt;Basic, non-brand name 64MB display card &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
I had a 20 GB hard drive already installed serving as the system partition and I bought and installed a 220 GB ATA drive (yeah, the system board is too old for SATA) for content. And that&amp;#39;s it. Pretty basic. 
&lt;/p&gt;
&lt;p&gt;
The OS absolutely screams on this hardware. As it is mainly managing content and backups on your home network, Home Server doesn&amp;#39;t need a lot of horsepower to provide reasonable performance. I know that several PC vendors are selling preconfigured machines for Home Server, which is cool, but you can just as easily build yourself a machine for very little money and get comparable performance. Just be sure to get yourself a &lt;strong&gt;big&lt;/strong&gt; and &lt;strong&gt;fast&lt;/strong&gt; drive for storing content. Disc space is cheap and you&amp;#39;ll be glad you have the extra room once you start doing backups of the other machines on your network. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;u&gt;Reliability&lt;/u&gt;&lt;/strong&gt;: Home Server just runs and runs and runs. I&amp;#39;ve only had to shut it down a couple of times and that was because I was heading out of town for a week or so with the family and I usually power everything down if it&amp;#39;s not going to be used for an extended period of time. As it&amp;#39;s built on top of Windows 2003 Server, the reliability isn&amp;#39;t surprising, but welcome just the same. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;u&gt;Remote Management Console&lt;/u&gt;&lt;/strong&gt;: Home Server comes with a client-side application that does a few things. For one, it registers your machine with the Home Server automatically, facilitating automated back-ups primarily. It also provides you with a handy management console application that will let you manage the machines on your home network, configure automated back-ups, setup and manage user accounts on the Home Server, configure shared directories for music, videos, etc. and check the current status of your server drives and your network as a whole. 
&lt;/p&gt;
&lt;p&gt;
While those of us who work with servers all the time could do this any number of ways. One of the risks of creating a home server is that non-technical consumers who still struggle to print Word 2007 documents with the new tool ribbon will be completely lost when it comes to server configuration. The Home Server management console makes this very easy and, for those of us who could manage it from the command line, it provides a very efficient means of making necessary changes and then getting out, all without having to log directly into the console. Nice! 
&lt;/p&gt;
&lt;p&gt;
What&amp;#39;s more, you can configure Home Server to be accessible from &lt;em&gt;outside&lt;/em&gt; your home network as well, providing you with access to your files and data ever when you&amp;#39;re away from home. Nice nice! 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;font size="4"&gt;What I Don&amp;#39;t Dig So Much&lt;/font&gt;&lt;/strong&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;No Support Media Center Extender&lt;/strong&gt;: This just made me sad. As Media Center ships standard with Vista Home and up now, it seems like bundling some flavor of the Media Center management interface into Home Server would have been a no-brainer. But alas, it is no where to be found. It is easy enough to connect my Xbox to the shared content directories on the Home Server, but I have really come to like the Media Center user interface as it appears in Vista. It was so simple, my six-year-old could cycle through available movies and pick something out. Now I have to do it for her because the files names can be a little cryptic to someone her age. 
&lt;/p&gt;
&lt;p&gt;
I guess I&amp;#39;m not looking for full-blown Media Center on Home Server, just the ability for other Media Center PCs and devices to interact with it like Media Center. Is that so much to ask? Honestly, this is my only complaint, but it&amp;#39;s a significant one. 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;font size="4"&gt;Better Off Than a Hundred Days Ago?&lt;/font&gt;&lt;/strong&gt; 
&lt;/p&gt;
&lt;p&gt;
My hope when I installed Home Server was that I would get all the benefits I&amp;#39;d come to enjoy from Media Center with the added bonuses of network and backup management in Home Server. As it turns out, the latter set of features are what I&amp;#39;ve benefited from the most. What would make Home Server a grand slam instead of a double would be to provide me with the means of not only storing my media files, but to manage and access them much the way Media Center does. If this were there, I&amp;#39;d be hard pressed to think of anything else you&amp;#39;d have to do to this product to make it better. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ae511bc4-c3c3-4b84-8f98-67884a53f2f9" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Windows%20Home%20Server"&gt;Windows Home Server&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Xbox%20360"&gt;Xbox 360&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Digital%20Lifestyle"&gt;Digital Lifestyle&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/267059827" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/267059827/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/First-Hundred-Days-With-Windows-Home-Server.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=32527a19-4b65-4a90-aa85-175158b8aaec</guid>
      <pubDate>Tue, 08 Apr 2008 11:51:00 -0500</pubDate>
      <category>Digitial Lifestyle</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=32527a19-4b65-4a90-aa85-175158b8aaec</pingback:target>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=32527a19-4b65-4a90-aa85-175158b8aaec</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/First-Hundred-Days-With-Windows-Home-Server.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=32527a19-4b65-4a90-aa85-175158b8aaec</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=32527a19-4b65-4a90-aa85-175158b8aaec</feedburner:origLink></item>
    <item>
      <title>Open XML Ratified by ISO</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheArchitecturalSignificanceofOpenXML_E431/iso-logo_2.jpg"&gt;&lt;img style="margin: 5px; border: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheArchitecturalSignificanceofOpenXML_E431/iso-logo_thumb.jpg" border="0" alt="iso-logo" width="177" height="163" align="right" /&gt;&lt;/a&gt; The &lt;a href="http://www.iso.org" target="_blank"&gt;International Organization for Standardization&lt;/a&gt;, or ISO (yeah, I can&amp;#39;t figure out that acronym either), posted a &lt;a href="http://www.iso.org/iso/pressrelease.htm?refid=Ref1123" target="_blank"&gt;press release&lt;/a&gt; on their web site Tuesday&amp;nbsp; announcing that ISO/IES DIS 29500, or Office Open XML, received well more than the minimum number of votes by the international community to become an official ISO standard. While ISO has not officially approved Open XML as an international standard, it received 86% approval, well above the 66.6% needed for approval. 
&lt;/p&gt;
&lt;p&gt;
Open XML may very well be one of the most significant recent technical standards that you haven&amp;#39;t heard much about. For a starter course with links out to important resources, check out &lt;a href="http://blog.dennyboynton.com/post/The-Next-Step-in-Interoperability-Open-XML.aspx" target="_blank"&gt;this post&lt;/a&gt; I did a couple of weeks ago on this very subject. 
&lt;/p&gt;
&lt;p&gt;
The official Microsoft statement on the ratification comes from Tom Robertson, General Manager of Interoperability and Standards: 
&lt;/p&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	&lt;em&gt;With 86 percent of voting national bodies supporting ratification, there is overwhelming support for Open XML. This outcome is a clear win for customers, technology providers and governments that want to choose the format that best meets their needs and have a voice in the evolution of this widely adopted standard. The input from the technical experts, customers and governments around the world has greatly improved the Open XML specification and will make it even more useful to developers and customers. Once it is formally approved, we are committed to supporting this specification in our products, and we will continue to work with standards bodies, governments and the industry to promote greater interoperability and innovation.&lt;/em&gt; 
	&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
Open XML has been an open standard for years. In fact, a slew of software vendors already support it their products. These products include Microsoft Office (2007, 2003, XP, 2000), OpenOffice Novel Edition, Gnumeric, Neo-Office 2.1, WordPerfect 2007 and the PalmOS. 
&lt;/p&gt;
&lt;p&gt;
This ratification is important to developers and architects worldwide. The standardization of word processing, spreadsheet and presentation documents will: 
&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Provides customers with much more choice -- they can make software purchasing solutions based &lt;strong&gt;not&lt;/strong&gt; on existing file formats, but which office productivity software has the best features for the best price. &lt;/li&gt;
	&lt;li&gt;Allow developers can create applications on the desktop, the server and mobile devices that generate documents that they know, with confidence, will be readily consumed by their information workers&amp;#39; software. &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheArchitecturalSignificanceofOpenXML_E431/OpenXML_2.jpg"&gt;&lt;img style="margin: 5px; border: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/TheArchitecturalSignificanceofOpenXML_E431/OpenXML_thumb.jpg" border="0" alt="OpenXML" width="176" height="133" align="right" /&gt;&lt;/a&gt;In very much the same way we look to standards-based technologies like web services to allow us to interoperate between systems built to run on different platforms, developers and architects must begin to think the same way about business documents. Adoption of Open XML allows technology providers to focus on building the best software solution possible without having to worry about the formatting minutia of multiple different consuming applications. 
&lt;/p&gt;
&lt;p&gt;
And how can that be a bad thing? 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b99da7eb-e82a-49f2-a3ff-07a413516df3" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Open%20XML"&gt;Open XML&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Office"&gt;Office&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/ISO"&gt;ISO&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Standards"&gt;Standards&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/264238663" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/264238663/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Open-XML-Ratified-by-ISO.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=47c27107-0f91-4073-a85d-bcab18f3e853</guid>
      <pubDate>Fri, 04 Apr 2008 17:06:00 -0500</pubDate>
      <category>Interoperability</category>
      <category>Open XML</category>
      <category>Office Development</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=47c27107-0f91-4073-a85d-bcab18f3e853</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=47c27107-0f91-4073-a85d-bcab18f3e853</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Open-XML-Ratified-by-ISO.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=47c27107-0f91-4073-a85d-bcab18f3e853</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=47c27107-0f91-4073-a85d-bcab18f3e853</feedburner:origLink></item>
    <item>
      <title>Why VSTO Rocks and Where You Can Learn More About It</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhyVSTORocksandWhereYouCanLearnMoreAbout_ED5F/StLouisMOSSCamp_2.gif"&gt;&lt;img style="margin: 5px; border: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhyVSTORocksandWhereYouCanLearnMoreAbout_ED5F/StLouisMOSSCamp_thumb.gif" border="0" alt="StLouisMOSSCamp" width="213" height="174" align="right" /&gt;&lt;/a&gt;At both the Kansas City and Minneapolis Windows Server/Visual Studio/SQL Server &lt;a href="http://www.microsoft.com/heroeshappenhere/events/default.mspx" target="_blank"&gt;product launches&lt;/a&gt;, I&amp;#39;ve presented a breakout session called &lt;em&gt;Creating Instantly Recognizable Application with the Microsoft Office System&lt;/em&gt;. It has given me a really good opportunity to dig into developing custom applications in the Office client applications as well as customizing SharePoint Server and, ultimately, tying the two systems together to create a true &amp;quot;software plus service&amp;quot; solution. I have to say, this stuff absolutely rocks! 
&lt;/p&gt;
&lt;p&gt;
One thing I&amp;#39;ve learned in the past several weeks is that is has &lt;strong&gt;never&lt;/strong&gt; been easier to develop, test and deploy MOSS applications. There are several reasons for this: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Visual Studio Tools for Office (VSTO) is integrated into Visual Studio 2008 and offers a very rich set of project types for all the Office products&lt;/li&gt;
	&lt;li&gt;VSTO provides a SharePoint workflow project type -- this is the same as a typical Workflow Foundation project (SharePoint uses WF as its workflow engine) except that it has all the SharePoint specific hooks built in that allows for one-click deployment and debugging&lt;/li&gt;
	&lt;li&gt;For Office 2007 applications, VSTO now provides a visual design tool for ribbon add-in applications&lt;/li&gt;
	&lt;li&gt;The developer experience for building Office Business Applications (OBAs) is exactly the same as building any other WinForm or ASP.NET application in Visual Studio&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
If you&amp;#39;ve developed an application in Visual Studio before, you can have an OBA application up and running in virtually no time. If you want to get some hands-on experience from the professionals, I&amp;#39;m glad to let you know that there will be a &lt;strong&gt;MOSS Camp in St. Louis this coming Saturday, April 5th&lt;/strong&gt;. To get all the details, including the topics for the day, check out the &lt;a href="http://www.notsotrivial.net/blog/post/2008/03/Saint-Louis-MOSS-Camp-2008---April-5.aspx" target="_blank"&gt;announcement post&lt;/a&gt; on &lt;a href="http://www.notsotrivial.net/blog/" target="_blank"&gt;Clint Edmonson&lt;/a&gt;&amp;#39;s web site. This is a community driven event being given my the &lt;a href="http://www.stlsug.org/default.aspx" target="_blank"&gt;St. Louis SharePoint User Group&lt;/a&gt;. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9ba26ef2-c8b3-4bc2-8537-42919acce41c" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/MOSS%20Camp%20St.%20Louis"&gt;MOSS Camp St. Louis&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/OBA"&gt;OBA&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/VSTO"&gt;VSTO&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Visual%20Studio%202008"&gt;Visual Studio 2008&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/262926953" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/262926953/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Why-VSTO-Rocks-and-Where-You-Can-Learn-More-About-It.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=177bb7a9-6fbb-4298-bb4c-5fc6b87c596a</guid>
      <pubDate>Wed, 02 Apr 2008 16:53:00 -0500</pubDate>
      <category>Office Development</category>
      <category>MOSS</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=177bb7a9-6fbb-4298-bb4c-5fc6b87c596a</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=177bb7a9-6fbb-4298-bb4c-5fc6b87c596a</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Why-VSTO-Rocks-and-Where-You-Can-Learn-More-About-It.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=177bb7a9-6fbb-4298-bb4c-5fc6b87c596a</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=177bb7a9-6fbb-4298-bb4c-5fc6b87c596a</feedburner:origLink></item>
    <item>
      <title>Uninstalling Office 2007 Add-Ins</title>
      <description>&lt;p&gt;
If you read this blog regularly, I usually try to tackle relatively big topics and wax philosophical on any number of topics, thus the tag line &amp;quot;A Shotgun Approach to architecture.&amp;quot; But this post will be different in that I&amp;#39;m actually providing some useful, hands-on information. Imagine that, from an architect even. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/UninstallingOutlook2007AddIns_BE1F/RegEditAddins.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/UninstallingOutlook2007AddIns_BE1F/RegEditAddins_thumb.jpg" border="0" alt="RegEditAddins" width="306" height="382" align="right" /&gt;&lt;/a&gt;I&amp;#39;ve been talking to audiences a lot lately about building customer applications, or add-ins, for Microsoft Office using Visual Studio 2008. In this vastly expanding world of software plus services, Office stands as an excellent example of extending the base functionality of an existing piece of software to meet individual user needs in an environment that is instantly recognizable and comfortable for them.
&lt;/p&gt;
&lt;p&gt;
Installing add-ins for Outlook 2007 using Visual Studio 2008 is a piece of cake -- simply code, build and deploy. In fact, your add-ins are installed into Outlook as part of the debugging process as well.
&lt;/p&gt;
&lt;p&gt;
While this is cool and simple to use, it can have some undesired results, like having half finished or abandoned projects sitting in Outlook throwing errors every time you read or compose email. I actually ran into this problem this last week after doing some demos at the Windows Server/Visual Studio/SQL Server 2008 product launch in Kansas City.
&lt;/p&gt;
&lt;p&gt;
I quickly discovered that there is no automatic way to uninstall these add-ins once they&amp;#39;re installed, at least none that I was able to find. Ultimately, I discovered how to remove them and it requires a simple trip into the Windows registry ( oh joy!).
&lt;/p&gt;
&lt;p&gt;
First, you&amp;#39;ll need to open the registry editor and drill down to &lt;strong&gt;HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins&lt;/strong&gt;. When you open this key, you&amp;#39;ll see a list of sub-keys, each of which represent an add-in for Outlook.
&lt;/p&gt;
&lt;p&gt;
Simply find the key for the add-in you wish to uninstall and delete it. You will, of course, need to restart Outlook for the change to take place.
&lt;/p&gt;
&lt;p&gt;
And the good news is that the process is identical for Word and Excel as well.
&lt;/p&gt;
&lt;p&gt;
Hopefully add-in management will be better integrated into Office in future version. For now, this simple process should get you where you need to go.
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:dc490ece-baec-4a81-8580-157b5df82899" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Microsoft%20Office"&gt;Microsoft Office&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Addins"&gt;Addins&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/OBA"&gt;OBA&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/260838665" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/260838665/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Uninstalling-Office-2007-Add-Ins.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=9501ec6a-9c78-4a8c-9759-19f5933bf47b</guid>
      <pubDate>Sun, 30 Mar 2008 13:35:00 -0500</pubDate>
      <category>Office Development</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=9501ec6a-9c78-4a8c-9759-19f5933bf47b</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=9501ec6a-9c78-4a8c-9759-19f5933bf47b</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Uninstalling-Office-2007-Add-Ins.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=9501ec6a-9c78-4a8c-9759-19f5933bf47b</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=9501ec6a-9c78-4a8c-9759-19f5933bf47b</feedburner:origLink></item>
    <item>
      <title>Resources for Learning to Build Office Applications with Visual Studio 2008</title>
      <description>&lt;p&gt;
I had the privilege of presenting &lt;em&gt;Building Instantly Recognizable Applications with the Microsoft Office System&lt;/em&gt; at the Windows/Visual Studio/SQL Server 2008 launch in Kansas City, KS today. I had a great time and am grateful to the outstanding audience for your attention and excellent questions.
&lt;/p&gt;
&lt;p&gt;
As I am a man of my word, here are the resource links from my slide deck for those of you wanting to learn more about how to start developing applications for Office:
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://msdn.microsoft.com/vstudio" target="_blank"&gt;Install of Visual Studio 2008 Trial Edition&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://forums.microsoft.com/msdn/ShowForum.aspx?ForumID=16" target="_blank"&gt;Visit the Office Developer Forum&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://msdn.microsoft.com/office/tool/vsto/default.aspx" target="_blank"&gt;Visit the Office Developer Center&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.microsoft.com/vstudio" target="_blank"&gt;Download the Evaluation Materials&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Also, I had several requests after my talk for my slide deck, so I&amp;#39;ve made it available for download it &lt;a href="http://blog.dennyboynton.com/Downloads/BuildingOBADeck_KC.zip" target="_blank"&gt;here&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
If you were at the talk today and have comments or questions, please feel free to email me to post a comment below. Enjoy the materials and thanks again for attending the launch event today!
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:11993394-05df-42cb-a2e9-bf1ac91f6a85" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Microsoft%20Launch"&gt;Microsoft Launch&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Office"&gt;Office&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Visual%20Studio%202008"&gt;Visual Studio 2008&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/VSTO"&gt;VSTO&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/258003607" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/258003607/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Resources-for-Learning-to-Build-Office-Applications-with-Visual-Studio-2008.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=d874b124-f9cf-4df7-9cee-90af4bc14272</guid>
      <pubDate>Tue, 25 Mar 2008 20:13:00 -0500</pubDate>
      <category>Office Development</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=d874b124-f9cf-4df7-9cee-90af4bc14272</pingback:target>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=d874b124-f9cf-4df7-9cee-90af4bc14272</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Resources-for-Learning-to-Build-Office-Applications-with-Visual-Studio-2008.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=d874b124-f9cf-4df7-9cee-90af4bc14272</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=d874b124-f9cf-4df7-9cee-90af4bc14272</feedburner:origLink></item>
    <item>
      <title>Health InfoSTAT Case Study on Software Plus Services Now Available</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/GreatCaseStudyonSoftwarePlusServicesNowA_85A8/logoSolace_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/GreatCaseStudyonSoftwarePlusServicesNowA_85A8/logoSolace_thumb.jpg" border="0" alt="logoSolace" width="204" height="54" align="right" /&gt;&lt;/a&gt; A few months ago, I wrote a &lt;a href="http://blog.dennyboynton.com/post/Real-Life-Software-2b-Services-Health-InfoSTAT.aspx" target="_blank"&gt;post&lt;/a&gt; about a St. Louis start-up called &lt;a href="http://www.healthinfostat.com/" target="_blank"&gt;Health InfoSTAT&lt;/a&gt; because they adopted a software plus services approach to developing their inaugural product offering, &lt;em&gt;Solace&lt;/em&gt;. Basically, &lt;em&gt;Solace&lt;/em&gt; is a personal health record management application that allows you to create and maintain profiles for you and members of your family. &lt;a href="https://www.healthinfostat.com/freeDownload.aspx" target="_blank"&gt;Downloading&lt;/a&gt; and using the client software is free and, for a fee of about $20 a year, you can publish your information securely to Health InfoSTAT&amp;#39;s hosted services and make the information available to medical professionals whenever it is needed.
&lt;/p&gt;
&lt;p&gt;
I thought their story was different because their &lt;strong&gt;business model&lt;/strong&gt; evolved around their &lt;strong&gt;architectural model&lt;/strong&gt; of software plus services. That is, they are creating several free client applications available for multiple platforms and devices, most of which are fully functional and stand-alone. Then, for an annual fee, customers can then subscribe to Health InfoSTAT&amp;#39;s hosted services and significantly extend the functionality of the client software. 
&lt;/p&gt;
&lt;p&gt;
Anyway, Microsoft decided to do a &lt;a href="http://www.microsoft.com/casestudies/casestudy.aspx?casestudyid=4000001645" target="_blank"&gt;case study&lt;/a&gt; on Health InfoSTAT and published it earlier this week. If you&amp;#39;ve been intrigued by the concept of software plus services but have struggled with the business value proposition, I highly suggest you give it a read.
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e150b73e-0d03-4872-9504-78ec77468ed4" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Health%20InfoSTAT"&gt;Health InfoSTAT&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Software%20Plus%20Services"&gt;Software Plus Services&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/S+S"&gt;S+S&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Case%20Study"&gt;Case Study&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/255590127" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/255590127/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/Health-InfoSTAT-Case-Study-on-Software-Plus-Services-Now-Available.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=a075c43a-eb32-422f-91a5-0f92b7f1cf11</guid>
      <pubDate>Fri, 21 Mar 2008 11:03:00 -0500</pubDate>
      <category>Software Plus Services</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=a075c43a-eb32-422f-91a5-0f92b7f1cf11</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=a075c43a-eb32-422f-91a5-0f92b7f1cf11</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/Health-InfoSTAT-Case-Study-on-Software-Plus-Services-Now-Available.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=a075c43a-eb32-422f-91a5-0f92b7f1cf11</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=a075c43a-eb32-422f-91a5-0f92b7f1cf11</feedburner:origLink></item>
    <item>
      <title>"What the hell is a web standard?": Joel Spolsky Nailed It...Again</title>
      <description>&lt;p&gt;
&lt;a href="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhatthehellisawebstandardJoelSpols.Again_E0B8/JoelSpolsky_2.jpg"&gt;&lt;img style="margin: 5px; border-width: 0px" src="http://blog.dennyboynton.com/image.axd?picture=WindowsLiveWriter/WhatthehellisawebstandardJoelSpols.Again_E0B8/JoelSpolsky_thumb.jpg" border="0" alt="JoelSpolsky" width="244" height="164" align="right" /&gt;&lt;/a&gt; Like many of you, I&amp;#39;ve been a big fan of &lt;em&gt;&lt;a href="http://www.joelonsoftware.com" target="_blank"&gt;Joel on Software&lt;/a&gt;&lt;/em&gt; for years. Very few of the blogs I follow get me thinking and laughing out loud like Joel&amp;#39;s does. If you&amp;#39;ve never heard of Joel and his blog, definitely check it out -- you won&amp;#39;t be disappointed. 
&lt;/p&gt;
&lt;p&gt;
There&amp;#39;s been a lot of rumbling lately about web standards, prompted in large part by Microsoft&amp;#39;s announcement at &lt;a href="http://www.visitmix.com" target="_blank"&gt;MIX &amp;#39;08&lt;/a&gt; a couple of weeks ago that &lt;a href="http://www.visitmix.com/blogs/Joshua/Day-1-Keynote" target="_blank"&gt;Internet Explorer 8 will support &amp;quot;web standards&amp;quot; by default&lt;/a&gt;. This, of course, sounds like something important enough to complete with the invention of sliced bread and the electric razor. Everybody loves standards, right? 
&lt;/p&gt;
&lt;p&gt;
However, there a billions and billions (channeling &lt;a href="http://www.carlsagan.com/" target="_blank"&gt;Carl Sagan&lt;/a&gt; here) of web pages online, the vast majority of which couldn&amp;#39;t spell &amp;quot;standards&amp;quot; no less adhere to them. Let&amp;#39;s face it, much of the content online was developed in a time when there weren&amp;#39;t a whole lot of standards to work with, and the ones that &lt;em&gt;were&lt;/em&gt; defined we half-baked at best. 
&lt;/p&gt;
&lt;p&gt;
Joel posted &lt;a href="http://www.joelonsoftware.com/items/2008/03/17.html" target="_blank"&gt;a fantastic piece&lt;/a&gt; this morning called &lt;strong&gt;Martian Headsets&lt;/strong&gt; about the upcoming flame war that is going to erupt between the web pragmatists and idealists over web standards adoption and enforcement. It&amp;#39;s a look at what exactly web standards are, where they&amp;#39;ve been, where they&amp;#39;re going and what&amp;#39;s likely to happen with browser software as a result, all told in Joel&amp;#39;s special way. 
&lt;/p&gt;
&lt;p&gt;
Enjoy everyone: &lt;a href="http://www.joelonsoftware.com/items/2008/03/17.html"&gt;http://www.joelonsoftware.com/items/2008/03/17.html&lt;/a&gt; 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:1f1d707d-c2f3-4c2d-bb2c-a15977d523f5" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Joel%20on%20Software"&gt;Joel on Software&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Joel%20Spolsky"&gt;Joel Spolsky&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Web%20Standards"&gt;Web Standards&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/IE8"&gt;IE8&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/253227739" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/253227739/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/quot3bWhat-the-hell-is-a-web-standardquot3b-Joel-Spolsky-Nailed-ItAgain.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=7e23f5c4-66b0-4df4-a699-81f307acd728</guid>
      <pubDate>Mon, 17 Mar 2008 15:59:00 -0500</pubDate>
      <category>Web Standards</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=7e23f5c4-66b0-4df4-a699-81f307acd728</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=7e23f5c4-66b0-4df4-a699-81f307acd728</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/quot3bWhat-the-hell-is-a-web-standardquot3b-Joel-Spolsky-Nailed-ItAgain.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=7e23f5c4-66b0-4df4-a699-81f307acd728</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=7e23f5c4-66b0-4df4-a699-81f307acd728</feedburner:origLink></item>
    <item>
      <title>The Next Step in Interoperability: Open XML</title>
      <description>&lt;p&gt;
Interoperability is not just good for technology, it&amp;#39;s good for business too. The period in history where software companies built platform-centric silos around their products with wanton disregard to how they would work with other products and platforms is about done. If you&amp;#39;re software can&amp;#39;t, in some capacity, &amp;quot;play nice&amp;quot; with other applications and platforms, you likely are going to lose a lot of business to other companies&amp;#39; products that will. 
&lt;/p&gt;
&lt;p&gt;
Microsoft has been moving its products in this direction for some time, as have the other major vendors like IBM, Novel, Sun and Apple. In fact, Microsoft made an announcement on February 21st concerning our &lt;a href="http://www.microsoft.com/presspass/press/2008/feb08/02-21ExpandInteroperabilityPR.mspx" target="_blank"&gt;new interoperability principles&lt;/a&gt; in our products going forward. 
&lt;/p&gt;
&lt;p&gt;
Open XML looks to be a major component in this strategy. If you haven&amp;#39;t heard of Open XML before, it&amp;#39;s an XML-based format specification for electronic documents like presentations, spreadsheets, charts and word processing documents. Much the way that SOAP creates a common messaging protocol to allow different systems share information, Open XML provides the ability to share business documents between office productivity software. It also provides for custom XML markup in the body of a document, allowing for interoperability with custom or legacy line of business applications. 
&lt;/p&gt;
&lt;p&gt;
Creating a standards-based specification for how common business documents are created and shared just makes sense. In the same way that standards have made SOA a viable architectural model for building distributed systems, Open XML has the promise to give customers a wider choice of business productivity software and the confidence that they will be able to share their documents with partners and customers. 
&lt;/p&gt;
&lt;p&gt;
Microsoft led the charge with Open XML, submitting the specification to Ecma International for consideration in 2005. Ecma ratified Open XML (Ecma 376) in December 2006, and now Open XML is before the global community for ratification as an international ISO/IEC standard. 
&lt;/p&gt;
&lt;p&gt;
The whole history of Microsoft&amp;#39;s involvement with the push to make Open XML a standard is outlined in an &lt;a href="http://www.microsoft.com/interop/letters/ChrisCapOpenLetter.mspx" target="_blank"&gt;open letter&lt;/a&gt; published yesterday by Microsoft Senior VP, Chris Capossela. For more detailed information on Open XML and what architects and developers should know about it, have a look at the following links: 
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Office_Open_XML" target="_blank"&gt;Wikipedia&lt;/a&gt;: Good overview on Open XML, as well as licensing and intellectual property information. &lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.ecma-international.org/publications/standards/Ecma-376.htm" target="_blank"&gt;Ecma Standard 376&lt;/a&gt;: The official Ecma-approved standard definition site. &lt;/li&gt;
	&lt;li&gt;&lt;a href="http://openxmldeveloper.org/" target="_blank"&gt;OpenXMLDeveloper.com&lt;/a&gt;: Great reference resource for developers looking to leverage Open XML in their software. &lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.openxmlcommunity.org/" target="_blank"&gt;OpenXMLCommunity.org&lt;/a&gt;: A hub for all things Open XML, including blog links to experts, resources and technical articles.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
While Open XML is not an approved international standard yet, it is getting close to getting the approval it needs. Customers across the globe are beginning to get used to the idea that they can share information seamlessly between applications and systems. Anything we as developers and architects can do to promote and implement that level of interoperability into our products will not only result in happier customers, but will server our industry better as well. 
&lt;/p&gt;
&lt;div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:bdb0e900-1350-4f5f-99e8-1a86b30c2fd7" class="wlWriterSmartContent" style="display: inline; margin: 0px; padding: 0px"&gt;
Technorati Tags: &lt;a rel="tag" href="http://technorati.com/tags/Open%20XML"&gt;Open XML&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Interoperability"&gt;Interoperability&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Chris%20Capossela"&gt;Chris Capossela&lt;/a&gt;,&lt;a rel="tag" href="http://technorati.com/tags/Standards"&gt;Standards&lt;/a&gt; 
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/DennyBoynton/~4/253105552" height="1" width="1"/&gt;</description>
      <link>http://feeds.feedburner.com/~r/DennyBoynton/~3/253105552/post.aspx</link>
      <author>dboynton</author>
      <comments>http://blog.dennyboynton.com/post/The-Next-Step-in-Interoperability-Open-XML.aspx#comment</comments>
      <guid isPermaLink="false">http://blog.dennyboynton.com/post.aspx?id=53843114-dfe4-4773-8392-7bbfb9a8b2c2</guid>
      <pubDate>Mon, 17 Mar 2008 11:59:00 -0500</pubDate>
      <category>Open XML</category>
      <category>Interoperability</category>
      <dc:publisher>dboynton</dc:publisher>
      <pingback:server>http://blog.dennyboynton.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.dennyboynton.com/post.aspx?id=53843114-dfe4-4773-8392-7bbfb9a8b2c2</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.dennyboynton.com/trackback.axd?id=53843114-dfe4-4773-8392-7bbfb9a8b2c2</trackback:ping>
      <wfw:comment>http://blog.dennyboynton.com/post/The-Next-Step-in-Interoperability-Open-XML.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.dennyboynton.com/syndication.axd?post=53843114-dfe4-4773-8392-7bbfb9a8b2c2</wfw:commentRss>
    <feedburner:origLink>http://blog.dennyboynton.com/post.aspx?id=53843114-dfe4-4773-8392-7bbfb9a8b2c2</feedburner:origLink></item>
  </channel>
</rss>
