| West Wind Web Monitor .Net |
| Configuring the Web Monitor Web Administration Interface |
The configuration form looks like this:

You must run this operation under an Administrative account. Simply specify a domain name or IP address of the IIS server you want to create the virtual on and optionally pick the Web site on this domain/ip. Then click Create. If the process succeeds you can click on the Test button to try out the Admin interface. Please allow some time for the application to start up for the first time.
IP Address and Domain Note:
The IP Address or Domain address is meant to point to the local machine. The configuration creates Virtual directory and IIS has to be able to access the current executing directory. Don't try to install on a remote machine - it won't work. To install on a remote machine first install Web Monitor there physically then execute this operation on the remote machine.
Test the site with:
http://localhost/WebMonitorWebService/
where localhost can also be your site's domain name or IP address if it's not the default Web site.
Security is configured through web.config, but it requires that Windows Integrated Security is enabled on the virtual directory that Web Monitor runs in. If you used the configuration tool this should have happened automatically.
<configuration>
<system.web>
<authentication mode="Windows" />
<!-- WM: Allow only Authenticated users -->
<authorization>
<deny users="?" />
</authorization>
<!-- WM: Execute under the authenticated users credentials
so we can have access to resources like the previous
directory that contains the config and log files for
the Web Monitor application.
-->
<identity
impersonate="true"
/>
</system.web>
</configuration>