Migrating to TFS RTM

Now that TFS has RTM’d, check here for documentation about migrating your test environments to a production environment. I’ve been eagerly awaiting this documentation so that we can finally get off our slow ass VM evaluation environment onto some brand spankin’ new hardware purchased to run TFS and nothin’ but TFS! 😉 I’ll be sure to post […]

How to perform UI automation of browser apps with MSH (WATIR without the Ruby)

For anyone who’s familiar with WATIR, check out this simple MSH script I whipped up: # Create an instance of IE$ie = new-object -ComObject “InternetExplorer.Application” # Navigate to MSN search$ie.Navigate(“http://search.msn.com”) # Make IE visible$ie.Visible = $true # Grab the DOM document instance$document = $ie.Document # !! See note at end of post !! # Get […]

ASP.NET (1.x and 2.x) maxRequestLength suckyness…

So you need people to upload files to your web application, but you’re a smart developer and you want to make sure you’re not vulnerable to any kind of DoS. Luckily Microsoft has built a setting into the <httpRuntime> element of ASP.NET called maxRequestLength to govern the maximum size of an HTTP request. Great, problem solved! Well, […]