我在使用C#向Dynamics 365普通用户进行身份验证时遇到错误

时间:2018-12-03 12:07:13

标签: c# asp.net-web-api dynamics-crm dynamics-365

专家您好,                我被困在“使用普通用户对Dynamics 365进行身份验证”。我用C#写了一个代码,用于对Dynamics 365进行身份验证。该代码对于拥有该组织管理员的用户可以正常使用,但是当我在该组织中创建用户并使用c#代码进行注册时,它为我提供了“对象引用未设置为对象的实例。” “ IOrganization服务”错误。下面是我的用于验证用户身份的C#代码。

public AuthenticateUser authenticateUserByFetchXML(string URL, string username, string password)
    {
        try
        {
            // model class
            AuthenticateUser user = new AuthenticateUser();
            EntityReference resultRef = new EntityReference();

            IOrganizationService service;
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

            //put input into service
            CrmServiceClient GetCrmServiceClient = new CrmServiceClient(@"AuthType=Office365;Username='" + username + "'; Password='" + password + "';Url='" + URL + "'");

            //get organization web client by Iorganization service
            service = (IOrganizationService)GetCrmServiceClient.OrganizationWebProxyClient != null ? (IOrganizationService)GetCrmServiceClient.OrganizationWebProxyClient : (IOrganizationService)GetCrmServiceClient.OrganizationServiceProxy;

            //Get fetchXML for system user
              string fetchuser = "<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>" +
                          "<entity name='systemuser'>" +
                            "<attribute name='fullname' />" +
                            "<attribute name='businessunitid' />" +
                            "<attribute name='title' />" +
                            "<attribute name='address1_telephone1' />" +
                            "<attribute name='positionid' />" +
                            "<attribute name='systemuserid' />" +
                            "<order attribute='fullname' descending='false' />" +
                          "</entity>" +
                        "</fetch>";
            EntityCollection users = new EntityCollection();
            users = service.RetrieveMultiple(new FetchExpression(fetchuser));

            if (users.Entities.Count > 0)
            {

                Guid gId = users.Entities[0].Id;
                 user.Id = gId;              
                return user;
            }
            return user;

        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

我可以使用此代码编写一些额外的代码来向普通用户进行身份验证。

1 个答案:

答案 0 :(得分:0)

创建用户时,它没有安全角色,并且不能执行任何操作(包括登录)。在这种情况下会看到错误消息。

确保新用户至少具有一个安全角色。