Microsoft Dynamics 365, имя организации, исключение - PullRequest
0 голосов
/ 16 мая 2018

Я пытаюсь получить список организаций с сервера, используя этот код:

var clientCredentials = new ClientCredentials();
clientCredentials.Windows.ClientCredential.Domain = "domain";
clientCredentials.Windows.ClientCredential.UserName = "user";
clientCredentials.Windows.ClientCredential.Password = "password";
var discoveryUri = new Uri(String.Format("http://{0}/XRMServices/2011/Discovery.svc", "10.20.30.40"));
var discoveryServiceProxy = new DiscoveryServiceProxy(discoveryUri, null, clientCredentials, null);
discoveryServiceProxy.Authenticate();
var retrieveOrganizationResponse = (RetrieveOrganizationsResponse)discoveryServiceProxy.Execute(new RetrieveOrganizationRequest());

но в последней строке выдает эту ошибку:

OrganizationName

Тип исключения такой:

http://schemas.microsoft.com/xrm/2011/Contracts/Discovery/IDiscoveryService/ExecuteDiscoveryServiceFaultFault

Пожалуйста, помогите с этой проблемой.

1 Ответ

0 голосов
/ 17 мая 2018

Я думаю, это может быть связано с тем, как вы формируете new RetrieveOrganizationRequest(), в частности, что вы не предоставляете никаких аргументов.

Здесь есть пример здесь , которыйпоказано, как получить список организаций из службы обнаружения.

// Retrieve details about all organizations discoverable via the
// Discovery service.
RetrieveOrganizationsRequest orgsRequest =
    new RetrieveOrganizationsRequest()
    {
        AccessType = EndpointAccessType.Default,
        Release = OrganizationRelease.Current
    };
RetrieveOrganizationsResponse organizations =
    (RetrieveOrganizationsResponse)service.Execute(orgsRequest);

// Print each organization's friendly name, unique name and URLs
// for each of its endpoints.
Console.WriteLine();
Console.WriteLine("Retrieving details of each organization:");
foreach (OrganizationDetail organization in organizations.Details)
{
    Console.WriteLine("Organization Name: {0}", organization.FriendlyName);
    Console.WriteLine("Unique Name: {0}", organization.UniqueName);
    Console.WriteLine("Endpoints:");
    foreach (var endpoint in organization.Endpoints)
    {
        Console.WriteLine("  Name: {0}", endpoint.Key);
        Console.WriteLine("  URL: {0}", endpoint.Value);
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...