OnDemand User Group

Support Forums => OD/WEK & JAVA API => Topic started by: hubrch on September 20, 2019, 10:26:35 AM

Title: CMOD Read all priviliges of an Application Group
Post by: hubrch on September 20, 2019, 10:26:35 AM
Hi,

ist it possible to read all priviliges of an Applciation Group (like listed in the tab of admin Client) with arsxml or odwek?
Currently i can only read users an Groups with arsxml seperately:
Code: [Select]
odServer.logon();

XMLCallback cb = new XMLCallback();
Properties p = new Properties();

byte[] bArray = odServer.xmlParse(
"<?xml version='1.0' encoding='UTF-8'?><onDemand xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:noNamespaceSchemaLocation='D:\\anwend\\IBM\\OnDemand\\V9.5\\xml\\ondemand.xsd'><group name='_ALL'/></onDemand>",
ODConstant.OD_ARSXML_ACTION_EXPORT, p, cb)
Title: Re: CMOD Read all priviliges of an Application Group
Post by: Lars Bencze on November 25, 2019, 05:54:26 AM
Here is an arsxml sample you can test and edit for your own purposes. You need not include user permission if you don't need it.

Code: [Select]
<?xml version="1.0" encoding="UTF-8"?>
<onDemand xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:noNamespaceSchemaLocation="C:\IBM\OnDemand\V10.1\xml\ondemand.xsd">

<!-- get application groups -->
  <applicationGroup name="_ALL" >
   <permission user="Admin" />
  </applicationGroup>

</onDemand>