PublishAllXml Message (CrmService)
![]() |
[Applies to: Microsoft Dynamics CRM 4.0]
Find the latest SDK documentation: CRM 2015 SDK
| Works for all deployment types | Works online only |
Publish all customizations.
The relevant classes are specified in the following table.
| Type | Class |
| Request | PublishAllXmlRequest |
| Response | PublishAllXmlResponse |
Remarks
To use this message, pass an instance of the PublishAllXmlRequest class as the request parameter in the Execute method.
For a list of required privileges, see PublishAllXml Privileges.
Example
The following code example shows how to use the PublishAllXml message.
[C#]
// Set up the CRM service.
CrmAuthenticationToken token = new CrmAuthenticationToken();
// You can use enums.cs from the SDK\Helpers folder to get the enumeration for Active Directory authentication.
token.AuthenticationType = 0;
token.OrganizationName = "AdventureWorksCycle";
CrmService service = new CrmService();
service.Url = "http://<servername>:<port>/mscrmservices/2007/crmservice.asmx";
service.CrmAuthenticationTokenValue = token;
service.Credentials = System.Net.CredentialCache.DefaultCredentials;
// Create the request.
PublishAllXmlRequest request = new PublishAllXmlRequest();
// Execute the request.
PublishAllXmlResponse response = (PublishAllXmlResponse)service.Execute(request);
}
[Visual Basic .NET]
' Set up the CRM service.
Dim token As New CrmAuthenticationToken()
' You can use enums.cs from the SDK\Helpers folder to get the enumeration for Active Directory authentication.
token.AuthenticationType = 0
token.OrganizationName = "AdventureWorksCycle";
Dim service As New CrmService()
service.Url = "http://<servername>:<port>/mscrmservices/2007/crmservice.asmx";
service.CrmAuthenticationTokenValue = token;
service.Credentials = System.Net.CredentialCache.DefaultCredentials
' Create the request.
Dim request As New PublishAllXmlRequest()
' Execute the request.
Dim response As PublishAllXmlResponse = CType(service.Execute(request), PublishAllXmlResponse)
See Also
Concepts
Reference
.gif)