
HI,
i am try to convert Contract to Opportuinty by clikc on "Convert To Opprotunity" button in custom aspx.page than i am getting Server was unable to process request.
I am using Credentioans:
public static CrmService getCrmService()
{
CrmService crmService = new CrmService();
crmService.Credentials =new NetworkCredential("crmadmin", "P@ssw0rd", "emax");
crmService.Url = string.Format("http://localhost:5555/MSCrmServices/2007/CrmService.asmx", ConfigurationManager.AppSettings["CrmServer"]);
crmService.CrmAuthenticationTokenValue = new CrmAuthenticationToken();
crmService.PreAuthenticate = true;
crmService.CrmAuthenticationTokenValue.OrganizationName = ConfigurationManager.AppSettings["OrgName"];
return crmService;
}
srv = SdkInstance.CreateCrmService("Comstor");
QueryExpression qe = new QueryExpression("ppp_vendor");
qe.ColumnSet.AddColumns(new[] { "new_vendorname" });
qe.AddOrder("new_vendorname", OrderType.Ascending);
RetrieveMultipleRequest re = new RetrieveMultipleRequest();
re.Query = qe;
re.ReturnDynamicEntities = true;
RetrieveMultipleResponse rp = (RetrieveMultipleResponse)srv.Execute(re);==> here getting error is Server was unable to prcoess.
Error Details:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.Services.Protocols.SoapException: Server was unable to process request.
RetrieveMultipleResponse rp = (RetrieveMultipleResponse)srv.Execute(re);//
*This post is locked for comments
I have the same question (0)Hi, Do you have any post update plugin. When an update operation is done, because of the plugin, this type of error occurs. Please check your Plugin.
Hope this help.
Thanks,
Saroj