Sitzungslos/Statuslos 28 January 2014 Daniel-Fisher-(lennybacon) German, ASP.NET, Project, WCF, Web, WebServices http://www.flickr.com/photos/toofarnorth/8670157331/ Aus der RFC 2616: “It is a generic, stateless, protocol” Das heißt, das Fundament auf dem wir aufsetzen ist Sitzungslos. Wenn das Applikations-Framework, egal ob mit Web Forms oder MVC, oder Python, oder PHP, oder Rails…, das respektiert, wird e... [More]
MSSQL Log Size 19 January 2014 Daniel-Fisher-(lennybacon) MsSQL, Project I have a test environment for an application. From time to time I take the database to my local development environment. A smaller database log means less network latency and a faster local reproduction scenario. After a while of pumping data into a MSSQL Server instance the log can grow a bit – eve... [More]
MSSQL Backup Size 17 January 2014 Daniel-Fisher-(lennybacon) MsSQL, Project I have a test environment for an application. From time to time I take the database to my local development environment. A smaller backup means less network latency and a faster local reproduction scenario. Since 2008 Microsoft SQL Server comes with a feature called backup compression. I gave it a t... [More]
Disabling Registry-System-Redirection on 64bit 16 January 2014 Daniel-Fisher-(lennybacon) C#, Windows x64 view from x86: using Microsoft.Win32; using(var registryKey = RegistryKey.OpenBaseKey( RegistryHive.LocalMachine, RegistryView.Registry64 ).OpenSubKey(@"Software\Microsoft\InetStp\Components")) { var value = registryKey.GetValue(@"WMICompatibility")... [More]
Fixing Msbuild Error msb3247 - Found conflicts between different versions of the same dependent assembly. 16 January 2014 Daniel-Fisher-(lennybacon) ALM, Build Set MsBuild Verbosity to find out which assemblies conflict: http://msdn.microsoft.com/en-us/library/ms164311.aspx msbuild.exe .\Compile.msbuild /verbosity:detailed ... There was a conflict between "xxx, Version=1.0.0.0, Culture=neutral, PublicKeyToken=xxx" and "xxx, Version=1.... [More]
Asynchronicity rules the world 08 January 2014 Daniel-Fisher-(lennybacon) Project, Life, Article Designing architecture for a scalable system always involves thinking asynchronous parts. For example: placing an order to a system. At first sight this process of course requires feedback. What happens if the order is invalid because it contains incorrect data? Especially for the non-technical stak... [More]