I am trying to get a file from a URL using cfhttp but it seems that the provider is sending the data in chunks.
<cfhttp
method="get"
url="https://www.test.com/somefile.xml">
</cfhttp>
The response header is having Transfer-Encoding as chunked and is missing Content-Length.
Also, the statusCode is 200 Ok but the FileContent is showing "Connection Failure".
Any suggestions?