views:

61

answers:

1

i have a list of applications, services and databases in a text file. the list includes which applications are consumers of which services and which services use which databases. I would like to know if there is a tool that can take this data and generate an architecture diagram. i would like to output to be dynamic so when the text file is updated the diagram automatically updates

something similar to this tool (which doesn't seem available for the web)

http://research.microsoft.com/en-us/projects/msagl/default.aspx

A: 

The closest equivalent I have seen is Graphviz

Graphviz is open source graph visualization software.
It has several main graph layout programs. See the gallery for some sample layouts.
It also has web and interactive graphical interfaces, and auxiliary tools, libraries, and language bindings.

alt text

It has also several viewers, but not one in C#, as far as I know.

VonC