Identifying groups that require capacity redistribution by using XML

Use the GetWin2KCapacityPending procedure of the Managed Active Directory namespace to return the groups whose memberships need to be redistributed after a call to ExpandWin2KCapacity.

This procedure expects to be called with impersonate="1". The procedure impersonates the caller.

Example of a request that calls the GetWin2KCapacityPending procedure

<request>
  <procedure>
	<execute namespace="Managed Active Directory" 
		procedure="GetWin2KCapacityPending" impersonate="1">
	<executeData>
		<organization>LDAP://ou=Hosting,dc=contoso01,dc=com</organization>
		<capacityType>UserN</capacityType>
	</executeData>
	<after source="executeData" destination="data"  />
	</execute> 
  </procedure>
</request>

Input for GetWin2KCapacityPending

The following input is valid for this request:

Typical response for GetWin2KCapacityPending

This procedure returns a <pending> tag containing the pending groups, or <noPending/> if none are pending.

<response>
  <data>
	<executeData>
	<organization>LDAP://ou=Hosting,dc=contoso01,dc=com</organization>
	<capacityType>UserN</capacityType>
	<pending path="LDAP://CN=AllUsers@Hosting,CN=_Private,
		OU=Hosting,DC=contoso01,DC=com"
		container="LDAP://cn=UserN,CN=MultiGroup,CN=_Private,
		OU=Hosting,DC=contoso01,DC=com" />
	</executeData>
  </data>
</response>

Important