Can anybody share the steps needed to setup a web-server separate from the main WinCC OA servers in a DMZ? The main servers are redundant v3.18.
Are you supposed to create a new project on the web-server machine?
Using which template; standard, legacy, remote driver, remote UI .. and then delete all managers except one ctrl manager?
Should/could the multiplexing proxy be on this machine, how?
Does the web-server ctrl manager need any other option settings than "webclient_http.ctl"?
What settings are needed in the config files?
Or should you only setup some kind of reverse-proxy?
I'll trade you for a simple but effective acknowledge all active alarms script:
Code: Select all
main()
{
dyn_dyn_anytype alerts;
string Tag;
dpQuery("SELECT ALERT '_alert_hdl.._act_state', '_alert_hdl.._prior'
FROM '*'
WHERE '_alert_hdl.._act_state' = 1 OR '_alert_hdl.._act_state' = 3 OR '_alert_hdl.._act_state' = 4", alerts);
for(int z=2;z<=dynlen(alerts);z++)
{
Tag = alerts[z][1] +":_alert_hdl.._ack";
dpSet(Tag, 2);
}
}