Hello everyone,
I would like to restrict the datapoints that users can see when loging in through an OPC DA Client, is there a way to do that?
There is no an attribute _online in _auth config.
I am using WinCC OA V3.15.
Read permission restriction on OPC DA Server
- dbindernagel
- Posts:161
- Joined: Mon Feb 23, 2015 1:34 pm
Re: Read permission restriction on OPC DA Server
Never used this myself but you can find more info on this in the help in the following chapter:
Drivers\\OPC Data Access\\OPC server\\Accessing WinCC OA data
In general there are two datapoints group "OPCRead" and "OPCWrite".
Datapoints that are not inside these groups should not be visible via an OPC client (if I read the help correctly).
Drivers\\OPC Data Access\\OPC server\\Accessing WinCC OA data
In general there are two datapoints group "OPCRead" and "OPCWrite".
Datapoints that are not inside these groups should not be visible via an OPC client (if I read the help correctly).
- akim
- Posts:42
- Joined: Wed Sep 16, 2015 10:48 am
Re: Read permission restriction on OPC DA Server
Yes that's right. But I need to separate the DPs by clients(users). For example, create an OPCRead1 for client1 and OPCRead2 for client2.
- leoknipp
- Posts:2928
- Joined: Tue Aug 24, 2010 7:28 pm
Re: Read permission restriction on OPC DA Server
The OPC DA server can only use 2 dp groups, the groups which have the alias "OPCRead" and "OPCWrite" are used.
There is no possibility to use separate groups for every OPC client.
Also when using a CNS view you cannot define which client shall use which view. The address space is available for all clients.
Best Regards
Leopold Knipp
Senior Support Specialist
There is no possibility to use separate groups for every OPC client.
Also when using a CNS view you cannot define which client shall use which view. The address space is available for all clients.
Best Regards
Leopold Knipp
Senior Support Specialist
- akim
- Posts:42
- Joined: Wed Sep 16, 2015 10:48 am
Re: Read permission restriction on OPC DA Server
Ok, Thank you