Hello,
Since we changed the M2Web proxy mechanisms, the URL used are different.
If your viewON project uses a javascript to open new Tab towards some LAN devices web interface through M2Web, here is the script to use :
where IPLAN is the IP of the LAN device.
Simon
Since we changed the M2Web proxy mechanisms, the URL used are different.
If your viewON project uses a javascript to open new Tab towards some LAN devices web interface through M2Web, here is the script to use :
Code:
var s=window.location.href;
if(s.indexOf('m2web.talk2m.com')==-1){
win = window.open('http://'+IP);
win.focus();
}
else{
win = window.open("https://" + window.location.host.split("-")[1] + "/hashid/" + window.location.host.split(".")[0] + '/proxy/' + IPLAN);
win.focus();
}where IPLAN is the IP of the LAN device.
Simon


