Tag Archives: Code

SQLite WARNING: Type mapping failed

The log of our product started showing SQLite warnings. We ignored them to focus on the release. Now it was time to repro and fix the warnings. After reading the verbose log we found the issue. Unknown datatypes are allowed … Continue reading

Posted in Development | Tagged , | Leave a comment

WPF localization

To repro a bug I’ve created a simple WPF application that displays two labels bound to the same DateTime object. The bottom one is converted to a string using a IValueConverter. Both should be formatted the same but aren’t. By … Continue reading

Posted in Development | Tagged , , | Leave a comment

Disable LoadUserProfile on IIS Applicationpool

We’re using IIS Metabase (6.0) to administer IIS from our application. For IIS 7 and above we use the IIS Metabase and IIS 6 configuration compatibility Windows feature. After introducing the creation of an application pool per web application we … Continue reading

Posted in Development | Tagged , , | Leave a comment

Crashing unit tests in Visual Studio

Today I got my unit tests to crash in Visual Studio. Right after some refactoring the tests stopped working and the output window contained the following message: The active Test Run was aborted because the execution process exited unexpectedly. To … Continue reading

Posted in Development | Tagged , , | 3 Comments

Reduce wait time with tasks

In our project we group multiple machines and request information from each one. Sometimes this takes very long. All machines are contacted in sequence. When one machine is offline the request will timeout in 10 seconds (default WCF behavior) This … Continue reading

Posted in Development | Tagged , , , | Leave a comment