Running, printing, and viewing a document : Working with a resource group : Getting a list of resource groups
 
Getting a list of resource groups
To retrieve a list of resource groups available to BIRT iHub, use GetResourceGroupList, as shown in the following example:
<SOAP-ENV:Body>
<GetResourceGroupList/>
</SOAP-ENV:Body>
The preceding request returns two lists, one for asynchronous resource groups and one for synchronous resource groups. Each list contains properties of each resource group, including the name, type, description, whether the resource group is enabled, and whether it is assigned to an Encyclopedia volume.
<SOAP-ENV:Body>
<GetResourceGroupListResponse>
<AsyncResourceGroupList>
<ResourceGroup>
<Name>Default Async</Name>
<Disabled>false</Disabled>
<Description>
Default resource group for asynchronous jobs
</Description>
<Type>Async</Type>
<MinPriority>0</MinPriority>
<MaxPriority>1000</MaxPriority>
</ResourceGroup>
</AsyncResourceGroupList>
<SyncResourceGroupList>
<ResourceGroup>
<Name>Default Sync</Name>
<Description>Default resource group for synchronous
jobs</Description>
<Type>Sync</Type>
<Reserved>false</Reserved>
</ResourceGroup>
</SyncResourceGroupList>
</GetResourceGroupListResponse>
</SOAP-ENV:Body>