Hi friends,
I am trying to develop a program using CRM web API. Everything goes find except the http request suddenly has error as below
Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
After testing the URL through my browser, I found it worked well, so it seems the problem may not on the server side. My request is quite simple like as below, which is followed the msdn crm web api tutorial.
request
{Method: GET, RequestUri: 'organization.crm5.dynamics.com/.../some detail filter', Version: 1.1, Content: <null>, Headers:
{
Prefer: odata.maxpagesize=10
Prefer: odata.include-annotations=OData.Community.Display.V1.FormattedValue
OData-MaxVersion: 4.0
OData-Version: 4.0
Accept: application/json
}}
My concern is the request worked well in the past but crashed these two days. Is any update from Microsoft affect the api parameters like version? Any hints and suggestion is welcomed. Thanks a lot!