Hi friends,
Can you provide me a dql script to create an ACL with users and group basic & extended privileges?
Thank you
With Regards
blessing
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
as I already said you will have to use IAPI. The refence manual is no longer published, so grab a copy from a 5.x release for example Content_Server_53_SP1_api_ref.pdf, 6.x features will not be supported
NO because it is not possible to create an ACL with DQL. You will have to use IAPI
Thank you for your imediate response.
I need to create lots of ACLs in our repository. Is there any easyway i can create them with out developing application. just using some scripts.
Thanks
Sample to create ACL
create,c,dm_aclset,c,l,object_nameMyACL1set,c,l,owner_namedm_dbosave,c,lcreate,c,dm_aclset,c,l,object_nameMyACL2set,c,l,owner_namedm_dbosave,c,l
Thank you.
Can i run this in the DA>>DQL editor? Further, how i can assign basic and extended permission for the users and groups?
Please help me
Thanks & Regards
You need to go to DA > API editor.
see the below example
create,c,dm_aclset,c,l,object_nameyour_acl_nameset,c,l,owner_namedm_dbogrant,c,l,dm_world,1 // Granting Permissionrevoke,c,l,dm_world,execute_proc,change_permit // Revoking permissiongrant,c,l,your_admin,7,execute_proc,change_permit // granting permission with extended permissionssave,c,l
Check this link which may help you...
http://www.dctmcontent.com/Lists/DQL/Category%20View.aspx
Thank you so much.
You couls also use a tool like dqMan to easily create and execute API scripts.