dotnet, build comments edit

I’m upgrading a project to the released version of WiX and found an issue that causes .wixobj files to be created in your source tree in unfortunate locations at build time. I’ve filed the issue on SourceForge, but for folks running across it, I thought I’d post here as well including the workaround.

If you have a .wixproj that contains .wxs files that are included via relative path outside of the folder structure below the .wixproj, the intermediate objects (.wixobj) get placed in odd/incorrect locations based on the source external .wxs files. What this looks like in the wild is that random .wixobj files just sort of “materialize” during the build and you can’t figure out where they’re coming from.

For example, say you have a folder structure like this:

trunk/
  product/
    solution/
      installer/
        ProductSetup.wixproj
        Product.wxs
  setup/
    CustomDialogs.wxs

The ProductSetup.wixproj includes the set of custom dialogs like this:

<Project>
  <ItemGroup>
    <Compile Include="..\..\..\setup\CustomDialogs.wxs">
      <Link>CustomDialogs.wxs</Link>
    </Compile>
  </ItemGroup>
</Project>

(.wixproj simplified for the example)

Given that the OutputPath for the project is relative - bin\$(Configuration) - and the IntermediateOutputPath is also relative - obj\$(Configuration) - I would expect that all .wixobj files get created in obj\$(Configuration)but they don’t.

Alternatively, I could accept (though it’d be unexpected) that intermediate output gets placed in obj\$(Configuration) relative to each .wxs file, so I might see trunk\setup\obj\Debug\CustomDialogs.wixobj in this example. This is also not what happens.

Instead, paths are calculated based on the relative location of the .wxs source combined with the project’s intermediate output path. That means, for this example:

trunk\product\solution\installer\obj\Debug (the intermediate output location of the .wixproj project)

combines with

..\..\..\setup (the location of the external .wxs file)

and you find the file

trunk\product\solution\setup\CustomDialogs.wixobj

gets created during the build process.

The workaround for this appears to be to manually specify ObjectPath on any included .wxs files, like:

<Compile Include="..\..\..\setup\CustomDialogs.wxs">
  <Link>CustomDialogs.wxs</Link>
  <ObjectPath>obj\$(Configuration)</ObjectPath>
</Compile>

This forces the .wixobj files to be created in the appropriate location.

UPDATE 3/21/2011: I got a report that just putting obj\$(Configuration) didn’t work for one user and they needed to add a trailing backslash, like obj\$(Configuration)\ to the path. I didn’t need that, but if the above isn’t working for you, try adding the backslash.

This behavior is new in WiX 3.5.2519.0 (the released/official 3.5 version) and did not exist in 3.5.2403.0.

process comments edit

There have been a lot of developer-related “sharpening the saw” articles published and almost all of them speak to the technical aspect of becoming a better developer. A couple of popular ones (Hanselman, Atwood) have some suggestions like having technical brown-bags or reading programming blogs. These are wonderful suggestions for improving your technical abilities as a developer.

However, if you look at the actual description of “sharpening the saw,” originally from Steven Covey’s 7 Habits of Highly Effective People, it talks about having a “balanced program for self-renewal.” If all you do as a developer is focus on increasing your technical skills, you’re not really keeping in balance.

Perhaps it’s time to broaden your thoughts on what it means, as a developer, to “sharpen the saw.” What can you do to increase your skills/value that doesn’t involve technical abilities? Here are some ideas:

  • Take a writing course. Your local higher-education facilities (and many correspondence schools) most likely offer courses in basic writing. Not writing code, just writing. Prose. Why is that important? Most likely you aren’t writing just code all day. Whether it’s email, design documentation, blog posts, or other communications, you’re writing. If you want to be sure to be understood and if you want your communications to come across in a reasonably professional and proficient fashion, you need to be able to write in a cohesive fashion with a minimal amount of grammatical problems. This is not to say you need to become a novelist or write for The New Yorker, but especially in this social networking day-and-age where spelling and grammar are pitched out the window in favor of shortcuts and 140-character limits, having a good set of solid, basic writing skills will help you long-term.
  • Learn about UI design and user experience. It’s pretty well known that developers generally create some pretty horrible UI out of the box. It’s not because developers are incompetent, but because when they’re crafting that UI they’re not thinking about design principles or the user experience of the thing. Like UI is best left to “those folks on the other side of the office with those fancy turtlenecks and their copies of Photoshop.” Just as developers need to understand testing and not defer to QA, it’s valuable for developers to understand at least fundamental ideas of UI design and user experience. At the very least, this will allow you to take part in conversations about the UI in a more meaningful fashion and understand not just what you’re doing when the UX team asks you to fix something, but also why you’re doing it.
  • Take a class on being a mentor. Hanselman mentions in his post that one idea to help sharpen technical skills is to create a mentorship program. That’s a really good idea. But do you know how to be a mentor? Do you need a mentor on how to be a mentor? What does “mentoring” even mean? If you have a mentor to help you learn new things, do you know how to be mentored? It sounds like it’s a simple thing, but think about it: Has someone ever asked you a question, and when you answered it you knew they didn’t understand the answer but you also didn’t know how to give them an answer they would understand? Learning how to answer questions (as a mentor) and learning how to ask the right questions (as a mentee) is huge. I’ve taken the Practical Leader class on peer mentoring and I honestly can’t recommend it enough. It’s one of the best courses I’ve ever taken and it totally changed the way I approach helping and teaching people.
  • Improve your interpersonal communication skills. If you’ve worked in any sort of team, you’ll have run into a situation where there was a confrontation between two team members that probably could have been handled better. In coding, for example, sometimes ego gets in the way of what’s best for the code. Maybe someone on the team has a strong personality and you don’t know how to make suggestions to them. Maybe someone on the team has a milder personality and you don’t know how to coax their input/feedback from them when trying to make decisions. Whatever the case may be, strengthening your communications skills will help you work better in the team. One course I’ve taken and highly recommend is the Vital Smarts “Crucial Conversations” training. It’s one of those classes where, as you’re going through it, it feels like it’s revealing information to you that you already knew but didn’t consciously recognize. Suddenly, being conscious of it, you realize all the things you did wrong in previous poor interactions, how things could have been handled better… and how you’ll approach things next time you encounter the situation. Well worth the time.

Again, the idea here is that there are things other than technical skills that will help you sharpen your saw as a developer.

What do you do in a non-technical capacity to sharpen your saw?

media, books comments edit

Amazon Kindle - 6" - Wi-Fi and
3GI bought an Amazon Kindle and it arrived yesterday. I got the 6” model with Wi-Fi and 3G on it. So far, I generally like it, but figured I would share my thoughts so far, having about a day with it.

Pushing books from the Amazon web site to the Kindle is not super intuitive. I think this is partly my fault. I thought I’d be slick and try to “pre-load” a few things on there using the Kindle app on Android so when I got the Kindle, I’d have some stuff to get reading. After unboxing the thing and setting it up, I looked and… couldn’t find my stuff. It was in this “Archived Items” area on the Kindle, but (as a new user) what the hell is that supposed to mean? Doesn’t look archived on my phone.

After a bit of poking around I did figure out how to download them onto the Kindle, but I went in thinking all this stuff would be automatically synchronized.

The Kindle app for Android comes with books not in the Kindle store. When you first get the Kindle app for Android you get two or three free books (Pride and Prejudice, Aesop’s Fables, and Treasure Island, if I remember right). Thing is, while it’s the same content as the ones on the Kindle store, they’re not actually connected to your account or the Kindle store, so when you actually get a Kindle, those books aren’t on there. Let me tell you how long it took me to figure that one out. I eventually deleted the local ones and “purchased” the free books out of the Kindle store so now I can keep everything in sync, but this definitely contributed to my confusion over how to get things onto the Kindle.

The screen is beautiful. I mean, truly crisp, like a printed page. When you get the Kindle, there’s a little diagram on the screen showing how to plug it in and start the battery charging. I sat for a good couple of minutes trying to figure out how to peel that sticker off when I realized it’s an image on the screen, not a sticker. Yeah, it’s that clear. Of the reading I’ve done on it, it’s nice and easy on the eyes. And when you turn the Kindle off, a classic book cover or portrait of an author comes up on the screen and stays there, and they’re all gorgeous looking.

Getting your own files onto the Kindle is confusing. They talk about how to get your own books or documents onto the Kindle, but the way it’s written is kind of confusing. You get an email address with your Kindle (like “mykindle@kindle.com” and they tell you that you can send documents to that address and they’ll show up on your Kindle, except there’s some sort of charge… unless you send to “mykindle@free.kindle.com” in which case there’s no charge but there’s some sort of manual work involved. Alternatively, you can connect the Kindle to your computer through USB and drop files into a “documents” folder on the Kindle (which appears like a drive on the computer)… but can you create folders inside the “documents” folder to separate your purchased content from personal content or not? I finally figured it out and have used Calibre to convert a couple of Cory Doctorow books and transfer them to my Kindle, but it wasn’t the simplest thing. I can’t see non-tech people getting the most out of that functionality, or maybe they just suck it up and eat the costs.

Pricing on Kindle books is odd. Sometimes they’re really competitive, like The Hunger Games being only $5 on Kindle, but $9 in paperback - Kindle version’s about half price. Other times, you wonder about the cost, like Catching Fire (the sequel to The Hunger Games) being $8.52 on Kindle but $8.97 in hardcover - the electronic version costs only $0.45 less than a hardcover physical book? One would think if I’m not taking up the resources of the printing process, the savings could be passed along to me.

The organization of books on Kindle is confusing and kind of annoying. When you first get your Kindle, all the books show up right on the home screen. If you only have like three books, that’s not a big deal, but out of the box you’ve got two dictionaries and the Kindle User Guide listed. I don’t need to look at that stuff every time I fire up the Kindle.

Fortunately, they have the notion of “collections.” A collection is sort of like a “tag” or a “folder” you can put your books in. You create a collection, then you add books to that collection. You can add a book into multiple collections, too - so if you have, say, a collection called “Science Fiction” and a collection called “Classics,” you could put The Time Machine in both collections. You can read more about collections in the Kindle User Guide.

A Kindle home screen organized in
collections.

There are three problems with collections.

Collection Problem 1: If a book is in a collection, you can’t also pin it to your home screen. That is, once you’ve got things organized into collections, you generally show your home screen organized by collections so, you know, you can see your organization in action. (Alternatively, if you sort your home screen by, say, author, you see every book listed right on the home screen and no collections at all. Sort of defeats the purpose of collections. Unfortunately, once you put a book into a collection and you sort your home screen by collections, the only books that appear on the home screen are the ones not in collections. You can’t have a book in a collection and say “pin this to the home screen because I’m reading it right now.” Granted, you can create a “Current Reading” collection and just use that, but that’s sort of a hack, you know?

Collection Problem 2: Collections are always sorted by “most recently updated,” not by collection name. This is the most frustrating bit of collections. You set all of your collections up, then sort your home screen by collection and they appear not in alphabetical order, but in descending order from most to least recently updated. (By “updated,” I mean either you read a book in that collection or you added/removed an item in the collection.) There’s a blog article talking about a workaround for this, but this, too, is a hack. One would think someone would have said, “Hey, you know what? Why don’t we separate the ‘grouping’ concept (collection, title, author) from the ‘sorting’ concept (alphabetical, date) so people can see things they way they want?” I guess not.

Collection Problem 3: Collections are device-specific. I might go through and totally organize my library on my Kindle, but when I open the Android app it doesn’t support collections, so I don’t see that. If I were to get another Kindle and connect it to my account, I wouldn’t even have the collections there unless I did this process of downloading all the books to the Kindle and then adding the collection from the “Archived Items” folder. (See the “To import a collection from another Kindle” section in the user guide.)

Aside from this stuff, I’m enjoying my Kindle so far. I’m planning on taking it to Australia with me at the end of the month, so that should really be the true test of how I like it.

dotnet, gists, aspnet, csharp comments edit

If you’ve worked with Windows Identity Foundation, you’ll find it very nearly mandates that you implement a passive security token service using classic ASP.NET web forms rather than MVC. It doesn’t lend itself well to testability, and in some cases it writes content directly to the response stream without you being able to govern when/how that happens.

All is not lost, though. Here are a couple of helpers and tips when working with Windows Identity Foundation in ASP.NET MVC to create a passive STS.

Programming Windows Identity FoundationFirst, drop what you’re doing and go buy a copy ofProgramming Windows Identity Foundation by Vittorio Bertocci. The documentation on WIF is surprisingly thin and this book is like the lost set of docs that makes everything clear. Will it directly help you specifically with ASP.NET MVC and WIF? No, but it will help you to understand what is going on with WIF so you know where you may need to insert yourself. It’ll also explain how things are supposed to work, so when you’re setting it up in MVC you can tell if things are going right or not.

Reflectoris your friend. I am not condoning that you copy/paste anything out of the WIF assemblies, but using Reflector to figure out what it’s doing is key.

For example, in WIF samples and in the WIF STS template you’ll see a call to FederatedPassiveSecurityTokenServiceOperations.ProcessSignInRequest followed closely by FederatedPassiveSecurityTokenServiceOperations.ProcessSignInResponse. The ProcessSignInResponse method takes in an HttpResponse rather than an HttpResponseBase, which removes you from the ability in your MVC controller to use the System.Web abstractions for testability. However, if you look at what ProcessSignInResponse is actually doing, it’s just taking the SignInResponseMessage that comes from ProcessSignInRequest and then it’s writing it out to the response stream. You can do the same thing yourself in your controller using the controller’s Response property and HttpResponseBase, allowing you to break that tie to the concrete System.Web classes.

Make use of model binding. In the STS template, the Default.aspx page they provide has a big if/then block that switches on query string parameter values to determine which WS-Federation action the incoming message has. Rather than that, wouldn’t it be better to have a controller action that looks like this?

// This ostensibly replaces Default.aspx in the STS template
public class DefaultController : Controller
{
  public ActionResult Index(WSFederationMessage message)
  {
    if(message.Action == WSFederationConstants.Actions.SignIn)
    {
      // Do your signin processing
    }
    // ...and so on; alternatively you could switch on message.Action.
  }
}

That, of course, assumes you have a model binder that will look at the incoming query string and parse a WSFederationMessage out of it. That’s not too hard to do, and we can pretty easily add support for the derived WSFederationMessage types to it, too, like SignInRequestMessage.

using System;
using System.Web.Mvc;
using Microsoft.IdentityModel.Protocols.WSFederation;

namespace MyNamespace.ModelBinders
{
  public class WSFederationMessageBinder : IModelBinder
  {
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
      if (controllerContext == null)
      {
        throw new ArgumentNullException("controllerContext");
      }
      if (bindingContext == null)
      {
        throw new ArgumentNullException("bindingContext");
      }

      try
      {
        var message = WSFederationMessage.CreateFromUri(controllerContext.HttpContext.Request.Url);
        if (!bindingContext.ModelType.IsAssignableFrom(message.GetType()))
        {
          throw new WSFederationMessageException();
        }
        return message;
      }
      catch (WSFederationMessageException ex)
      {
        bindingContext.ModelState.AddModelError("", ex);
        return null;
      }
    }
  }
}

You can then register that model binder for the various WS-Federation message types at app startup:

var binder = new WSFederationMessageBinder();
ModelBinders.Binders[typeof(WSFederationMessage)] = binder;
ModelBinders.Binders[typeof(AttributeRequestMessage)] = binder;
ModelBinders.Binders[typeof(PseudonymRequestMessage)] = binder;
ModelBinders.Binders[typeof(SignInRequestMessage)] = binder;
ModelBinders.Binders[typeof(SignOutRequestMessage)] = binder;
ModelBinders.Binders[typeof(SignOutCleanupRequestMessage)] = binder;

Now you can actually do the controller action the way you’d like, with a strongly-typed WSFederationMessage parameter and it will work.

Of course, if you look at the Default.aspx in the WIF STS template, it throws an UnauthorizedAccessException if a WS-Federation message comes in and isn’t a sign-in or sign-out request. You can do the same thing declaratively in MVC using an authorization filter. That would change your controller action to look more like this:

[RequireWSFederationMessage(AllowedActions = WSFederationMessageActions.SignIn | WSFederationMessageActions.SignOut)]
public ActionResult Index(WSFederationMessage message)
{
  // ...handle the message...
}

Something like that, where you could allow specific message actions to pass through, otherwise the user is seen as “unauthorized.”

Create a filter attribute for ensuring only proper message types are allowed through. First you’ll need that WSFederationMessageActions enumeration so you can specify what’s allowed and what’s not.

using System;

namespace MyNamespace.Filters
{
  [Flags]
  public enum WSFederationMessageActions
  {
    All = WSFederationMessageActions.Attribute | WSFederationMessageActions.Pseudonym | WSFederationMessageActions.SignIn | WSFederationMessageActions.SignOut | WSFederationMessageActions.SignOutCleanup,
    Attribute = 1,
    SignIn = 4,
    SignOut = 8,
    SignOutCleanup = 16
  }
}

Yes, I could have just calculated the result of the “or” operation for the “All” but this way if any values change, I don’t need to mess with “All.” Do it your way if you’re not cool with this.

Next, the filter attribute:

using System;
using System.Collections.Generic;
using System.Web.Mvc;
using Microsoft.IdentityModel.Protocols.WSFederation;

namespace MyNamespace.Filters
{
  [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
  public sealed class RequireWSFederationMessageAttribute : FilterAttribute, IAuthorizationFilter
  {
    // Lookup table for converting string actions to the associated flag
    private static readonly Dictionary<string, WSFederationMessageActions> _actionLookup = new Dictionary<string, WSFederationMessageActions>()
    {
      { WSFederationConstants.Actions.Attribute, WSFederationMessageActions.Attribute },
      { WSFederationConstants.Actions.Pseudonym, WSFederationMessageActions.Pseudonym },
      { WSFederationConstants.Actions.SignIn, WSFederationMessageActions.SignIn },
      { WSFederationConstants.Actions.SignOut, WSFederationMessageActions.SignOut },
      { WSFederationConstants.Actions.SignOutCleanup, WSFederationMessageActions.SignOutCleanup },
    };


    public WSFederationMessageActions AllowedActions { get; set; }

    private object _typeId = new object();
    public override object TypeId
    {
      get
      {
        return this._typeId;
      }
    }

    public RequireWSFederationMessageAttribute()
    {
      // Default to allowing all actions.
      this.AllowedActions = WSFederationMessageActions.All;
    }

    public bool IsAllowed(string action)
    {
      if (
        String.IsNullOrWhiteSpace(action) ||
        !_actionLookup.ContainsKey(action)
      )
      {
        return false;
      }
      var enumAction = _actionLookup[action];
      return (this.AllowedActions & enumAction) == enumAction;
    }

    public void OnAuthorization(AuthorizationContext filterContext)
    {
      if (filterContext == null)
      {
        throw new ArgumentNullException("filterContext");
      }

      WSFederationMessage message = null;
      // If you can't parse out a message or if the parsed message
      // isn't an allowed action, deny the request.
      if (
        !WSFederationMessage.TryCreateFromUri(filterContext.HttpContext.Request.Url, out message) ||
        !this.IsAllowed(message.Action)
        )
      {
        filterContext.Result = new HttpUnauthorizedResult();
        return;
      }
    }
  }
}

Now you have a filter attribute that will check to make sure the incoming message is of an expected type and will deny access if it’s not.

Hopefully some of this will help you get working with WIF in ASP.NET MVC. It’d have been nice if MVC had been considered in the initial rollout of WIF, but no such luck. I don’t even see a Connect page for accepting suggestions. Fingers crossed for the next release…!

General Ramblings comments edit

On a somewhat daily basis, I have this weird sort of “aha!” moment where I realize, again, that I’m a father, and that’s really weird to me. I picture fathers as guys that are older than I am, which is to say, that “being a father” somehow equates to “higher age” even though that’s obviously not remotely true. Of course, I also don’t feel like I’m really an adult yet, either, even being in my 30’s, given concerns about getting enough time to play Rock Band overtake my desire to, say, watch the evening news. I own a house, too, and when I think about that in concrete terms it weirds me out as well.

I also have a difficult time equating “baby” and “human,” like Phoenix is some sort of small animal that needs to be taken care of (like a house cat). I find myself talking to her the way I talk to the cats, sitting her on the couch and saying, “See, now you’re on the human chair!” when, duh, she is a human so of course she’s on the human chair. I think that will probably change when she has, you know, motor control and some mechanism of communication beyond “scream.”

I don’t think Jenn has this sort of cognitive dissonance issue over feeling like she’s-a-mom-but-she’s-not-a-mom. I think it’s sort of clicked for her. I suppose I’ll get there eventually. For now, it’s just still… surreal.