Hey
I have an application that I am using the Xrm generated classes (CRM 4.0) and I am having a problem getting the right account to do CRUD operations.
I am authenticating our users against AD then I validate their windows account against CRM (not every AD user has CRM access). For this I am using the Discovery service as well as the CrmService. However, all CRUD operation use the Xrm generate classes and
context with LINQ. The problem is that all data operations appear to be created and modified by the service account I used in the CrmSvcUtils utilities to generate the classes. I had this account on my connection; I have since removed it and now my connection
string uses integrated security (connectionString="Authentication Type=Integrated; Server=http://[server]/[Orgname];"). My question: why is this happening? My even better question: how do I fix it to use the account of the authenticated user for
CRUD operations?
Hector