Creating Exchange services by using XML

Use the CreateExchangeServices procedure of the Managed Exchange namespace to activate Exchange services for an organization. This procedure creates a Simple Mail Transfer Protocol (SMTP) domain for the organization.

This procedure performs explicit internal permissions testing.

Example of a request that calls the CreateExchangeServices procedure

<request>
  <procedure>
	<execute namespace="Managed Exchange" procedure="CreateExchangeServices">
	<executeData>
		<owner>LDAP://OU=Reseller1,OU=Hosting,DC=contoso,DC=com
		</owner>
		<SMTPDomain>contosoOrg.com</SMTPDomain>
		<publicStore>
		<megabytes>100</megabytes>
		</publicStore>
		<mailStore>
		<megabytes>200</megabytes>
		<shared>1</shared>
		</mailStore>
		<policyName>contosoOrg</policyName>
	</executeData>
	</execute>
  </procedure>
</request>

Input for CreateExchangeServices

The following input is valid for this request:

Typical response for CreateExchangeServices

The response to this procedure does not contain significant data.

Important