When I launch the "Dss.Api.Examples.Exe" and log in with my credentials, I get the error "Problem...

Options

... creating Webproxys

I want to launch the RESTAPI example application as stated in "https://developers.refinitiv.com/en/api-catalog/refinitiv-tick-history/refinitiv-tick-history-rth-rest-api/quick-start". But I have a problem with the configuration of my proxies.

When I launch the "Dss.Api.Examples.Exe" and log in with my credentials, I get the error "Problem creating Webproxys with the configuration paragraph system.net/defaultProxy". Can you please tell me in which file do I have to add my proxies to be able to launch the app?

Best Answer

  • zoya faberov
    zoya faberov ✭✭✭✭✭
    Answer ✓

    Hello @Beera.Rajesh,

    Please see this previous discussion thread for how to pass the proxy information into C# examples code.

    The client should consult with their network group/admin, to obtain the proxy information that they should be using to take them through their organization's firewall.

Answers

  • I have suggested the client with below, however it does not help:

    You can force a specific proxy by adding this to the app.config file (using your proxy values of course):

    <configuration>
    ...
    <system.net>
    <defaultProxy>
    <proxy usesystemdefault="True" proxyaddress="http://127.0.0.1:8888&quot; bypassonlocal="True" />
    </defaultProxy>
    </system.net>
    </configuration>