About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (169)
Category Archives: Development
Azure Tables loadtest
Our Session data is saved in Azure Tables. It is identified with a GUID and grouped by Instruments. But we didn’t use PartitionKey or RowKey in our implementation. The PartitionKey hands the ability to logicaly group data. The RowKey identifies … Continue reading
Start Azure Storage Emulator
After my upgrade to SDK 1.3 my unittests were unable to start the Storage Emulator. I needed to update my references to the new SDK folder. Also I now have to include a reference to DevelopmentStorage.Utilities.dll. Without these updates the … Continue reading
Posted in Development
Leave a comment
WPF Styles and triggers
Whenever no selection is made from all checkboxes I want the user to see an orange border around the checkboxes. This is not a validation error, but a warning this is not the intended use. My style in XAML looks … Continue reading
Change vmsize of package
I’m enrolled into the Extra Small vm beta program. Now I want to use it to test my old packages for performance differences. How to change the vmsize of packages? There is a post about this here on the Microsoft … Continue reading
Posted in Development
Leave a comment
Silverlight and WCF exception handling
A colleage asked me why he got “not found” expections in his Silverlight client whenever an exception was returned from my WCF service. My answer was this is a Silverlight problem and needs to be resolved by you. But I … Continue reading