User Peter Mounce - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:50:10Z http://stackoverflow.com/feeds/user/20971 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796177/how-do-i-add-a-parameter-for-an-anchor-hash-to-a-redirecttorouteresult 0 How do I add a parameter for an anchor/hash to a RedirectToRouteResult? Peter Mounce 2009-11-25T10:59:35Z 2009-11-25T11:19:47Z <p>I want to use a RedirectToRouteResult to redirect to a url like /users/4#Summary. Using ASP.NET MVC 1.0, I haven't been able to find a way to do that - have I missed it?</p> http://stackoverflow.com/questions/1665974/any-experience-combining-js-css-in-mvc/1735237#1735237 0 Answer by Peter Mounce for Any experience combining JS / CSS in MVC? Peter Mounce 2009-11-14T19:07:14Z 2009-11-14T19:07:14Z <p>You could use <a href="http://github.com/mvccontrib/MvcContrib/tree/master/src/MvcContrib.IncludeHandling/" rel="nofollow" title="MvcContrib.IncludeHandling">MvcContrib.IncludeHandling</a>. Supports:</p> <ul> <li>Combining multiple files into one request</li> <li>Combining CSS</li> <li>Combining JS</li> <li>Debug-mode via MvcContrib.Filters.DebugFilter</li> <li>Cache-headers</li> <li>GZip / Deflate compression</li> <li>Configuration</li> <li>Swapping out the default implementations of the parts it relies on with your own implementations (for example; swap out the cache with your own implementation)</li> <li>Registering includes in views as well as masters - will ignore duplicate registrations.</li> </ul> <p>All happens at run-time; no build-steps etc required. No custom route required. Uses YUICompressor.</p> http://stackoverflow.com/questions/1431884/how-do-i-enable-sessionfactory-statistics-using-fluent-nhibernate 0 How do I enable SessionFactory statistics using Fluent NHibernate? [closed] Peter Mounce 2009-09-16T09:18:09Z 2009-09-18T17:47:19Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/610742/how-to-set-generatestatistics-true-with-fluent-nhibernate">how to set generate_statistics = true with fluent nhibernate</a> </p> </blockquote> <p>I have code like</p> <pre><code>AnalysisSessionFactory = Fluently.Configure() .Database(MsSqlConfiguration.MsSql2008 .ShowSql().FormatSql() .ConnectionString(ConfigurationManager.ConnectionStrings["analysis"].ConnectionString) .Cache(x =&gt; x.ProviderClass&lt;HashtableCacheProvider&gt;().UseQueryCache()) ) .Mappings( x =&gt; { foreach (var t in analysisMaps) { x.FluentMappings.Add(t); } }) .BuildSessionFactory(); </code></pre> <p>When the factory is built, it's Statistics.IsStatisticsEnabled property is set to false. What's the magic invocation to enable it? In XML, it's </p> <pre><code>&lt;property name="generate_statistics"&gt;true&lt;/property&gt; </code></pre> <p>but I haven't found a FluentNH equivalent (using FNH 1.0 rtm + NH 2.1 rtm).</p> <p>(I've enabled statistics by calling BuildConfiguration() instead of BuildSessionFactory(), then doing config.SetPropert(Environment.GenerateStatistics, "true") on that and then building the factory from the config. I'm wondering if I missed a FluentNH method.)</p> http://stackoverflow.com/questions/306103/how-to-get-castle-monorails-databinder-smartdispatchercontroller-to-bind-against 1 How to get Castle MonoRail's DataBinder/SmartDispatcherController to bind against types containing properties that are interfaces? Peter Mounce 2008-11-20T17:15:39Z 2009-09-18T15:00:03Z <p>We're using interfaces to represent entity classes in our domain model. We have concrete implementations of these by virtue of using LinqToSql. We have added a factory method to each LinqToSql class which our service layer uses to instantiate a new entity (note; as opposed to the controller's DataBind attribute doing it).</p> <p>MonoRail's default DataBinder implementation will ignore properties that are defined as interfaces.</p> <p>Ideally, we don't want to instantiate our data-layer classes in MonoRail - the whole point of the interfaces is to separate these concerns. </p> <p>Also, we don't really want to create another set of non-LinqToSql concrete classes whose only job is to translate between layers.</p> <p>It's the end of a <strong>really</strong> long day over here; please can someone have mercy and point us at the parts of IDataBinder that we should overload with our own implementations, or hint at other approaches we might attempt? ;-)</p> http://stackoverflow.com/questions/226681/db4o-client-server-appears-to-only-be-able-to-process-one-query-at-a-time 1 db4o client/server appears to only be able to process one query at a time? Peter Mounce 2008-10-22T16:56:59Z 2009-09-14T21:38:28Z <p>We're evaluating db4o (an OO-DBMS from <a href="http://www.db4o.com" rel="nofollow">http://www.db4o.com</a>). We've put together a performance test for client/server mode, where we spin up a server, then hammer it with several clients at once. It seems like the server can only process one client's query at a time.</p> <p>Have we missed a configuration switch somewhere that allows for this scenario? Server implementation is below. The client connects, queries (read-only), and disconnects per operation, and operations run one immediately after the other from several worker threads in the client process. We see same behaviour if we spin up one client process with one worker each against the same server.</p> <p>Any suggestions?</p> <p>Edit: We've now discovered, and tried out, the Lazy and Snapshot QueryModes, and although this alleviates the blocking server problem (partially), we still see significant concurrency problems when our clients (we run 40 concurrent test-clients that wait 1-300ms before issuing a random operation-request) hammer on the server. There appear to be exceptions emanating from the LINQ provider and from the IO internals :-(</p> <pre><code> public class Db4oServer : ServerConfiguration, IMessageRecipient { private bool stop; #region IMessageRecipient Members public void ProcessMessage(IMessageContext con, object message) { if (message is StopDb4oServer) { Close(); } } #endregion public static void Main(string[] args) { //Ingestion.Do(); new Db4oServer().Run(true, true); } public void Run(bool shouldIndex, bool shouldOptimizeNativeQueries) { lock (this) { var cfg = Db4oFactory.NewConfiguration(); if (shouldIndex) { cfg.ObjectClass(typeof (Sequence)).ObjectField("k__BackingField").Indexed(true); cfg.ObjectClass(typeof (Vlip)).ObjectField("k__BackingField").Indexed(true); } if (shouldOptimizeNativeQueries) { cfg.OptimizeNativeQueries(true); } var server = Db4oFactory.OpenServer(cfg, FILE, PORT); server.GrantAccess("0", "kieran"); server.GrantAccess("1", "kieran"); server.GrantAccess("2", "kieran"); server.GrantAccess("3", "kieran"); //server.Ext().Configure().ClientServer().SingleThreadedClient(false); server.Ext().Configure().MessageLevel(3); server.Ext().Configure().Diagnostic().AddListener(new DiagnosticToConsole()); server.Ext().Configure().ClientServer().SetMessageRecipient(this); try { if (!stop) { Monitor.Wait(this); } } catch (Exception e) { Console.WriteLine(e.ToString()); } server.Close(); } } public void Close() { lock (this) { stop = true; Monitor.PulseAll(this); } } } </code></pre> http://stackoverflow.com/questions/1366676/does-fluentnhs-persistencespecification-allow-xml-mappings-to-be-tested 0 Does FluentNH's PersistenceSpecification allow XML mappings to be tested? Peter Mounce 2009-09-02T09:29:56Z 2009-09-02T09:44:15Z <p>Is it possible to use Fluent NHibernate's PersistenceSpecification to test NHibernate mappings done via XML?</p> http://stackoverflow.com/questions/1187198/what-are-the-alternatives-to-sql-server-analysis-services 0 What are the alternatives to SQL Server Analysis Services? Peter Mounce 2009-07-27T09:03:57Z 2009-07-28T17:21:03Z <p>Are there any alternatives to SQL Server Analysis Services on the Windows x64 platform? I'm vaguely curious, because I haven't heard of any (though admittedly I haven't looked very hard).</p> <p>Basically, a product that allows multi-dimensional cubes and querying those to generate reports (though the generation and presentation of those reports is a separate concern). </p> <p>I'm not too familiar with the terms used by this set of products; is "column-oriented database" what I'm after?</p> <p>Update: I'm interested in open-source products as well as commercial ones.</p> http://stackoverflow.com/questions/292767/where-do-you-take-mocking-immediate-dependencies-or-do-you-grow-the-boundaries 0 Where do you take mocking - immediate dependencies, or do you grow the boundaries...? Peter Mounce 2008-11-15T17:02:48Z 2009-07-15T07:15:59Z <p>So, I'm reasonably new to both unit testing and mocking in C# and .NET; I'm using xUnit.net and Rhino Mocks respectively. I'm a convert, and I'm focussing on writing behaviour specifications, I guess, instead of being purely TDD. Bah, semantics; I want an automated safety net to work above, essentially.</p> <p>A thought struck me though. I get programming against interfaces, and the benefits as far as breaking apart dependencies goes there. Sold. However, in my behaviour verification suite (aka unit tests ;-) ), I'm asserting behaviour one interface at a time. As in, one implementation of an interface at a time, with all of its dependencies mocked out and expectations set up.</p> <p>The approach seems to be that if we verify that a class behaves as it should against its collaborating dependencies, and in turn relies on each of those collaborating dependencies to have signed that same quality contract, we're golden. Seems reasonable enough.</p> <p>Back to the thought, though. Is there any value in semi-integration tests, where a test-fixture is asserting against a unit of concrete implementations that are wired together, and we're testing its internal behaviour against mocked dependencies? I just re-read that and I think I could probably have worded it better. Obviously, there's going to be a certain amount of "well, if it adds value for you, keep doing it", I suppose - but has anyone else thought about doing that, and reaped benefits from it outweighing the costs?</p> http://stackoverflow.com/questions/293806/is-there-a-way-to-specify-outlining-defaults-in-visual-studio-so-that-a-file-open 3 Is there a way to specify outlining defaults in Visual Studio so that a file opens up with members collapsed by default? Peter Mounce 2008-11-16T11:49:37Z 2009-07-10T13:54:24Z <p>What I would like to do is have VS2008, when I open a code file, collapse all members of the classes/interfaces in the file by default (including, crucially, any XML documentation and comments).</p> <p>I do <em>not</em> want to use regions, at all.</p> <p>I would also like to be able to use the ctrl+m, ctrl+l chord to toggle all <em>member</em> outlining (for example, if everything is collapsed, I would like it to expand all of the members, but not the comments or XML documentation).</p> <p>Possible? How?</p> http://stackoverflow.com/questions/949486/publishing-performance-counters-within-windows-based-async-messaging-application 0 Publishing performance counters within Windows-based async-messaging application? Peter Mounce 2009-06-04T09:30:38Z 2009-06-04T09:30:38Z <p>So I'm involved in building an application that's using an async messaging architecture. One of the requirements is monitoring performance from a central location; requests/sec at each node, requests/sec processed by series of nodes, etc.</p> <p>This is being built with .NET within a Windows-based platform, distributed across several machines (and possibly geographic locations, though not yet), so we're probably looking at WMI performance counters. Except that I don't know too much about those or where to start other than System.Diagnostics.</p> <p>Just after hints &amp; gotchas (especially in the context of distributed computing), which is terribly ill-defined of me, but there it is. Links to howtos, helper libraries, and (decent) documentation would be welcomed.</p> http://stackoverflow.com/questions/222564/httpbrowsercapabilities-crawler-property-net/920111#920111 0 Answer by Peter Mounce for HttpBrowserCapabilities.Crawler property .NET Peter Mounce 2009-05-28T10:03:36Z 2009-05-28T10:03:36Z <p><a href="http://www.primaryobjects.com/CMS/Article102.aspx" rel="nofollow">http://www.primaryobjects.com/CMS/Article102.aspx</a></p> http://stackoverflow.com/questions/629425/orms-are-to-rdbmss-as-xxx-is-to-olap-cubes-does-xxx-exist 3 ORMs are to RDBMSs as xxx is to OLAP cubes? Does xxx exist? Peter Mounce 2009-03-10T09:25:24Z 2009-04-24T17:17:01Z <p>Is there an ORM-analogue for querying OLAP cubes / data-warehouses? I'm specifically interested in the .NET world, but generally interested in anything ;-)</p> http://stackoverflow.com/questions/487671/rake-for-net/737762#737762 1 Answer by Peter Mounce for Rake for .NET Peter Mounce 2009-04-10T14:21:19Z 2009-04-10T14:21:19Z <p><a href="http://blog.neverrunwithscissors.com/tag/rake-dotnet" rel="nofollow">rake-dotnet</a> is pretty useful, if rather new (though that's admittedly pretty shameless of me ;-) ).</p> <p><a href="http://github.com/petemounce/rake-dotnet" rel="nofollow">Source code</a></p> http://stackoverflow.com/questions/284388/is-there-a-test-runner-for-net-tests-that-can-run-multi-threaded-to-take-advanta 3 Is there a test runner for .NET tests that can run multi-threaded to take advantage of multi-core machines? Peter Mounce 2008-11-12T15:57:01Z 2009-03-28T03:05:40Z <p>I'm setting up CI at present using Thoughtworks Studios' Cruise, Gallio to run xunit.net fact/tests, and ncover 2 to do code-coverage.</p> <p>I noticed that running the code-coverage pegs one of the four CPUs that our build-agent server has, and wondered whether there was a multi-threaded test-runner that I might use instead, to take advantage of the other 3 cores that are sat idle? I had a quick search around, but most hits are in reference to testing multi-threaded code, not multi-threaded test running...</p> http://stackoverflow.com/questions/457362/aspnet-mvc-way-to-figure-out-the-route-of-the-referer-sic 5 ASPNET MVC: Way to figure out the route of the referer (sic)? Peter Mounce 2009-01-19T11:46:15Z 2009-03-10T23:23:21Z <p>I have some POST actions on my controller that are hit from a pair of GET actions. When validation fails, I want to render the view of the action that the POST is coming from. For example:</p> <p>~/accounts POSTs to ~/accounts/disable - render "index" view on validation error ~/accounts/profile POSTs to ~/accounts/disable - render "profile" view on validation error</p> <p>I can get the referer (sic) out of server-variables and parse it to figure out the action, but was hoping there would either be something built in that does what I want, or someone else has already done this that I could crib from.</p> <p>It seems the ControllerContext.RouteData property only has information about the current request, not the refering (sic) request...?</p> <p>I'm on ASP.NET MVC beta.</p> http://stackoverflow.com/questions/471448/tips-for-moving-from-c-to-java 3 Tips for moving from C# to Java? Peter Mounce 2009-01-23T00:36:43Z 2009-01-23T05:40:32Z <p>So I'm going to a job interview next week at a Java place, and would like to not come across as clueless. I'm a pretty confident C#/.NET developer and am (clearly!) willing to consider jumping ship to Java - I'd like links to resources people would recommend for doing this. I'm interested in answers to questions like:</p> <ul> <li>Any guides that are a rough equivalent to <a href="http://www.codethinked.com/post/2008/07/21/Learning-Ruby-via-IronRuby-and-C-Part-1.aspx" rel="nofollow">Justin Etheridge's Ruby for C# developers</a>? That was really useful when I decided I wanted to learn Ruby's rake (and thus at least a little Ruby). There seem to be more pages for people going the other way, though...</li> <li>Which IDE to use? I've actually already bought my own IntelliJ because I love its HTML/CSS/JS, but haven't touched its actual raison d'etre of, well, "that Java stuff". I suspect the place I'm going to uses Eclipse, however. So - recommended resources to get up and running on a Mac or Windows (I'm not fussy)?</li> <li>It's probably going to be a TDD coding interview; I guess JUnit is the de facto choice to learn a little about here?</li> </ul> <p>Thanks in advance.</p> http://stackoverflow.com/questions/416581/how-do-i-insert-entities-with-linq-to-sql-where-i-wish-to-specify-their-identitie 0 How do I insert entities with Linq To SQL where I wish to specify their identities - eg, pre-populating tables on DB creation? Peter Mounce 2009-01-06T13:50:18Z 2009-01-09T16:26:37Z <p>I'm engaged in writing a product using LinqToSql for data-access. While we're rapidly developing, the model changes often. This means we dump and reload the database lots while developing. Thus, overhead is involved to recreate baseline data each time.</p> <p>A process that restores a DB backup is not useful, because we would need to update the model DB just as often; same overhead (I think, anyway).</p> <p>So, I want to use DataContext.CreateDatabase, then pull some data in from CSV files. Fine. But I would also like to stitch up the relationships, which means, ideally, knowing what the primary keys will be in advance (otherwise, given that some identities are GUIDs, it will be hard to stitch up the links I need to).</p> <p>What is the equivalent to <code>SET IDENTITY_INSERT IdentityTable ON</code> (and OFF) in Linq To SQL? Is there one?</p> http://stackoverflow.com/questions/427406/why-and-how-does-framework-library-choice-matter-from-a-mergers-acquisitions-po 0 Why and how does framework/library choice matter from a mergers & acquisitions point of view? Peter Mounce 2009-01-09T08:37:20Z 2009-01-09T09:22:19Z <p>It was mentioned to me the other day that choosing (say) ASP.NET MVC and LinqToSql (both MS libraries) over MonoRail and NHibernate would make the software product built a more attractive company asset when considered in the context of mergers and acquisitions. </p> <p>As in, because the first two are MS libraries, and the 2nd two are open-source libraries.</p> <p>Why?</p> <p>Note: I'm not after answers saying things like "but that's wrong; Castle is far better than MS MVC" - I'm wanting to know the underlying reasoning for business people thinking that closed-source-based products being more valuable than open-source-based products.</p> <p>Note 2: I realise this is not a programming question, per se. On the other hand, it is, entirely, because this knowledge will influence the framework available to develop within, and potentially eliminate other choices. Unfortunate as that may be.</p> http://stackoverflow.com/questions/241467/does-anyone-know-of-anyone-working-on-a-linq-to-memcached-provider 2 Does anyone know of anyone working on a LINQ-to-Memcached provider? Peter Mounce 2008-10-27T21:33:12Z 2009-01-06T19:44:24Z <p>As title. I didn't find one via google, at any rate.</p> <p>Update: thanks for the links from the two answers; this is very useful, but not what I was after - I am curious to see whether it is possible to query an IRepository backed by memcached (or some other distributed cache), backed by a RDBMS. I've really no idea how that might work in practise; I don't know very much about the internals of either distributed caches or LINQ providers.</p> <p>I'm maybe envisaging something like the cache LINQ provider generating cache-keys based on the query automatically (where query could be Expression> or some kind of Specification pattern implementation), and basically can be plumped down inbetween my app and my DB. Does that sound useful?</p> http://stackoverflow.com/questions/71381/worth-migrating-to-rake/401797#401797 3 Answer by Peter Mounce for Worth migrating to Rake? Peter Mounce 2008-12-30T23:07:54Z 2008-12-30T23:07:54Z <p>I would say yes, but I have a different perspective than a Java-environment guy, because I'm a .NET-environment guy. I had written and maintained a non-trivial build script (clean, generate-assembly-info, build, test, coverage, analysis, package) in msbuild (MS' XML-driven NAnt effort) and it was very painful:</p> <ul> <li>XML isn't friendly; it's very noisy</li> <li>No-one else on the team was interested in learning it to the point of performing more, and more useful, automations; so high bus factor (ie, if I get hit by a bus, they're stuck with it)</li> <li>It did not lend itself to refactoring or improvement - it was one of those 'touch-at-your-peril' things, you know?</li> <li>It needed custom C# tasks to be written to run the various tools the build needed (though to be fair, often these are written by the vendors)</li> </ul> <p>In about a work-week's worth of my time (got to love empty offices at Christmas time!), I've learned enough ruby+rake to replace the whole thing with a shorter (in terms of LOC) script with slightly more functionality, and more understandability (I hope, anyhow; haven't had it reviewed yet).</p> <p>It benefits from: - It's a new language, but a real language. My team-mates like learning new languages, and this, while a thin excuse, is still an excuse ;-) This might mitigate the bus-factor if I'm right. - It's a short hop (I gather) from here to capistrano, the automated/remote/distributed deployment tool from the RoR world. Despite being an MS-stack shop, we're gonna be using that in combination with IIS7 finally having a CLI config tool.</p> <p>So, yeah. Your mileage may vary, but it was worth it for me.</p> http://stackoverflow.com/questions/243580/how-to-fake-a-validation-error-in-a-monorail-controller-unit-test 2 How to fake a validation error in a MonoRail controller unit-test? Peter Mounce 2008-10-28T14:42:03Z 2008-12-27T12:16:59Z <p>I am running on Castle's trunk, and trying to unit-test a controller-action where validation of my DTO is set up. The controller inherits from SmartDispatcherController. The action and DTO look like:</p> <pre><code> [AccessibleThrough(Verb.Post)] public void Register([DataBind(KeyReg, Validate = true)] UserRegisterDto dto) { CancelView(); if (HasValidationError(dto)) { Flash[KeyReg] = dto; Errors = GetErrorSummary(dto); RedirectToAction(KeyIndex); } else { var user = new User { Email = dto.Email }; // TODO: Need to associate User with an Owning Account membership.AddUser(user, dto.Password); RedirectToAction(KeyIndex); } } public class UserRegisterDto { [ValidateNonEmpty] [ValidateLength(1, 100)] [ValidateEmail] public string Email { get; set; } [ValidateSameAs("Email")] public string EmailConfirm { get; set; } [ValidateNonEmpty] public string Password { get; set; } [ValidateSameAs("Password")] public string PasswordConfirm { get; set; } // TODO: validate is not empty Guid [ValidateNonEmpty] public string OwningAccountIdString { get; set; } public Guid OwningAccountId { get { return new Guid(OwningAccountIdString); } } [ValidateLength(0, 40)] public string FirstName { get; set; } [ValidateLength(0, 60)] public string LastName { get; set; } } </code></pre> <p>The unit test looks like:</p> <pre><code> [Fact] public void Register_ShouldPreventInValidRequest() { PrepareController(home, ThorController.KeyPublic, ThorController.KeyHome, HomeController.KeyRegister); var dto = new UserRegisterDto { Email = "ff" }; home.Register(dto); Assert.True(Response.WasRedirected); Assert.Contains("/public/home/index", Response.RedirectedTo); Assert.NotNull(home.Errors); } </code></pre> <p>("home" is my HomeController instance in the test; home.Errors holds a reference to an ErrorSummary which should be put into the Flash when there's a validation error).</p> <p>I am seeing the debugger think that dto has no validation error; it clearly should have several failures, the way the test runs.</p> <p>I have read <a href="http://joeydotnet.com/blog/archive/2007/10/25/monorail-controller-test-analysis---problem-and-resolution.aspx" rel="nofollow">Joey's blog post on this</a>, but it looks like the Castle trunk has moved on since this was written. Can someone shed some light, please?</p> http://stackoverflow.com/questions/243580/how-to-fake-a-validation-error-in-a-monorail-controller-unit-test/394949#394949 1 Answer by Peter Mounce for How to fake a validation error in a MonoRail controller unit-test? Peter Mounce 2008-12-27T12:16:59Z 2008-12-27T12:16:59Z <p><a href="http://www.candland.net/blog/2008/07/09/WhatsNeededForCastleValidationToWork.aspx" rel="nofollow">http://www.candland.net/blog/2008/07/09/WhatsNeededForCastleValidationToWork.aspx</a> would appear to contain an answer.</p> http://stackoverflow.com/questions/319401/possible-to-modify-the-c-that-linq-to-sql-generates 1 Possible to modify the C# that Linq To SQL generates? Peter Mounce 2008-11-26T00:54:11Z 2008-12-15T12:43:21Z <p>It would be really handy to be able to somehow say that certain properties in the generated entity classes should, for example, be decorated by (say) validation attributes (as well as Linq To SQL column attributes).</p> <p>Is it a T4 template someplace? Or are there other ways to skin the cat?</p> http://stackoverflow.com/questions/355795/how-to-figure-out-which-timezone-a-asp-net-monorail-website-user-is-in 1 How to figure out which timezone a (ASP.NET / MonoRail) website user is in? Peter Mounce 2008-12-10T11:43:57Z 2008-12-12T03:08:31Z <p>So, I'm setting a cookie that should expire. However, I want this to work around the world. So I need to adjust my expiry date for the user's timezone.</p> <p>So, I need to find out the user's timezone, server-side. </p> <p>Is there a way to do this in the BCL? As in, something like relying on the CultureInfo.CurrentUICulture to be set correctly (which I believe the MonoRail LocalizationFilter does, but have not checked properly yet), and then figuring out which timezone the user is in (as well as accounting for daylight savings there too) based on that?</p> <p>There's System.TimeZoneInfo in .NET 3.5, but little documentation on what the Ids are - whether they're ISO codes, or what.</p> <p>Or am I going to rely on something on the client-side to push in this information from for example Date.getTimezoneOffset()? <strong>I'd prefer to avoid that</strong>, since, well, the client-side lies.</p> http://stackoverflow.com/questions/290043/castle-monorail-routing-with-iis-7/361138#361138 3 Answer by Peter Mounce for Castle MonoRail Routing with IIS 7? Peter Mounce 2008-12-11T21:58:18Z 2008-12-11T21:58:18Z <p>If you're on IIS7, you need the routing module registration in the system.webServer/httpModules node.</p> <p>The system.web/httpHandlers and httpModules are AFAIK ignored by IIS7.</p> <p>MonoRail routing definitely works; we have it up and running happily. Here're config and global.asax.cs snippets:</p> <pre><code> &lt;system.web&gt; &lt;authentication mode="None" /&gt; &lt;compilation debug="true" /&gt; &lt;!-- IIS6 / integrated dev server handler/module config --&gt; &lt;httpHandlers&gt; &lt;clear /&gt; &lt;add path="favicon.ico" verb="*" type="System.Web.StaticFileHandler"/&gt; &lt;add path="Trace.axd" verb="*" type="System.Web.Handlers.TraceHandler"/&gt; &lt;add path="*.config" verb="*" type="System.Web.HttpForbiddenHandler" /&gt; &lt;add path="*.spark" verb="*" type="System.Web.HttpForbiddenHandler" /&gt; &lt;add path="*.sparkjs" verb="*" type="System.Web.HttpForbiddenHandler" /&gt; &lt;add path="/content/**/*.*" verb="*" type="System.Web.StaticFileHandler" /&gt; &lt;add path="/content/**/**/*.*" verb="*" type="System.Web.StaticFileHandler" /&gt; &lt;add path="/content/**/**/**/*.*" verb="*" type="System.Web.StaticFileHandler" /&gt; &lt;add path="/content/**/**/**/**/*.*" verb="*" type="System.Web.StaticFileHandler" /&gt; &lt;add path="*" verb="*" type="Castle.MonoRail.Framework.MonoRailHttpHandlerFactory, Castle.MonoRail.Framework" /&gt; &lt;add verb="*" path="*.castle" type="Castle.MonoRail.Framework.MonoRailHttpHandlerFactory, Castle.MonoRail.Framework"/&gt; &lt;/httpHandlers&gt; &lt;httpModules&gt; &lt;add name="routing" type="Castle.MonoRail.Framework.Routing.RoutingModuleEx, Castle.MonoRail.Framework" /&gt; &lt;add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.MicroKernel" /&gt; &lt;/httpModules&gt; &lt;trace enabled="true"/&gt; &lt;/system.web&gt; &lt;!-- IIS 7 handler/module config --&gt; &lt;system.webServer&gt; &lt;handlers&gt; &lt;clear /&gt; &lt;add name="FavIcon" path="favicon.ico" verb="*" type="System.Web.StaticFileHandler"/&gt; &lt;add name="Trace" path="Trace.axd" verb="*" preCondition="integratedMode" type="System.Web.Handlers.TraceHandler"/&gt; &lt;add name="BlockConfig" path="*.config" verb="*" preCondition="integratedMode" type="System.Web.HttpForbiddenHandler" /&gt; &lt;add name="BlockSpark" path="*.spark" verb="*" preCondition="integratedMode" type="System.Web.HttpForbiddenHandler" /&gt; &lt;add name="BlockSparkJs" path="*.sparkjs" verb="*" preCondition="integratedMode" type="System.Web.HttpForbiddenHandler" /&gt; &lt;add name="content" path="/content/**/*.*" verb="*" preCondition="integratedMode" type="System.Web.StaticFileHandler" /&gt; &lt;add name="content2" path="/content/**/**/*.*" verb="*" preCondition="integratedMode" type="System.Web.StaticFileHandler" /&gt; &lt;add name="content3" path="/content/**/**/**/*.*" verb="*" preCondition="integratedMode" type="System.Web.StaticFileHandler" /&gt; &lt;add name="content4" path="/content/**/**/**/**/*.*" verb="*" preCondition="integratedMode" type="System.Web.StaticFileHandler" /&gt; &lt;add name="castle" path="*" verb="*" type="Castle.MonoRail.Framework.MonoRailHttpHandlerFactory, Castle.MonoRail.Framework" modules="ManagedPipelineHandler" scriptProcessor="" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv2.0" /&gt; &lt;/handlers&gt; &lt;modules&gt; &lt;add name="routing" type="Castle.MonoRail.Framework.Routing.RoutingModuleEx, Castle.MonoRail.Framework" /&gt; &lt;add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.MicroKernel" /&gt; &lt;/modules&gt; &lt;validation validateIntegratedModeConfiguration="false" /&gt; &lt;/system.webServer&gt; </code></pre> <p>(In fact, we never got this working on IIS6, but did on the web-dev server - we've got support since then and were told it would work with a * mapping at the IIS6 level to the aspnet_isapi.dll - but by then, the dev running Win2003 updated to something with IIS7 on it, so we haven't tried that)</p> <pre><code> protected virtual void RegisterRoutes(IRoutingRuleContainer engine) { engine.Add ( new PatternRoute(ThorController.CtlrHome, "/[controller]") .DefaultForController().Is(ThorController.CtlrHome) .DefaultForArea().Is(ThorController.AreaPublic) .DefaultForAction().Is(ThorController.ActionIndex) ); engine.Add ( new PatternRoute(ThorController.KeyDefault, "/&lt;area&gt;/&lt;controller&gt;/[action]/[id]") .DefaultForArea().Is(ThorController.AreaPublic) .DefaultForAction().Is(ThorController.ActionIndex) .DefaultFor(ThorController.KeyId).IsEmpty ); } </code></pre> <p>(the first route handles our application root)</p> <p>(the values are consts on our ThorController base class to try to cut down on string literals)</p> <p>As an aside, anyone know if there exists syntax to do what we're doing with static file handling in one line? There's surely gotta be a better way than our "solution" ;-)</p> http://stackoverflow.com/questions/235095/how-would-you-approach-in-net-allowing-the-tenants-of-a-multi-tenant-saas-app 0 How would you approach, in .NET, allowing the tenants of a multi-tenant SaaS app to arbitrarily add properties to the entities of the model? Peter Mounce 2008-10-24T20:08:13Z 2008-12-04T21:48:26Z <p>So, we're building a multi-tenant system to run as a service. We're starting from the ground up. We're following DDD; the domain has (at the moment) ~20 entities in it, and later there will be more. It is to be hosted by us, geographically redundant (n+1 of everything except SQL queries ;-) ), and of flexible design (well, that last is our own requirement, not the business', though they want us to be able to change it easily on demand of course). We're .NET based, and will be using a relational database for our backing store. We're not against using open-source tools and libraries (at all).</p> <p>One of the must-have features from the business is that certain entities be extensible by the tenants of the system. For example, client A may want entity Foo to have Title and Abstract properties, whereas client B may want entity Foo to have Publish Date and Directed-By properties - and not Title Abstract.</p> <p>It may also be the case that it should support data in multiple languages for tenants that want this - for example, one tenant may be interested in translating their whole account into two (or more) languages; both the "static" strings, and the strings attached to the entities as data.</p> <p>So. Arbitrary number of fields (on top of some common baseline; there are certain things about these entities that all tenants will get), definable by the client (where they can define the data-type too). Possibility of translation of the data (without duplicating the entities - as in, without setting up one set in English, and then setting up the same set in French). Strongly typed, searchable, queryable backing storage, too (so, no extra-stuff-goes-in-an-XML-field, unless there's a way for it to come out strongly-typed and searchable). Performant (but as a secondary requirement; the feature is important enough to buy hardware for if necessary).</p> <p>Data volumes? In our current system, an "average" client has hundreds of entities, a "big" client has thousands of entities. Requests will usually filter those lists for display to between 10-200ish, and the most common thing to want to do will involve maybe half-a-dozen entities (that in the new system, should be extensible).</p> <p>Other points? Each Entity has a direct link to the tenant that owns it.</p> <p>How does one go about this, in .NET-land? It's been suggested that we chuck our entities into an IoC container, and glob them together on the fly at run-time - but how does one map that to a relational database?</p> <p>I also remember reading <a href="http://ayende.com/Blog/archive/2007/10/16/Lucene-as-a-data-repository.aspx" rel="nofollow">Ayende's post</a> on this with Lucene.NET from some significant time ago that sounds good, but we haven't got any experience with Lucene.NET or nHibernate at present. (We're currently going to use Linq2Sql for our ORM but if we need to change that to support this, I'd personally be happy, frankly).</p> <p>I read <a href="http://groups.google.com/group/castle-project-users/browse_thread/thread/35c08000eb8f06d6/1145442775fd96e4" rel="nofollow">this Castle dev list thread</a> which is linked from Ayende, and it seems like nHibernate has something called an IUserType that might help - I wonder whether we might apply that, pulling the appropriate one our of IoC for each tenant? So one IUserType per tenant per extensible-entity, and store the data itself in an XML column inside of SQL Server (our most likely RDBMS).</p> <p>Lastly, I've just read one suggestion around dynamically changing a DB-table per entity per tenant - but this sounds pretty... Fraught, honestly! I mean, it <em>could</em> work, but it sounds like not such a great idea to give out the ability to do this to tenants (who may be less than tech-savvy). I suppose it could restricted to administrator-employees only...</p> http://stackoverflow.com/questions/203971/opinions-wanted-is-it-better-to-connect-or-disconnect-the-entities-in-the-doma 1 Opinions wanted: is it better to connect, or disconnect, the entities in the domain model? Peter Mounce 2008-10-15T07:53:05Z 2008-11-27T17:59:29Z <p>I'm starting a new project; I wish to follow a DDD approach. We have talked to the business and achieved some insight into the domain in some detail (internet TV).</p> <p>The team is five strong and distributed. We have adopted the repository pattern for data-access. We are following a service-based approach overall; services are responsible for performing operations, and we will expose some operations via a REST API, and some via our own client applications.</p> <p>The people that do not have experience with ORMs (not that I have a massive amount either, at present) wish to model the entities without relationships between them, with the rationale that this forces the developers who use the Repositories to know precisely what effect they are having on the database. I am trying to point out that this will end up with a very chatty set of services, more code to maintain and test, and a domain model that fundamentally misses the point. I don't think this is a good approach, and neither do any of the people I've talked to about it.</p> <p>Their desire for the implementation of this approach is Linq2SQL under the repository-facade. This requires a second model, a mapping class/layer between it and the domain model, and much duplication in the repositories because it doesn't appear to be possible (that we've seen so far) to write a generic repository. It also isn't possible to map L2S entities that leverage inheritance (which means that EVERY entity must have properties for created-on, created-by, etc)</p> <p><strong>1st question:</strong> Can anyone offer me any advice about how to change their minds? I'm in the process of writing a side-project which uses NHibernate, which of course supports the DDD-approach well, on the basis that "Show me the code" is a powerful argument. </p> <p><strong>2nd question:</strong> What sorts of thing should I attempt to demonstrate in my NHibernate-using on-my-own-time side-project? I am new to it; one of their dislikes for NHibernate is the learning curve and the requirement for XML; my counter-argument is that it's a powerful tool, and Fluent NHibernate eliminates the need for XML. They still don't like it.</p> http://stackoverflow.com/questions/225597/javascipt-library-for-syntax-highlighting-for-code-then-diffs-in-html-at-the-l 0 Javascipt library for syntax highlighting for code, then diffs, in HTML, at the line level? Peter Mounce 2008-10-22T12:49:40Z 2008-11-11T10:40:31Z <p>Anyone know of a JS library that will allow me to syntax highlight a code block, then highlight line-level diffs? For example, in a subversion diff, I'd like to highlight the characters on the line that have changed (as well as highlighting the fact that there are change(s) on the line).</p> <p>Edit: I'm after something that will let me syntax highlight according to the language, then syntax highlight the fact that it's a diff, and ideally, on top, highlight the changed-characters on the lines that have changed. I saw that Gallio now does this for its not-equal assertion-exceptions, but haven't looked at that yet.</p> http://stackoverflow.com/questions/256723/svn-retrieving-useful-information/256749#256749 1 Answer by Peter Mounce for SVN - Retrieving Useful Information Peter Mounce 2008-11-02T10:25:55Z 2008-11-02T10:25:55Z <p>In .NET land, there is the <a href="http://sharpsvn.open.collab.net/" rel="nofollow">SharpSvn</a> library that you could use. To achieve what you want, you would need to suck down all the log messages and parse them yourself, though.</p> http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/247452#247452 4 Answer by Peter Mounce for Dealbreakers for new programming jobs? Peter Mounce 2008-10-29T16:21:27Z 2008-10-29T16:21:27Z <p>Having been lured in on the promise of working with the latest and most interesting technology, one of the interviewers asks me whether I happen to know any VB6 "just in case our legacy LOB app needs supporting..."...</p> http://stackoverflow.com/questions/1796177/how-do-i-add-a-parameter-for-an-anchor-hash-to-a-redirecttorouteresult/1796261#1796261 Comment by Peter Mounce on How do I add a parameter for an anchor/hash to a RedirectToRouteResult? Peter Mounce 2009-11-25T13:23:52Z 2009-11-25T13:23:52Z That's just it; I know I can build a URL myself, but I want to benefit from strongly-typed checks in my unit-tests when asserting, for example. http://stackoverflow.com/questions/1665974/any-experience-combining-js-css-in-mvc/1735237#1735237 Comment by Peter Mounce on Any experience combining JS / CSS in MVC? Peter Mounce 2009-11-14T19:08:22Z 2009-11-14T19:08:22Z Oh, duh; didn't read that you'd already checked it out. :-) http://stackoverflow.com/questions/1431884/how-do-i-enable-sessionfactory-statistics-using-fluent-nhibernate/1445963#1445963 Comment by Peter Mounce on How do I enable SessionFactory statistics using Fluent NHibernate? Peter Mounce 2009-09-21T10:16:48Z 2009-09-21T10:16:48Z To future readers: The method I was looking for doesn't exist yet (now), so expose-configuration and set it there, as described in question. http://stackoverflow.com/questions/226681/db4o-client-server-appears-to-only-be-able-to-process-one-query-at-a-time/1424051#1424051 Comment by Peter Mounce on db4o client/server appears to only be able to process one query at a time? Peter Mounce 2009-09-15T11:43:06Z 2009-09-15T11:43:06Z No; we stopped evaluating at the time and moved to a relational db :/ http://stackoverflow.com/questions/457362/aspnet-mvc-way-to-figure-out-the-route-of-the-referer-sic/458212#458212 Comment by Peter Mounce on ASPNET MVC: Way to figure out the route of the referer (sic)? Peter Mounce 2009-01-20T23:30:21Z 2009-01-20T23:30:21Z It would, but I'm not wanting to redirect; I want to get at the contents of RouteData on the request that I'm coming from. I'm not fluent with ASP.NET MVC, though; does the RedirectResult that that statement returns contain what I want? http://stackoverflow.com/questions/427406/why-and-how-does-framework-library-choice-matter-from-a-mergers-acquisitions-po/427442#427442 Comment by Peter Mounce on Why and how does framework/library choice matter from a mergers & acquisitions point of view? Peter Mounce 2009-01-19T11:52:32Z 2009-01-19T11:52:32Z In contrast, though, that skilled people like learning and working with new/interesting skills. Various literature (McConnell etc) suggests a &quot;good&quot; developer is 5-10x more productive than an &quot;average&quot; developer, but their pay does not reflect this out-of-proportion difference. http://stackoverflow.com/questions/355795/how-to-figure-out-which-timezone-a-asp-net-monorail-website-user-is-in Comment by Peter Mounce on How to figure out which timezone a (ASP.NET / MonoRail) website user is in? Peter Mounce 2008-12-12T10:33:25Z 2008-12-12T10:33:25Z Hmm. I just looked at <a href="http://code.google.com/p/gears/wiki/GeolocationAPI" rel="nofollow">code.google.com/p/gears/&hellip;</a> , and it can return at least a country code. Almost what I want... http://stackoverflow.com/questions/263385/is-monorail-ready-for-productive-usage/267155#267155 Comment by Peter Mounce on Is MonoRail ready for productive usage? Peter Mounce 2008-12-11T22:01:52Z 2008-12-11T22:01:52Z It's in use by Universal, as in, Universal Studios? How do you know? Can you provide links or contacts to ask about their experiences, maybe? Do their developers have blogs? I'd be really interested to hear about it! http://stackoverflow.com/questions/294216/why-does-c-forbid-generic-attribute-types/294242#294242 Comment by Peter Mounce on Why does C# forbid generic attribute types? Peter Mounce 2008-11-16T21:22:16Z 2008-11-16T21:22:16Z Small world. I was just wondering this a few minutes ago. It would be really handy to me if support magically appeared! :-) http://stackoverflow.com/questions/226681/db4o-client-server-appears-to-only-be-able-to-process-one-query-at-a-time/275441#275441 Comment by Peter Mounce on db4o client/server appears to only be able to process one query at a time? Peter Mounce 2008-11-12T18:57:29Z 2008-11-12T18:57:29Z You can see the client code at <a href="http://developer.db4o.com/forums/post/51714.aspx" rel="nofollow">developer.db4o.com/forums/post/51714.aspx</a> as well as some more discussion of the use-case. http://stackoverflow.com/questions/165102/whats-wrong-with-linq-to-sql/165166#165166 Comment by Peter Mounce on What's wrong with Linq to SQL? Peter Mounce 2008-11-10T21:33:57Z 2008-11-10T21:33:57Z I just spent a day trying to mock Table&lt;T&gt; in various quite imaginative ways and gave up in disgust. Gah! http://stackoverflow.com/questions/238029/peer-to-peer-replication-in-sql-server-2005-08/238150#238150 Comment by Peter Mounce on Peer to peer replication in SQL Server 2005/08 Peter Mounce 2008-11-02T22:07:46Z 2008-11-02T22:07:46Z These are issues I have to help deal with during 5am usage-ebb-time deployments. (Thanks for clarifying PTP vs merge replication; I hadn't realised they were two different things.) http://stackoverflow.com/questions/228997/asp-mvc-beta-install-problems/229276#229276 Comment by Peter Mounce on ASP.MVC Beta Install Problems Peter Mounce 2008-11-02T11:36:46Z 2008-11-02T11:36:46Z I verified this (uninstalled CD; I do not, and still do not, have VB installed) and posted an issue to CD's [CodePlex](<a href="http://www.codeplex.com/CloneDetectiveVS/WorkItem/View.aspx?WorkItemId=11549" rel="nofollow">codeplex.com/CloneDetectiveVS/WorkItem/&hellip;</a>) site http://stackoverflow.com/questions/26049/how-to-get-attention-for-your-old-unanswered-questions Comment by Peter Mounce on How to get attention for your old, unanswered questions Peter Mounce 2008-10-30T11:08:17Z 2008-10-30T11:08:17Z <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/27314" rel="nofollow">stackoverflow.uservoice.com/pages/general/&hellip;</a> - I don't think this uservoice is correctly tagged as &quot;completed&quot;; please see explanation there? http://stackoverflow.com/questions/241467/does-anyone-know-of-anyone-working-on-a-linq-to-memcached-provider/241515#241515 Comment by Peter Mounce on Does anyone know of anyone working on a LINQ-to-Memcached provider? Peter Mounce 2008-10-28T19:48:15Z 2008-10-28T19:48:15Z I <i>do</i> want to, but tragically it's not currently an option until the shortcomings of Linq2Sql are experienced &quot;in real life&quot;.