web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

The Caller not authenticated by the service

(0) ShareShare
ReportReport
Posted on by 170

Hi Guyz......By using Wcf Service i am connecting to CRM. But i am stuck with one erro "The Caller not authenticated by the service" Though the user name and password of user is correct still it is giving this error. Can any one help me out.

ClientCredentials cre1 = new ClientCredentials();
              
                cre1.Windows.ClientCredential = new System.Net.NetworkCredential(username, password, Domain);
                Uri serviceUri = new Uri(URL);
                OrganizationServiceProxy proxy = new OrganizationServiceProxy(serviceUri, null, cre1, null);
                proxy.EnableProxyTypes();
                IOrganizationService service = (IOrganizationService)proxy;
                isConnectionEstablished = true;

*This post is locked for comments

I have the same question (0)
  • Suggested answer
    nghieppham Profile Picture
    4,755 on at

    Hi Muthuraman,

    Please check again this user and ensure this user is exists in your CRM system.

    Regards,

  • Mahendar Pal Profile Picture
    45,095 on at

    Try to put your code under try and catch block to catch full fault error details for organization service may it will give you more pointers:

    try{ //use code here } 

    catch(FaultException<OrganizationServiceFault> ex)

    { //check for details error}

    
                          
  • Suggested answer
    Community Member Profile Picture
    on at

    Try below lines of code:

    // Provide your user name and password.

    private String _userName = "username@mydomain.com";
    private String _password = "password";

    // Provide domain name for the On-Premises org.
    private String _domain = "mydomain";

    AuthenticationCredentials authcredentials = new Microsoft.Xrm.Sdk.Client.AuthenticationCredentials();
    authcredentials.ClientCredentials.Windows.ClientCredential =
    new System.Net.NetworkCredential(_userName,
    _password,
    _domain);

    Uri crmuri1 = new Uri("http://adventureworks/Demo1/XRMServices/2011/Organization.svc");

    try {

    using (OrganizationServiceProxy proxy = new OrganizationServiceProxy(crmuri1, null, authcredentials , null))
    {}}

    catch (Exception ex)

    {// output the message}

     

     

    OR


    ClientCredentials clientcred1 = new ClientCredentials();

    clientcred1.UserName.UserName = @"domainname\UserId";
    clientcred1.UserName.Password = @"password";

    Uri crmuri1 = new Uri("http://adventureworks/Demo1/XRMServices/2011/Organization.svc");

    try {

    using (OrganizationServiceProxy proxy = new OrganizationServiceProxy(crmuri1, null, clientcred1, null))
    {}}

    catch (Exception ex)

    {// output the message}

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics CRM (Archived)

#1
SA-08121319-0 Profile Picture

SA-08121319-0 4

#1
Calum MacFarlane Profile Picture

Calum MacFarlane 4

#3
Alex Fun Wei Jie Profile Picture

Alex Fun Wei Jie 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans