Category Archives: Development

Dotnet 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 , , , , , , | 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

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

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

Posted in Development | Tagged , , , | 1 Comment

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

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

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

Posted in Development | Tagged , | Leave a comment