Running, printing, and viewing a document : Working with a resource group : Retrieving properties for all resource groups on a BIRT iHub
 
Retrieving properties for all resource groups on a BIRT iHub
Use GetServerResourceGroupConfiguration to retrieve a list of properties for each resource group on a specific BIRT iHub. The request returns such information as the type of job and the file types each resource group runs, and the maximum Factory processes for each resource group. The Activate element indicates whether BIRT iHub is available to run jobs assigned to the resource group.
<SOAP-ENV:Body>
<GetServerResourceGroupConfiguration>
<ServerName>end00166</ServerName>
</GetServerResourceGroupConfiguration>
</SOAP-ENV:Body>
The following response shows the settings for the default resource groups:
<SOAP-ENV:Body>
<GetServerResourceGroupConfigurationResponse>
<ServerResourceGroupSettingList>
<ServerResourceGroupSetting>
<ResourceGroupName>Default Async</ResourceGroupName>
<Type>Async</Type>
<Activate>true</Activate>
<MaxFactory>2</MaxFactory> <FileTypes>
<String>RPTDESIGN</String>
<String>RPTDOCUMENT</String>
</FileTypes>
</ServerResourceGroupSetting>
<ServerResourceGroupSetting>
<ResourceGroupName>Default Sync</ResourceGroupName>
<Type>Sync</Type>
<Activate>true</Activate>
<MaxFactory>2</MaxFactory>
<FileTypes>
<String>RPTDESIGN</String>
<String>RPTDOCUMENT</String>
</FileTypes>
</ServerResourceGroupSetting>
</ServerResourceGroupSettingList>
</GetServerResourceGroupConfigurationResponse>
</SOAP-ENV:Body>