<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Windows Live Quantum Mechanics</title><subtitle type="html">Windows Live client side web application development according to Windows Live Quantum Mechanic Danny Thorpe.</subtitle><id>http://blogs.msdn.com/b/dthorpe/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/dthorpe/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2007-09-04T11:32:44Z</updated><entry><title>Leaving Microsoft</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/10/05/leaving-microsoft.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/10/05/leaving-microsoft.aspx</id><published>2007-10-06T00:17:00Z</published><updated>2007-10-06T00:17:00Z</updated><content type="html">&lt;P&gt;As I've been wrapping up our 2nd generation cross-domain in-browser communication channel API, I've been nosing around and thinking about what my next project should be.&amp;nbsp; There's no shortage of tasks to do in Windows Live, and I had a few leads for interesting projects elsewhere within Microsoft as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just as I cleared my mental desk to consider these options in detail, &lt;EM&gt;suddenly their came a tapping as if someone gently rapping, rapping on my chamber door.&lt;/EM&gt;&amp;nbsp; It was a startup calling, trying to seduce me into doing something rash.&amp;nbsp; I've been approached by startups before, but most are easy to dismiss because they have no funding.&amp;nbsp;&amp;nbsp;No matter how good the idea, I can't afford to work for IOUs.&amp;nbsp; This one was different.&amp;nbsp; Disruptive ideas,&amp;nbsp;razor&amp;nbsp;sharp team, and recently funded by Kleiner Perkins.&amp;nbsp; &lt;EM&gt;Well that's different.&lt;/EM&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;As fate would have it, my next&amp;nbsp;gig&amp;nbsp;will be&amp;nbsp;at &lt;A href="http://www.cooliris.com/" mce_href="http://www.cooliris.com"&gt;CoolIris&lt;/A&gt;, building browser plugins that are one part eye candy an two parts antimatter disrupter.&lt;/P&gt;
&lt;P&gt;While I will be leaving the Microsoft payroll, I won't be leaving the Windows Live arena.&amp;nbsp;I'm moving from the service producer to the service consumer side of the field. CoolIris will quickly need user logins, address books, photos, and storage, and I will certainly make sure they are aware of Windows Live's service offerings.&amp;nbsp;We should definitely leverage rather than build out infrastructure.&lt;/P&gt;
&lt;P&gt;The cross-domain communications article series will continue, "posthumously" if you will.&amp;nbsp;The siloed domain lowering technique mentioned in the last article is on hold pending clearance of some internal paperwork.&amp;nbsp; It will be published ASAP after the paperwork is sorted out.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;The last article in the series (for now) will document the InterFrame Messaging channel API that we've been working on as a by-product of our development of the Windows Live Contacts control.&amp;nbsp; That article is on hold pending the release of the IFM channel API, which is on track for Real Soon Now.&amp;nbsp; Keep an eye on &lt;A href="http://dev.live.com/" mce_href="http://dev.live.com/"&gt;dev.live.com&lt;/A&gt; for announcements.&lt;/P&gt;
&lt;P&gt;I've started a new blog on my personal domain, &lt;A href="http://www.dannythorpe.com/" mce_href="http://www.dannythorpe.com"&gt;www.dannythorpe.com&lt;/A&gt;.&amp;nbsp; For uninterrupted blatherings, please update your RSS readers to use the new address and &lt;A class="" href="http://dannythorpe.com/?feed=rss2" mce_href="http://dannythorpe.com/?feed=rss2"&gt;RSS feed&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;So long, and thanks for all the fish!&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5300742" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Cross-Domain Communication Using Domain Lowering</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/27/cross-domain-communication-using-domain-lowering.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/27/cross-domain-communication-using-domain-lowering.aspx</id><published>2007-09-28T08:52:28Z</published><updated>2007-09-28T08:52:28Z</updated><content type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/dthorpe/archive/2007/06/18/secure-cross-domain-communication-the-architecture-journal.aspx"&gt;More than a few blog posts ago&lt;/a&gt;&amp;nbsp;I stated my intent to publish a series of articles on cross-domain communication techniques.&amp;nbsp; More time has passed than I had intended, but at last here is the start of that series of articles.&amp;nbsp; The series will explore progressively more advanced cross-domain techniques as well as their strengths and weaknesses, culminating in&amp;nbsp;an announcement about stuff we've been working on that I think you'll find interesting.&lt;/p&gt; &lt;p&gt;Cross-domain communication is usually discussed in the context of a browser client communicating to a web server that is different than the domain of the web page currently shown in the browser.&amp;nbsp; The browser client displays a page from server foo.com, and that page tries to access data on server bar.com.&amp;nbsp; This is forbidden by the same-origin browser security policy because bar.com isn't foo.com.&lt;/p&gt; &lt;h4&gt;Server Side Proxy&lt;/h4&gt; &lt;p&gt;One relatively simple way to resolve this is to have the browser page request data from the page's web server, and have the web server relay that request to the actual third party server.&amp;nbsp; The browser displays a page from foo.com, and that page makes a data request to foo.com which foo.com relays to bar.com.&amp;nbsp; Bar.com replies to foo.com, and foo.com forwards that response on to the browser client page to complete the circuit.&lt;/p&gt; &lt;p&gt;While this solution is simple and quite widespread today, it has some significant problems:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;&lt;strong&gt;Scalability and Network costs&lt;/strong&gt;:&amp;nbsp; The request and response travel across your server's network twice.&amp;nbsp; Request in, request out, response in, response out.&amp;nbsp; Traffic on your server network grows four times faster than growth of your application use.&amp;nbsp;&amp;nbsp;That means you'll&amp;nbsp;reach network saturation four times sooner than&amp;nbsp;with other techniques, and you'll pay four times more (in server network traffic costs) for the privilege.&amp;nbsp; &lt;/li&gt; &lt;li&gt;&amp;nbsp;&lt;strong&gt;Impersonating the user&lt;/strong&gt;:&amp;nbsp; When your foo.com server makes a request to bar.com seeking data for the user, you're essentially impersonating the end user.&amp;nbsp; If the data on bar.com requires any sort of user identification or authorization, your server side proxy suddenly jumps from super simple to super difficult.&amp;nbsp; It's easy enough to ask the user to log in to bar.com, but your foo.com can't see anything that goes on in bar.com.&amp;nbsp; In particular, foo.com cannot see whatever browser cookies that bar.com sets to indicate logged in state.&amp;nbsp; Thus, it will be next to impossible for foo.com to present the appropriate cookies or credentials in its http request to bar.com to make bar.com believe that the request is coming from the legitimate user.&amp;nbsp; And this should be difficult - this is nothing short of a man-in-the-middle attack on bar.com's security!&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;So, server side proxies are a quick and dirty way to toss anonymous data around, but they don't scale well and they hit a wall when the data requires authentication.&lt;/p&gt; &lt;h4&gt;Web Sites With Subdomains&lt;/h4&gt; &lt;p&gt;Web sites and web applications generally start out as simple beasts running on a single web domain (www.foo.com).&amp;nbsp; As the site grows in functionality and complexity, the incentives to break that site up into subdomains (downloads.foo.com, feedback.food.com, images.foo.com) grows as well.&amp;nbsp; Perhaps your web site has a download area that needs to be optimized for large file transfers.&amp;nbsp; That would probably be easier to fine tune as a server or cluster dedicated to that function than to try to tune the entire web site for large file downloads.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Subdomains often sprout as a byproduct of a company's internal structure.&amp;nbsp; It takes a lot more effort to coordinate updates to one central server shared by multiple departments on different schedules than for a department to own their own subdomain, nicely isolated from the rest of the company's constant revisions.&lt;/p&gt; &lt;h4&gt;Double Edged Sword&lt;/h4&gt; &lt;p&gt;Domain isolation is convenient to let you get your work done independently of the noise going on in the rest of the company's web presence, but also presents a new problem:&amp;nbsp; web pages served from your subdomain cannot share information with web pages served from other subdomains of your company.&amp;nbsp; If the user logs in to your company's main page, the browser cookies representing that login state are not accessible to your subdomain.&amp;nbsp; &lt;/p&gt; &lt;h4&gt;Lowering the Domain Barrier&lt;/h4&gt; &lt;p&gt;The major browsers support a technique around this quandary, to allow subdomains to operate as equals within a common shared context.&amp;nbsp; The HTML document object has a domain property which normally reflects the complete domain name of the server from which the HTML document was loaded.&amp;nbsp;The browser will allow you to&amp;nbsp;assign a subset of the current&amp;nbsp;domain name to the document.domain property to&amp;nbsp;indicate that you wish for the HTML document to be treated as though it were loaded from the parent domain.&lt;/p&gt; &lt;p&gt;So, an HTML&amp;nbsp;page served from downloads.foo.com can assign document.domain = "foo.com" in a JavaScript code block.&amp;nbsp; From that point forward, browser domain security checks will treat that page as a peer of any page in the foo.com domain.&amp;nbsp; &lt;/p&gt; &lt;p&gt;The browser will (should) only allow you to change the document.domain to a less specific version of your current domain.&amp;nbsp; one.two.three.foo.com could be lowered to foo.com, or could be lowered to three.foo.com.&amp;nbsp; &lt;/p&gt; &lt;p&gt;The browser should not allow assignment of a top-level domain (domain suffix) to document.domain.&amp;nbsp; You should not be able to change a document domain from "one.foo.com" to "com".&amp;nbsp; There have been browser bugs in this area in the past where a browser implementer mistakenly interpreted "top level domain" to mean "the bit of the domain after the last dot".&amp;nbsp; ".com", ".edu", and ".org" are top level domains, but ".co.uk" and ".co.jp" are TLDs also.&lt;/p&gt; &lt;p&gt;The browsers will not allow you to raise the domain of an HTML document to something more specific than its domain of origin, nor allow lateral domain shuttling.&amp;nbsp; Changing document.domain from "two.foo.com" to one.two.foo.com" is forbidden.&amp;nbsp; Changing a document.domain from&amp;nbsp;"one.foo.com" to "two.foo.com" is forbidden.&lt;/p&gt; &lt;h4&gt;Irreversible (Mostly)&lt;/h4&gt; &lt;p&gt;Firefox 1.5 and 2.0 will not allow you to assign a domain name that is more specific than the document's current domain name under any circumstances.&amp;nbsp; Once you lower one.foo.com to foo.com, it's stuck at foo.com forever.&amp;nbsp; The only way to clear that state is to reload the page.&lt;/p&gt; &lt;p&gt;IE6 and IE7 will allow you to raise a document's domain back to it's actual domain of origin.&amp;nbsp; If a page was served from one.foo.com, and you lower it to foo.com, IE will let you raise it back to one.foo.com.&amp;nbsp; However, I've seen some instabilities and inconsistencies in the aftermath of "raising shields", so I don't recommend relying on this behavior.&amp;nbsp; Since Firefox doesn't allow restoring domains to their original values, you should ignore the fact that IE sort of does allow it.&lt;/p&gt; &lt;h4&gt;Bridging Silos Via Least Common Denominators&lt;/h4&gt; &lt;p&gt;When an HTML document's domain is lowered to a parent domain, the security context and JavaScript symbol&amp;nbsp;space of that document joins the security context and JavaScript symbol space of any and all pages that are also in the parent domain.&amp;nbsp;&amp;nbsp;JavaScript in your page served from one.foo.com and lowered to foo.com can access JavaScript functions and variables defined in other pages whose domain is foo.com, and visa-versa.&lt;/p&gt; &lt;p&gt;So, if you have pages on one.foo.com that would like to interoperate with pages on two.foo.com, you can use domain lowering to pull down the domain barriers just enough to allow them to talk to each other, but still provide domain protections against third parties trying to steal or corrupt the internal state of your web app.&amp;nbsp; Place a JavaScript block at the top of each page in the "one" and "two" subdomains which assigns document.domain = "foo.com" and you're good to go.&amp;nbsp; All the pages will operate as though they were served from the same domain, and can access anything in each other's DOMs and JavaScript symbol space.&lt;/p&gt; &lt;h4&gt;One or the Other, Not Both&lt;/h4&gt; &lt;p&gt;Note that once your one.foo.com page has been lowered into the parent domain, your HTML and JavaScript code loses all access to DOMs and JavaScript data in any other pages that are still in the original one.foo.com subdomain.&amp;nbsp; A web page can only be in one domain context&amp;nbsp;or the other, not both.&lt;/p&gt; &lt;h4&gt;Interesting Inconsistencies&lt;/h4&gt; &lt;p&gt;Domain lowering applies only to the DOM and JavaScript sandboxes.&amp;nbsp; Parts (actually, nearly all) of the browser execute in native machine code outside the browser security sandbox. Native objects exposed to JavaScript in the sandbox are largely on their own to implement appropriate security checks on operations initiated by JavaScript.&amp;nbsp; JavaScript can't access the local file system, for example, but if the user installs an ActiveX control for IE or a browser plugin for Firefox that allows local file access, and that extension declares itself safe for scripting, then JavaScript could use that control to access files on the local file system.&lt;/p&gt; &lt;p&gt;In both IE and Firefox, XMLHttpRequest (XHR) is a native object exposed to JavaScript.&amp;nbsp; This is pretty obvious in IE6 since you have to construct the object using ActiveXObject; in Firefox you can deduce that the XHR is a native object&amp;nbsp;from the phrasing of some error messages and error behaviors while the browser goes down in flames.&lt;/p&gt; &lt;p&gt;XHR is restricted to connecting only to the current HTML page's domain of origin.&amp;nbsp; Domain lowering applies only to the browser sandbox.&amp;nbsp; XHR operates outside the browser sandbox, enforcing same-origin domain policy on its own. This leads to an interesting - and valuable - inconsistency:&amp;nbsp; &lt;/p&gt; &lt;p&gt;&lt;strong&gt;XMLHttpRequest is not affected by domain lowering&lt;/strong&gt;.&amp;nbsp; &lt;/p&gt; &lt;p&gt;This means you can actually have one foot in each domain:&amp;nbsp; Your JavaScript executes in the context of the lowered subdomain (foo.com), but XHR requests made by your JavaScript are held to the domain restriction of the page's original subdomain (one.foo.com). XHR doesn't know anything about document.domain.&lt;/p&gt; &lt;p&gt;If you're trying to get your JavaScript to open an XHR to a resource on foo.com, this can be infuriating because XHR won't do it.&amp;nbsp; You have to refer to an HTML page served from foo.com in order to get XHR to open a connection to foo.com.&lt;/p&gt; &lt;h4&gt;The Money Shot&lt;/h4&gt; &lt;p&gt;This inconsistency in the handling of document.domain enforcement/awareness makes the following scenario possible:&amp;nbsp; The logic of your web app runs in the context of a page loaded from one.foo.com, and you want to XHR load data from two.foo.com.&lt;/p&gt; &lt;p&gt;Here's how you do that:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Make your&amp;nbsp;html page A served from one.foo.com lower&amp;nbsp;its document.domain to foo.com&lt;/li&gt; &lt;li&gt;Place an html page&amp;nbsp;B&amp;nbsp;on two.foo.com, and have it lower its document.domain to foo.com early in its load cycle.&amp;nbsp; (A JavaScript statement in&amp;nbsp;global scope&amp;nbsp;in the &amp;lt;head&amp;gt; section is fine).&amp;nbsp; &lt;/li&gt; &lt;li&gt;Implement a function GetData(callback) on this page that constructs an XHR request to load the desired data from two.foo.com.&amp;nbsp; Wire up the XHR onReadyStateChanged to process the data completion using a function implemented in B.html, and in that function pass the received data to the callback function passed into GetData().&lt;/li&gt; &lt;li&gt;Insert an invisible (1x1 pixel) iframe on page A and set its src to http://two.foo.com/B.html&lt;/li&gt; &lt;li&gt;After page A has fully loaded, and page B in the iframe has loaded, JavaScript code in page A can call the GetData() function in page B through the iframe element:&amp;nbsp; bframe.window.GetData(mycallback)&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Believe it or not, this works.&amp;nbsp;Domain lowering allows JavaScript to call between A and B, and the fact that B is served from two.foo.com allows the XHR request implemented in B to access two.foo.com.&lt;/p&gt; &lt;h4&gt;Here Be Pixies.&amp;nbsp; (Try Not To Piss Them Off)&lt;/h4&gt; &lt;p&gt;The path through this&amp;nbsp;murky&amp;nbsp;realm&amp;nbsp;is neither straight nor wide.&amp;nbsp; If you take liberties or shortcuts with this recipe, be careful to test your code thoroughly on multiple browsers.&amp;nbsp; Chances are high that any deviation will&amp;nbsp;lead to failure on one of the browsers.&amp;nbsp; &lt;/p&gt; &lt;p&gt;IE is fairly flexible in this area.&amp;nbsp; You don't actually have to implement the GetData function in the B page.&amp;nbsp; You can just construct in the&amp;nbsp;A context&amp;nbsp;an XHR object type&amp;nbsp;from the B context and use it directly in the A context.&amp;nbsp; ( var xhr = new bframe.window.XMLHttpRequest() )&amp;nbsp; For IE, the B page need only lower the domain to foo.com.&amp;nbsp; After that, all the driving can be done from A.&lt;/p&gt; &lt;p&gt;Firefox is more particular about this technique.&amp;nbsp; Firefox will allow you to construct an instance of the B XHR in the context of A, but you'll get access denied or weirder errors when you try to call the methods of the B XHR from the context of A.&amp;nbsp; Firefox gets confused when you&amp;nbsp;call native object methods across these convoluted domain bridges, but calling JavaScript functions and methods works fine on either side of the context boundary.&amp;nbsp; Once the JavaScript call context gets from A to B, then the native object method calls will work.&amp;nbsp;&lt;/p&gt; &lt;p&gt;This is also why step 3 above&amp;nbsp;mandates that the XHR onReadyStateChange event handler should be wired to a function implemented in the B page - the native XHR object operating in the B context&amp;nbsp;may have difficulty firing an event wired to a function in the A page context.&lt;/p&gt; &lt;h4&gt;The Downside to Homogeneity&lt;/h4&gt; &lt;p&gt;For domain lowering to work between two subdomains, both sides have to "lower their shields" to a common middle ground.&amp;nbsp;As this technique catches on across departments and their corresponding subdomains, you can quickly reach a point where just about all the subdomains on the corporate web have provisions to lower their domain to the common corporate parent domain.&lt;/p&gt; &lt;p&gt;This is convenient and quite powerful&amp;nbsp;for building web apps that can access data bits from all across the company.&amp;nbsp; The problem is that it weakens your corporate defenses across the board.&amp;nbsp; If just one of the subdomain silos&amp;nbsp;were compromised and an attacker were able to inject malicious JavaScript to execute in the browser context of that compromised subdomain, that malicious code would have easy access to every subdomain across the company that lowers its domain to foo.com.&lt;/p&gt; &lt;p&gt;This risk grows with scale.&amp;nbsp; The more subdomains you have that routinely lower their domains to the common ground, the greater the risk that one of them may be compromisable and serve as a&amp;nbsp;beachhead to your entire network.&lt;/p&gt; &lt;h4&gt;Tune In Next Time&lt;/h4&gt; &lt;p&gt;There is a way to mitigate this weakest link risk such that an attacker compromising a weak subdomain does not get access to everything.&amp;nbsp; This requires inverting some of the relationships presented in this article&amp;nbsp;and making the silos deeper rather than shallower.&amp;nbsp; I'll cover&amp;nbsp;"Siloed Domain Lowering"&amp;nbsp;in my next&amp;nbsp;cross-domain&amp;nbsp;article.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5180444" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Programming" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Programming/" /><category term="web" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/web/" /><category term="cross domain" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/cross+domain/" /></entry><entry><title>TMobile HotSpot at Home Phones Get Smarter</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/27/tmobile-hotspot-at-home-phones-get-smarter.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/27/tmobile-hotspot-at-home-phones-get-smarter.aspx</id><published>2007-09-28T03:07:28Z</published><updated>2007-09-28T03:07:28Z</updated><content type="html">&lt;p&gt;TMobile &lt;a href="http://www.t-mobile.com/company/PressReleases_Article.aspx?assetName=Prs_Prs_20070925&amp;amp;title=T-Mobile%20and%20RIM%20Introduce%20BlackBerry%20Curve%208320%20With%20WI-FI%20Calling%20Feature"&gt;announced&lt;/a&gt; this week the addition of the Blackberry 8230 "Curve" to the list of cell phones supported by TMobile's HotSpot@Home WiFi phone service.&amp;nbsp; &lt;/p&gt; &lt;p&gt;This is a big step up in handset functionality over the minimalistic handsets that the service launched with earlier this year.&amp;nbsp; I'm very tempted to jump in, since the Blackberry can do web surfing and web email that I crave, but of course there are just two little things that would make it just perfect:&amp;nbsp; a smaller smartphone handset (the Curve is almost as wide as it is tall) and a smartphone handset that can run .NET CF applications.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Not that I've written any .NET CF apps lately, mind you, but just because I like having that option at my disposal.&amp;nbsp; I've endured locked phones before where the only thing you can do with the phone is what the cellular provider says you can do with it (thanks, Nextel) and I don't intend to go through that again.&lt;/p&gt; &lt;p&gt;Smartphone with WiFi calling...&amp;nbsp; Tempting, very tempting...&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5175395" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="gadgets" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/gadgets/" /></entry><entry><title>Halo 3 Launched!</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/24/halo-3-launched.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/24/halo-3-launched.aspx</id><published>2007-09-24T21:15:55Z</published><updated>2007-09-24T21:15:55Z</updated><content type="html">&lt;p&gt;&lt;a href="http://www.halo3.com"&gt;Halo 3&lt;/a&gt; has officially hit the streets!&amp;nbsp; Besides the game itself, check out the supporting info on the web, which happens to be implemented in Silverlight:&amp;nbsp; &lt;a href="http://www.microsoft.com/silverlight/halo3.aspx"&gt;http://www.microsoft.com/silverlight/halo3.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Having been out of the loop on the whole Halo series progression, I found the backstory and character summaries for Halo 3 very informative.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5103608" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Silverlight" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Silverlight/" /></entry><entry><title>MIX07 UK Podcast with Craig Murphy</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/24/mix07-uk-podcast-with-craig-murphy.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/24/mix07-uk-podcast-with-craig-murphy.aspx</id><published>2007-09-24T20:37:18Z</published><updated>2007-09-24T20:37:18Z</updated><content type="html">&lt;p&gt;I sat down with &lt;a href="http://www.craigmurphy.com"&gt;Craig Murphy&lt;/a&gt; to &lt;a href="http://www.craigmurphy.com/blog/?p=692"&gt;chat about Windows Live and life in general&lt;/a&gt; at MIX07 UK.&amp;nbsp;&amp;nbsp;Craig has just posted&amp;nbsp;a &lt;a href="http://www.craigmurphy.com/blog/?p=692"&gt;podcast&lt;/a&gt; of that conversation.&amp;nbsp; &lt;/p&gt; &lt;p&gt;I've known Craig for many years through the Delphi community.&amp;nbsp; I think we first met in person in&amp;nbsp;2001 at "The Delphi Conference" run by the Borland User Group UK.&amp;nbsp;&amp;nbsp;Aha! Found&amp;nbsp;&lt;a href="http://www.facebook.com/photo.php?pid=178704&amp;amp;l=14c11&amp;amp;id=541062793"&gt;a photo&lt;/a&gt;.&amp;nbsp; Craig got his start&amp;nbsp;as one of the pillars of the Delphi developer community -&amp;nbsp;particularly at the Scottish end of the isles.&amp;nbsp;Today he provides much the same community organizing and informing service over a much broader swath of tech topics as a Microsoft MVP.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5102713" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Windows Live" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Windows+Live/" /><category term="Blogging" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Blogging/" /><category term="events" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/events/" /><category term="MIX07" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/MIX07/" /></entry><entry><title>MIX07 UK Blogging</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/14/mix07-uk-blogging.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/14/mix07-uk-blogging.aspx</id><published>2007-09-15T06:54:51Z</published><updated>2007-09-15T06:54:51Z</updated><content type="html">&lt;p&gt;The title of honorary MIX07 UK stenographer goes to &lt;a href="http://serialseb.blogspot.com/"&gt;Sebastien Lambla (aka SerialSeb)&lt;/a&gt;for transcribing nearly word for word just about every session he attended this week, in realtime!&amp;nbsp; Check out the detail in his notes on &lt;a href="http://serialseb.blogspot.com/2007/09/mixuk-07-building-next-generation-web.html"&gt;"Building Next Generation Web Applications using Windows Live Services"&lt;/a&gt;, for example.&amp;nbsp; He has half a dozen more posts on Mix07 UK just as detailed. Way to go SerialSeb! &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4922322" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Windows Live" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Windows+Live/" /><category term="Blogging" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Blogging/" /><category term="events" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/events/" /></entry><entry><title>PodCast Interview on LiveSide.Net</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/14/podcast-interview-on-liveside-net.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/14/podcast-interview-on-liveside-net.aspx</id><published>2007-09-15T06:20:42Z</published><updated>2007-09-15T06:20:42Z</updated><content type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/angus%5Flogan/"&gt;Angus&lt;/a&gt; and I had a &lt;a href="http://www.liveside.net/blogs/interview/archive/2007/09/14/windows-live-platform-interview-with-danny-thorpe-and-angus-logan.aspx"&gt;chat with the guys from LiveSide.Net&lt;/a&gt; during the MIX07 UK conference this week.&amp;nbsp; Check it out!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4921935" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Windows Live" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Windows+Live/" /><category term="events" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/events/" /></entry><entry><title>The Casual Traveler</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/11/the-casual-traveler.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/11/the-casual-traveler.aspx</id><published>2007-09-11T13:29:26Z</published><updated>2007-09-11T13:29:26Z</updated><content type="html">&lt;p&gt;&lt;a href="http://blogs.msdn.com/angus_logan/archive/2007/09/10/jet-lagged-like-an-amateur.aspx"&gt;Angus laments&lt;/a&gt; getting hit unusually hard by jet lag on this UK trip.&amp;nbsp; This is particularly amusing considering he's recently imported to Redmond from Australia and generally has far too much energy to safely occupy one body.&amp;nbsp; I suspect he owns&amp;nbsp;an espresso machine.&amp;nbsp; Possibly even USB powered and in his bag.&lt;/p&gt; &lt;p&gt;Angus's criteria for professional traveler struck me as odd.&amp;nbsp; Carry-on luggage?&amp;nbsp; What a drag.&amp;nbsp; I try to get rid of the bag as quickly as possible so I can enjoy the rest of the trip without wrenching a shoulder out of socket.&amp;nbsp; Alas, the laptop backpack is inescapable, but at least on personal travel I can trade the 10 pound company&amp;nbsp;brick&amp;nbsp;for something a little more svelte - my 1.8 pound &lt;a href="http://www.trustedreviews.com/notebooks/review/2004/06/03/Sony-VAIO-VGN-X505VP-Ultra-Slim-Notebook/p1"&gt;Sony X505&lt;/a&gt;.&amp;nbsp; Sure, waiting for baggage claim can be a drag, but that's what frequent flyer program expedited baggage services are for.&amp;nbsp; Besides, if&amp;nbsp;you're picking up a rental car you can usually take care of that checkin and&amp;nbsp;key pickup while the baggage handlers are getting your bag to the carousel.&lt;/p&gt; &lt;p&gt;Running&amp;nbsp;down the&amp;nbsp;gangway to get to the head of the passport control line?&amp;nbsp; Nah.&amp;nbsp;&amp;nbsp;A casual stroll gets you there almost as&amp;nbsp;fast, plus you get free entertainment watching&amp;nbsp;the rat race rushing by.&lt;/p&gt; &lt;p&gt;Rely on plastic rather than local currency?&amp;nbsp; Absolutely.&amp;nbsp; All major purchases can be done on the card in any modern&amp;nbsp;location - including magazines and snacks at airport kiosks.&amp;nbsp; It's still a good idea to have a little cash in pocket change for the impromptu street vendor purchase.&amp;nbsp; Skip the outrageous transaction fees and exchange rates at the Cambio kiosks at the airport.&amp;nbsp; Just find a cash machine on the Cirrus, Visa, or other US bank network and make an ATM withdrawal in local currency.&amp;nbsp; The exchange rates tend to be more reasonable and no transaction fees (from my bank, anyway).&amp;nbsp; &lt;/p&gt; &lt;p&gt;I've also noticed that the density of currency exchange kiosks in an airport is inversely proportional to the number of ATM machines.&amp;nbsp; Coincidence?&amp;nbsp; Hmm.&amp;nbsp; Gatwick is paved with exchange kiosks, but you'll be lucky to find an ATM before you get to Victoria station.&amp;nbsp; Schiphol has a much better proportion of ATM machines.&lt;/p&gt; &lt;p&gt;Overall, I guess I don't think of myself as a "professional traveler".&amp;nbsp; I do travel quite a bit, and a lot of it is work related, but I'm definitely not in the power traveler category.&amp;nbsp; Even packing for&amp;nbsp;most trips is a non-event.&amp;nbsp; Count the number of days away, grab a matching number of socks, underwear, shirts, etc.&amp;nbsp; Matching socks a plus.&amp;nbsp; Oh, and pants.&amp;nbsp; Pants good.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Making packing and trip preparation a non-event has become a bit of a sport at home.&amp;nbsp;&amp;nbsp;Lack of&amp;nbsp;preflight checks and rechecks&amp;nbsp;drives my wife nuts, which is entertaining in its own right.&lt;/p&gt; &lt;p&gt;However, the wife will have the last laugh on this trip.&amp;nbsp; It's been a long time since I've forgotten to pack something important, but on this trip I've left quite a few items at home - probably laid out on the bed but didn't make it into the suitcase.&amp;nbsp; The dog probably grabbed them.&amp;nbsp; Ya, that's it.&amp;nbsp; &lt;/p&gt; &lt;p&gt;The most irritating miss was forgetting my (&lt;a href="http://www.steves-digicams.com/2003_reviews/exs20.html"&gt;equally svelte&lt;/a&gt;) camera.&amp;nbsp; I made a point of moving it from its home in the laptop backpack to the charger the night before departure to make sure it had a full charge for the trip.&amp;nbsp; It didn't make it back into the backpack.&amp;nbsp; Next time, I'll just stick to the regular routine of packing the camera&amp;nbsp;and charger and topping it up in the hotel on arrival.&lt;/p&gt; &lt;p&gt;For critical trips, I'll do my homework and look up maps and so forth prior to departure.&amp;nbsp; For most trips, though, I just wing it.&amp;nbsp; Get a rail pass at the airport and figure out how to get to where I'm going by reading the rail map on the train.&amp;nbsp; Occasionally step off the train to take a look around, and&amp;nbsp;step back on the next train&amp;nbsp;a few&amp;nbsp;(5,&amp;nbsp;10,&amp;nbsp;30) minutes&amp;nbsp;later.&amp;nbsp;&amp;nbsp;Pay close attention to next train times if you venture out into the suburbs, as trains generally aren't as frequent in low&amp;nbsp;density areas as they are downtown.&amp;nbsp;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Taking it in as it happens makes the trip more interesting than racing around with blinders on.&amp;nbsp; It's a great way to make discoveries that aren't in any travel brochure.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4863431" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="travel" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/travel/" /></entry><entry><title>Blogging at ReMix07 London</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/11/blogging-at-remix07-london.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/11/blogging-at-remix07-london.aspx</id><published>2007-09-11T12:00:50Z</published><updated>2007-09-11T12:00:50Z</updated><content type="html">&lt;p&gt;I'm sitting next to Angus in the back row of the ReMix07 London keynote.&amp;nbsp; &lt;a href="http://blogs.msdn.com/angus_logan/archive/2007/09/11/blog-envy.aspx"&gt;Angus is blogging&lt;/a&gt;&amp;nbsp;in Windows Live Writer, and the guy on the other side of him is blogging in Windows Live Writer.&amp;nbsp;&amp;nbsp;Everyone loves a parade, so here I am blogging in&amp;nbsp;Windows Live Writer, too.&amp;nbsp; &lt;/p&gt; &lt;p&gt;It's times like these when I wish I had remembered to pack my camera.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4862994" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Blogging" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Blogging/" /><category term="events" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/events/" /></entry><entry><title>Halo 3 Promo Videos Running on Silverlight Streaming</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/dthorpe/archive/2007/09/04/halo-3-promo-videos-running-on-silverlight-streaming.aspx" /><id>http://blogs.msdn.com/b/dthorpe/archive/2007/09/04/halo-3-promo-videos-running-on-silverlight-streaming.aspx</id><published>2007-09-04T21:32:44Z</published><updated>2007-09-04T21:32:44Z</updated><content type="html">&lt;p&gt;The promotional campaign for the new &lt;a href="http://www.halo3.com/"&gt;Halo 3&lt;/a&gt; FPS has begun with a series of in-game and thematic live action videos.&amp;nbsp; High-def 2mbps videos are here:&amp;nbsp; &lt;a href="http://halo3.msn.com/videosHD.aspx"&gt;http://halo3.msn.com/videosHD.aspx&lt;/a&gt;&amp;nbsp; Lower bandwidth versions of the same are here:&amp;nbsp; &lt;a href="http://halo3.msn.com/videos.aspx"&gt;http://halo3.msn.com/videos.aspx&lt;/a&gt;&amp;nbsp; These are already on the msn boards and will be referenced by&amp;nbsp;additional promotional spots throughout the rollout.&amp;nbsp; &lt;/p&gt; &lt;p&gt;How is the Halo promotions team serving up video to tens of millions of viewers over the next few days and weeks?&amp;nbsp; With Silverlight Streaming!&amp;nbsp;The video player is built with &lt;a href="http://www.microsoft.com/silverlight/"&gt;Silverlight&lt;/a&gt;, and the video content is being served up by &lt;a href="http://dev.live.com/silverlight/"&gt;Silverlight Streaming&lt;/a&gt;.&amp;nbsp; (The last&amp;nbsp;of the HD vids are being moved to SLS this afternoon to better handle the traffic volume)&amp;nbsp; &lt;/p&gt; &lt;p&gt;Way to go team!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4746893" width="1" height="1"&gt;</content><author><name>MSDNArchive</name><uri>http://blogs.msdn.com/MSDNArchive/ProfileUrlRedirect.ashx</uri></author><category term="Windows Live" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Windows+Live/" /><category term="Silverlight" scheme="http://blogs.msdn.com/b/dthorpe/archive/tags/Silverlight/" /></entry></feed>