Hi,
Brand new to Refinitiv!
Short version background: I am not allowed to add the DSS dll library to my project (see why in longer version below), so I will have to code everything using Microsoft tools only.
I have used the old-fashioned Microsoft tools (System.Net.WebRequest, System.Net.WebResponse and System.IO.Steam) to create a console app which can request data from Refinitiv. When requesting few data, it works as expected. But when requesting more data, I do not get my data.I know that I should get a status 200 + data (which I do) when data is returned before a timeout, but I should also get a status 202 and a header with a "location" where I can re-request data, until data is available, if data is not available "instantly". Unfortunately when I get a timeout I get a Status 0 and the header is empty.
So how do I proceed from here?
Longer version: My app should be a part of a SSIS-package. And in SSIS you cannot reference external dll's (unless you can add the dll to the GAC, which is not an option in my case). This is why I am stuck with MS dll's only.