Number of View: 684
I am frequently creating Visio diagrams to use for software development or web applications. I typically use the built in elements and icons. Recently I have found it difficult to find some items that I would like to have in my designs. The great team and group over at OSA (www.opensecurityarchitecture.org) have many tools to both help with designs but also elements in the designs.

If you are not familiar with OSA I would recommend looking at some of their patterns or their library to understand how this great group can be useful. They help both visually display IT standards but also security standards.
Recently I have been using their Creative Commons released Icon set to help in my designs. Simple icons like padlocks, wifi signals, users, and servers. Not only are they good looking but it is very functional. It never hurts to have a design that is both elegant and useful.
February 19th, 2009
jimiz
Number of View: 469
I have not coded a windows service for a long time. The last time I touched a service I used the “installutil” from the framework to install it. I decided to make an IISreporter Service that would push your IIS stats out to a twitter site.
In the process I figured it would work best as a service. Since I am planning on pushing this to www.iisreporter.com and have it available for download it needed an installer. I got everything the way I wanted it and realized that I needed to set some custom app.config settings. Between the app.config settings and the installer for a service I did a bit of searching.
To touch the app.config settings during install you need to create a dialog form during the install to capture the input. Once you have the input you need to save that to the app.config during the install process. This is done with an installer class on the main project which saves the values. The last step is to call the installer class with a custom action during the install process.
Here is a great post about this process (MSI Install app.config settings)