Author Archives: erictummers

Unknown's avatar

About erictummers

Working in a DevOps team is the best thing that happened to me. I like challenges and sharing the solutions with others. On my blog I’ll mostly post about my work, but expect an occasional home project, productivity tip and tooling review.

Upload progress in WCF

Uploading a file in WCF is done via a stream that is send to the service in a message. The service then reads the stream to the end and writes everything to disk or memory or whatever. Now I want … Continue reading

Posted in Development | Tagged , , | Leave a comment

Remote trace listener

Code first, ask questions later Now my trace messages are directly visible in a console window. This is a great help with debugging. Of course this can be applied to existing applications via the config file….

Posted in Development | Tagged , , | 2 Comments

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

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

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

Posted in Development | Tagged , , | Leave a comment