pkr
pkr

Reputation: 1761

Find out what's hitting the CRM Organization.svc

Saving a record in CRM is quick, but saving the same record through the Organization service is taking a lot longer. Is there a way to see logs for the Organization.svc, or see what requests are being made on it? There are other applications that may be using the Organization.svc.

Upvotes: 0

Views: 100

Answers (2)

Daryl
Daryl

Reputation: 18895

Any chance you're performing multiple connections to CRM from your app? By default, .net limits the number of concurrent connections you can have open at once. If you're running a website, and 10 people make a request at once, the first 1 or 2 (can't remember the default) will perform their request, and the rest will queue up.

Also if you're not using CRM online, you can enable Server Side tracing: CRM 2011 Diagnostic Tool

Upvotes: 1

Andrew Butenko
Andrew Butenko

Reputation: 5446

I believe that the hardest part for your application is building of a service proxy. So my question is - do you recreate and reopen connection to CRM Endpoint everytim you perform operation? In case yes - I would suggest store organizationservice proxy somewhere to use it in code.

Upvotes: 1

Related Questions