Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsoft Dynamics CRM SDK CRMServiceClient connection string cache bug

Caching behavior of the last Dynamics SDK is driving me crazy.

First, if you want to use CrmServiceClient to access different environments you have to use the parameter RequireNewInstance=True; in the connection string. If not, every instance of CrmServiceClient will use the same connection, even if you create and dispose instances to different environments.

Now, even if you use the RequireNewInstance=True; in the connection string I found that cache still occurs in some scenarios.

var client1 = new CrmServiceClient("RequireNewInstance=True;
Url=https://myCompany.crm.dynamics.com;
[email protected]; Password=myPassowrd;
AuthType=Office365");

//Now, client 2 points to a url that doesn’t exists:
var client2 = new CrmServiceClient("RequireNewInstance=True; 
Url=https://xxx.crm.dynamics.com; [email protected]; 
Password=myPassowrd; AuthType=Office365");

The client2 keeps using the first connection string, so you cannot determine if the new connection string is correct.

Any ideas how to test Dynamics Crm connections strings correctly in my asp.net application?

like image 609
Marcos Avatar asked Jan 27 '17 14:01

Marcos


People also ask

What is CrmServiceClient?

CrmServiceClient(OrganizationServiceProxy) Uses the Organization service proxy provided by the user. CrmServiceClient(OrganizationWebProxyClient) Uses the Organization Web proxy Client provided by the user. CrmServiceClient(String)

What is TokenCacheStorePath?

TokenCacheStorePath: Fully qualified file name to store tokens for reuse. Optional when you use the OAuth authentication type. LoginPrompt: Allow the OAuth system to present a UI for login information. Default value is Auto.

How do I enable tracing in MS CRM?

15 Questions to Identify the Gaps in Your CRMGo to Settings/Administration/System Settings. Click on the Customization tab. Under plugin and custom workflow activity tracing, ensure the setting for “Enable logging to plug-in trace log is set to “All”. Once you selected that option, Click Ok.

How do I install Microsoft XRM tooling connector?

Connector namespace. To get the NuGet package: In your project, right click on the References node and select Manage NuGet Packages. Under Browse search for "xrm tooling". Install Microsoft.


2 Answers

Late reply, but the behavior you're seeing is because when you're specifying an erroneous URL the discovery service is used to ascertain which instance to connect to. To prevent this specify SkipDiscovery=True in your connection string:

var connectionString2 = @"AuthType=Office365;Url=https://FAKE.crm.dynamics.com;Username=USERNAME;Password=PASSWORD;RequireNewInstance=True;SkipDiscovery=True;";

Edit: SkipDiscovery is true by default starting with 9.0.7, kudos to @mwardm

like image 69
Marius Agur Avatar answered Sep 18 '22 16:09

Marius Agur


I think I found the problem. It seems to only happens on Dynamics 365 online trials, that was the reason we were getting inconsistent results depending on the environment.

Apparently, the url doesn't need to be completely valid to establish a connection to a CRM online trial environment, as long as the credentials are valid and the url structure is kept.

Let's consider the following example:

var client1 = new CrmServiceClient("RequireNewInstance=True; 
Url=https://fake.crm.dynamics.com; 
[email protected]; Password=myPassowrd; 
AuthType=Office365");

In this case I can substitute the "fake" part of the url with whatever I want, but still execute requests correctly using the CrmServiceClient service.

If I try to do this with another environment (e.g. 2015, on premise, not-trial crm online, etc.), the IsReady property of the CrmServiceClient would return false and I would get an error in the LastCrmError property.

Very weird behavior, and difficult to pinpoint. Now that I think I understand the inconsistent behavior I know that finally it will not affect our clients, so I will mark this response as the answer even if I still do not know why we have different behavior between a trial and a normal environment..

like image 40
Marcos Avatar answered Sep 21 '22 16:09

Marcos