question

Upvotes
Accepted
1 2 5 5

what're the best ways to check the rics permissions

Hi, I need to check all CB's rics permissions for all my users. Instead of doing as: ./dacsSubscribeClient -D 1.2.3.4.:8211 -S IDN_SELECTFEED -u wuk -p 10.111.xxx.x/net -a 304 -i INTC.O can I do the following as: ./dacsSubscribeClient -D 1.2.3.4.:8211 -S IDN_SELECTFEED -u wuk -p 10.111.xxx.x/net -a 304 -i .O and then assume that all rics with *.O having the same permission as INTC.O ? Thanks
DACSopen-dacs
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
32.2k 40 11 19

Hello @kage.wu,

dacsSubscribeClient is an example of OpenDACS implementation, it is a simple example that can be incorporated into your implementation, if it addresses your custom requirements, or you may need to do more.

This example uses checkSubscription API call, that requires itemName and not wild card, so one can not pass wild cards.

When designing entitlement handling in an application, we can not assume, as the responsibility for exchange compliance of the application resides with the designer, so every login has to be verified to be entitled, and every item access has to be verified to be entitled.

The alternative approach, to verifying every item access as subscription check "on the spot" against your DACS is a caching users entitlement, and upon item request, verifying the entitlement against the cached. Each item includes a dacslock with one or more PEs (Permission Entity) requirements The cache has to be kept up to date, as the entitlements can change.

To deepen the your understanding of what dacs locks are, it may be useful to review article The Use Case for Decoding DACS Locks and How To Do It. It may also be helpful to review An Introduction to the DACS Entitlement System for OpenDACS Developers, noting that IDN_SELECTFEED is most likely alias Elektron service (currently Refinitiv Real-Time), and is defined in DACS as content-based.

Hope this information helps

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.