I want to access a data control service from two different UI consumer apps. I am creating the data_control_h
handle with data control provider id in one app. ex: data_control_sql_create(&(ad->provider_h));
. I am making operation on it. Now I want to access this provider provider_h
handle from the other UI app. How can I do this?
And if I add a service app as a consumer app along with those two UI apps, how can I access the data control provider on that service app without closing the UI app?
If I create two different data control handle with same provider id at the same time, will it work? Is there an easy or good way?