MS CRM 3.0 increase performance



Se si desidera aumentare le prestazioni del MS CRM, soprattutto nelle operazioni di caricamento gestite via codice, occorre porre la proprietà del CrmService "UnsafeAuthenticatedConnectionSharing = true"
ad esempio:

 


CrmService crm = new CrmService();
crm.Credentials = System.Net.CredentialCache.DefaultCredentials;
crm.Url = "http://localhost/MSCRMServices/2006/CrmService.asmx";

account oAccount = new account();
oAccount.name = "accountname";

crm.UnsafeAuthenticatedConnectionSharing = true;
crm.Create(oAccount);


come tra l'altro è dimostrato dai test eseguiti su invokesystems

Ciao
Rob

posted @ mercoledì 31 gennaio 2007 16:12

Print