0

Is there a way I can get some information from my IIS 7.0 using Java or Coldfusion?

I want to make a dash board for the sites which are there on my iis 7.0 with informations like whether it is running or not, and list all the virtual directories for every site.

nasaa
  • 2,701
  • 8
  • 47
  • 76

1 Answers1

1

You could use WMI. WMI IIS interface is http://msdn.microsoft.com/en-us/library/aa347459%28v=vs.90%29.aspx

and then Recommended libraries/howtos for using WMI with java?

Community
  • 1
  • 1
kan
  • 28,279
  • 7
  • 71
  • 101
  • I think Adobe's Web Server Configuration Tool uses CF's ability to talk to .NET. Maybe you can find out how to use WMI using .NET and uses ``? Maybe you can safe yourself from using the "Recommended libraries" in the answer – Henry Nov 21 '11 at 18:24