I just followed this example to bootstrap WCF with StructureMap. At the same time I've been using StructureMap in my ASP.NET application (IIS6), which is initialized in Global.asax.Application_Start().
The two configurations have different requirements. Unfortunately, StructureMap is configured statically, and contrary to my expectations it's shared between the web app and WCF. As a result, the last "Initialize()" called wins!
Is it possible to give each one its own configuration? Or is the only solution to fold them together?