Tagged Questions

xRM is an alternative term used to market Microsoft Dynamics CRM. Generally, unless the question deals with those marketing differences, questions should not be tagged here.

learn more… | top users | synonyms

1
vote
0answers
80 views

CRM 2011 generated code using ICodeWriterFilterService fails to build

Using the sample code at http://erikpool.blogspot.com/2011/03/filtering-generated-entities-with.html I have altered this so that GenerateEntity and GenerateOptionSet to have the code: return ...
1
vote
2answers
617 views

CrmDataContext.GetEntities query - ERROR: 0x80040204 - Invalid user auth

I created domain user 'jsmith' in Active Directory and i've added that domain account as a user in Dynamics CRM. My goal here is to execute code with a service account that is in the PrivUserGroup ...
1
vote
2answers
339 views

Connection/Object pool for OrganizationServiceProxy in XRM/Dynamics CRM 2011

I am writing a MVC 3 WebApp which uses XRM 2011 using Early Bound. This is an internet-facing application hosted on separate machine than Dynamics IIS. This of course makes OrganizationServiceProxy ...
1
vote
3answers
536 views

Differences between Microsoft CRM and xRM

I am browsing the new xrm.com page and I find it lacks some concrete information of what does it means. Could you please explain what are the main differences between Microsoft CRM and xRM? What ...
0
votes
1answer
70 views

FetchExpression results appear to be cached, how do I prevent this?

I am using a FetchExpression against a RetrieveMultiple operation on a CrmOrganizationServiceContext within a windows service to fetch and process items out of a queue. The first time this runs this ...
0
votes
1answer
118 views

How to disable CRM 2011 Xrm caching?

I have problem with crm 2011 caching. I don't need it, but I don't know how to disable it. First I generate this: CrmSvcUtil.exe ...
0
votes
0answers
35 views

Advanced Developer Extensions for CRM 4.0: Closing the underlying TCP connection to CrmService

How do you ensure the the underlying TCP connection gets closed when performing CrmService operation via the CrmDataContext provided by the Microsoft.Xrm.Client dll? Neither CrmDataContext nor ...
0
votes
1answer
74 views

How to Share on CRM2011 with XRM services?

I'm new to CRM 2011. How to Share (create share record contact between team) on CRM2011 with XRM services? I can't find on SDK and I don't know to where shared record on MSCRM db.
0
votes
1answer
109 views

Dynamics CRM: null value and GetPropertyValue<T>()

Let's say I have the code below: public class ContactDTO { public string Email {get; set;} public decimal? ExchangeRate {get; set;} } ...... var contacts = crm.GetEntities("contact") var ...
0
votes
1answer
806 views

Error Updating Dynamic Entity When Setting Property Value of Type PickList

I've added a custom attribute ("custom_contacttype") to the Contact entity. This attribute is of type picklist which is comprised of seven values. I'm developing using Advanced Developer Extensions ...
0
votes
0answers
181 views

Dynamics 2011 XRM & web services framework - ServiceStack/WCF/OpenRasta

I am trying to use ServiceStack to publish XRM entities as a web service but getting errors possibly due to cyclic/circular dependencies. Has anyone tried it successfully/unsuccessfully? I also tried ...
0
votes
1answer
137 views

Best practice for populating a model object

Suppose I have few model classes like Person.cs, Car.cs, Manufacturer.cs each of which has 30-40 properties of varying datatypes. These models have to be populated using a Linq based framework called ...