PublishAllXmlRequest publishRequest = new PublishAllXmlRequest();
PublishAllXmlResponse publishResponse = (PublishAllXmlResponse)Service.IOrganizationService.Execute(publishRequest);
When this Message is used to Publish all content, if I try import a solution using:
ImportSolutionRequest ISR = new ImportSolutionRequest();
ISR.CustomizationFile = File.ReadAllBytes(file);
ImportSolutionResponse result = (ImportSolutionResponse)Service.IOrganizationService.Execute(ISR);
This always return a System.ServiceModel.QuotaExceededException saying that "The size necessary to buffer the XML content exceeded the buffer quota."
I tried to wait 5 - 10 - 20 min and resend the execute of this message, but always the same exception appear. And in dynamics CRM it's possible to import the solution normally.
*This post is locked for comments
I have the same question (0)