Search found 47 matches

Search

by fandersen
Tue Apr 23, 2024 1:11 pm
Forum: Off-Topic
Topic: Community search is broken at winccoa.com
Replies: 1
Views: 115

Community search is broken at winccoa.com

Hi ETM, when I go to winccoa.com, login, select "Community" from the menu, type something into "Search for..." like "User" and hit return (keeping "Whole Site"), I get the following error message: "503 Bad Request (400)" Please fix ;) BR Florian
by fandersen
Tue Oct 17, 2023 10:15 am
Forum: HowTos
Topic: Disable "Store Password" for Gedi Login?
Replies: 5
Views: 4051

Re: Disable "Store Password" for Gedi Login?

Hi gschijndel! yes, that works. Unfortunately, it is not very practicle as the parameter requires an absolute path to the CSS file, and anyone could still start the Gedi without this option. Thank you anyway! :) Unfortunately the stylesheet is not yet active by default, so the -stylesheet option has...
by fandersen
Tue Oct 03, 2023 6:40 pm
Forum: HowTos
Topic: Disable "Store Password" for Gedi Login?
Replies: 5
Views: 4051

Disable "Store Password" for Gedi Login?

Hi together,

the login panel of the Gedi (with enabled SSA) has a checkbox "Store Password".

Due to cyber security, the customer would like to have this option disabled.

Is this somehow possible?

I have tried to modify all the available login panels, but wasn't successful.


BR/Florian
by fandersen
Mon Aug 07, 2023 9:52 am
Forum: Bugs / Problems
Topic: Cannot define the Error Weight for MxProxy
Replies: 5
Views: 2977

Re: Cannot define the Error Weight for MxProxy

OK, thanks everyone! It's clear now. ;)
by fandersen
Fri Aug 04, 2023 11:42 am
Forum: Bugs / Problems
Topic: Cannot define the Error Weight for MxProxy
Replies: 5
Views: 2977

Re: Cannot define the Error Weight for MxProxy

Maybe it makes no sense configure the error weight as the server-to-server communication won't work without MxProxy anyway.

Any thoughts?
by fandersen
Fri Aug 04, 2023 10:53 am
Forum: Bugs / Problems
Topic: Cannot define the Error Weight for MxProxy
Replies: 5
Views: 2977

Cannot define the Error Weight for MxProxy

Hi everyone, I want to define the error weight for the MxProxy but I cannot see the manager type in the combo box. We use: WinCC OA 3.17 P026 I get only the following options: ControlManager DeviceManager DistManager Driver RedundancyManager Archive ApiManager AsciiManager DDEManager Userinterface O...
by fandersen
Fri Mar 17, 2023 4:15 pm
Forum: HowTos
Topic: Configure Firewall of a WinCC OA server with MxProxy enabled
Replies: 2
Views: 2564

Configure Firewall of a WinCC OA server with MxProxy enabled

Hi together, on our WinCC OA servers I want to configure the firewall, the MxProxy is enabled (default port 5678). In addition to opening port 5678 (TCP) on the firewall, do I also need to open port 5678 for UDP? I can imagine that I might need to do that for having the alive mechanism (TCP and UDP)...
by fandersen
Thu Jan 26, 2023 11:19 am
Forum: Bugs / Problems
Topic: OPC UA server rejects client certificate after update
Replies: 1
Views: 2744

OPC UA server rejects client certificate after update

Hi together, we have noticed that a 3rd party application cannot connect to the OPC UA server anymore after updating from WinCC OA 3.17 P011 to P025. In the trace logs of the OPC stack we have found the following message: "UaServer::secureChannelCertificateError - rejected certificate because E...
by fandersen
Thu Jan 26, 2023 8:56 am
Forum: HowTos
Topic: Passing a mapping by reference in CTRL [SOLVED]
Replies: 4
Views: 3622

Re: Passing a mapping by reference in CTRL

You could use a shared pointer to pass the variable to the thread Yes, shared pointers work! Thank you! mapping systems; main() { systems["Test"] = new mapping(); systems["Test"]["value"] = 999; shared_ptr<mapping> ptr = systems["Test"]; startThread("Che...