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
Expose WSDL
Working with my java colleagues I came to love SOAPUI for testing services. Now Microsoft seems to have catched up with the WCF Test Client. A blog post of dotNET colleague Rick van den Bosch made me search for it … Continue reading
Posted in Development
Tagged .NET, Productivity, Test, Tooling, Visual Studio 2010, WCF, WCF Test Client
Leave a comment
<clear></clear> is not the same as <clear/>
In the dotNET configuration files you can add items to a collection like appSettings with Because this is XML you can also use the following line to add an item: But not the same for clearing the list. Try adding … Continue reading
Password confirm in WPF
In WPF the PasswordBox control doesn’t expose any property to bind it. You’ll need solutions as described here to get the password the ‘WPF way’. Getting it to validate is a different story. Whenever a user is created you want … Continue reading
WPF enable next button of Wizard on Validation success
Using a wizard in my application that validates the input. The user must not be able to move to the next page if the validation is not a success. This can be done by disabling the next button when validation … Continue reading
Async message in Microsoft Visio
Microsoft Visio is the tool we use to draw our designs. This is the first time I want to draw a synchonous message in a sequence diagram and it’s a hell of a job when you don’t know how. Here … Continue reading