Efried
Active Member
Sadly, there is no easy way to monitor all the WCs on one page without coding, but if they are not password protected, you could use a html page, using iFrame.
Formattting, however is tricky, any hints?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table>
<tr >
<td >
<div>T1=</div></td><td>
<iframe src="http://192.168.0.13/gett1.cgi" frameborder="0" seamless style="text-
align: left;" width="50" height="22"></iframe>
</td>
</tr>
<tr>
<td >
<div >T2=</div></td><td >
<iframe src="http://192.168.0.14/gett1.cgi" frameborder="0" seamless style="text-
align: left;" width="50" height="25"></iframe>
</td>
</tr>
</table>
</body>
</html>
Once you authenticate, it will work, even having password protected WCs. The remaining questions are:
- is it possible having a WYSIWYG drawing app, positioning the readings in the figure
- would it be feasible having multi domain data queries using javascript, extracting values from the WC response?
So far I learned that iFrame is the only way and javascript prevents from addressing other IPs for security reasons.
Formattting, however is tricky, any hints?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table>
<tr >
<td >
<div>T1=</div></td><td>
<iframe src="http://192.168.0.13/gett1.cgi" frameborder="0" seamless style="text-
align: left;" width="50" height="22"></iframe>
</td>
</tr>
<tr>
<td >
<div >T2=</div></td><td >
<iframe src="http://192.168.0.14/gett1.cgi" frameborder="0" seamless style="text-
align: left;" width="50" height="25"></iframe>
</td>
</tr>
</table>
</body>
</html>
Once you authenticate, it will work, even having password protected WCs. The remaining questions are:
- is it possible having a WYSIWYG drawing app, positioning the readings in the figure
- would it be feasible having multi domain data queries using javascript, extracting values from the WC response?
So far I learned that iFrame is the only way and javascript prevents from addressing other IPs for security reasons.