Modifying a public folder by using XML

Use the ModifyFolder procedure of the Managed Exchange namespace to modify a public folder for an Exchange 2000 Server organization.

This procedure performs explicit internal permissions testing. Only members of admins@organization and domain administrators can call this procedure.

Example of a request that calls the ModifyFolder procedure

<request>
  <procedure>
	<execute namespace="Managed Exchange" procedure="ModifyFolder">
	<executeData>
		<owningOrg>LDAP://ou=Reseller,ou=Hosting,dc=contoso,dc=com</owningOrg>
		<folderPath>contosoOrg</folderPath>
		<name>f1</name>
		<MaxItemSize>5</MaxItemSize>
		<group permissions="None">
		LDAP://cn=allusers@contosoOrg,ou=contosoOrg,cn=Hosting,dn=contoso,dn=com
		</group>
	</executeData>
	</execute>
  </procedure>
</request>

Input for ModifyFolder

The following input is valid for this request:

Typical response for ModifyFolder

The response to this procedure does not contain significant data.

Important