OnDemand Users Group

Support Forums => ODWEK, Java and REST APIs => Topic started by: hubrch on September 20, 2019, 05:26:35 PM

Title: CMOD Read all priviliges of an Application Group
Post by: hubrch on September 20, 2019, 05:26:35 PM
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:

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, 12:54:26 PM
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.

<?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>