question

Upvotes
Accepted
1 0 1 4

Refinitiv Data Library .Net do not work under linux

If I run the following code in Windows

Log.Level = NLog.LogLevel.Debug;
Log.Output = (loginfo, parms) => Console.WriteLine($"Application: {loginfo.Level} - {loginfo.FormattedMessage}");
var response = await Search.Definition().View(Search.LightView.SearchAllLight).Query("apple").Select("RIC")
                .Top(10).GetDataAsync(session);

Everything work fine and debug message in console is

Application: Debug - Preparing Endpoint POST request https://api.refinitiv.com/discovery/searchlight/v1/ with Content:
"{
  "View": "SearchAllLight",
  "Query": "apple",
  "Select": "RIC",
  "Top": 10
}"


But if the code is running in a Docker container on Linux (WSL or bare metal server) the code will fail with an error

System.NotSupportedException: 'The 'file' scheme is not supported.'
   at System.Net.Http.HttpClient.<SendAsync>g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken)
   at Refinitiv.Data.Core.PlatformSessionCore.HttpRequestAsync(Uri uri, HttpMethod method, HttpContent content, IDictionary`2 header, CancellationToken cancellationToken)
   at Refinitiv.Data.Delivery.Request.EndpointDefinition.GetDataAsync(ISession session, Action`3 cb, CancellationToken cancellationToken)
   at Refinitiv.Data.Content.SearchService.SearchDefinition.GetDataAsync(ISession session, Action`3 cb, CancellationToken cancellationToken)
   at RefinitivBug.Program.Main(String[] args) in E:\Work\RefinitivBug\RefinitivBug\Program.cs:line 29

And debug message in console is

Application: Debug - Preparing Endpoint POST request file:///discovery/searchlight/v1/ with Content:
"{
  "View": "SearchAllLight",
  "Query": "apple",
  "Select": "RIC",
  "Top": 10
}"


Is there a workaround or quick fix for this?

#product.netlinuxdocker
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

<private comment>

please be informed that I put the URL to your sample project in a private comment here regarding privacy, and security concerns.

A sample project can be found there https://1drv.ms/u/s!AomyH7PLsO60hit0qri48cz3V0jc?e=XPHmoA

Thanks,
AHS

<AHS>

the user reached out to Nick via his email directly and figured out how to resolve other endpoints.

Upvote
Accepted
17.1k 80 39 63

Hi @bmirzai

I recall this same issue reported by another client last year related to the root part of the URL and how Linux evaluates the structure differently on Windows. The .Net call seems to convert the request to look like: file:///data/...

This should be resolved in the next release of the library coming out later in June.

There is a workaround that you can try. I've attached a configuration file that overrides this specific URL. You can place this config file (refinitiv-data.config.json - you will need to rename the file to remove the .txt extension) within the root directory of your project and ensure after your build, this file will be copied to your runtime (bin) dir which is one of the places the lib will search for it.

Thanks.


icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
1 0 1 4

Hi @nick.zincone

Thanks for your help. Your workaround works, but can you provide the same config for the next calls too? Or maybe an example of the full config?

Chain.Definition(chain).GetData()
Pricing.Definition(rics).Fields(fields).GetDataAsync()
Lookup.Definition().View(Search.LightView.SearchAllLight).Scope(scope).Terms(terms)         .Select(fields).GetDataAsync()
Summaries.Definition().Universe(ric).Interval(interval).Start(from).End(to).Fields(fields)                    .GetDataAsync()


icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi @nick.zincone ,

Could you please take a look on the following question from the client please?

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.