
Hello
While trying to extract additional data from CRM for each account in a list the following fails throwing an exception with the message "One or more errors occurred"
protected HttpResponseMessage response = null;
protected HttpClient client = null;
response = client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead).Result;
at the moment of the failure the url looks like
please note that I explicitly changed the real domain by "domain" and additional fields where on the list.
The returned message does not tell me much about the nature of the error.
Thank you in advance for your support.
I modified the code to create only one "client" object while running the application and the error disappeared, before multiple of them were creating during the download process. That solved my problem.