Hello,
Is there a way to customize this web page "response from HM host service" ?
I install the web service on another PC than the one where HM is installed and i putted an autorefresh so when/if there is a problem with HM (server or application), it´ll display the page "response from HM host service" .
I would like to change this page to put more information and to localize it.
Thank you,
Xavier
Customizing the "response from HM host service" we
Unofficial update available at www.ks-soft.net/download/ws109c.zip
Mark "Use custom HTML page to report error" and place your customized error page in 'WebService\images\errorpage1.htm"
Use %WSResponse% variable to display error message.
E.g. standard page looks like
Regards
Alex
Mark "Use custom HTML page to report error" and place your customized error page in 'WebService\images\errorpage1.htm"
Use %WSResponse% variable to display error message.
E.g. standard page looks like
Code: Select all
<html>
<head>
<STYLE TYPE="text/css"> <!--
.errstyle { text-align: left; background-color: #DDDDDD; color: #FF0000 }
.cmtstyle { text-align: left; background-color: #DDDDDD; color: #000000 }
--> </STYLE>
</head>
<body bgcolor=#DDDDDD text=#000000>
<u>Response from HostMonitor's Web Service:</u><br>
<h2 class=errstyle>%WSResponse%</h2>
<hr>
<p class=cmtstyle>
Possible reasons:<br>
- HostMonitor is not running<br>
- RCI interface disabled<br>
- HM Web Service configured incorrectly (wrong TCP Port or IP address)<br>
- network problem<br>
</body>
</html>
Alex