my connection to the API times out. I am using a Java program.

LarryT
LarryT Contributor

I am trying to access the URL https://hosted.datascopeapi.reuters.com/RestApi/v1/Authentication/RequestToken from my java program using jav.net library, java version 1.7. I am not using Visual Studio. My request always times out. I do not get an error message. Is my ID being blocked by your firewall? Is this a problem with the SSL connection?

Best Answer

  • Ripley79
    Ripley79 Contributor
    Answer ✓

    The REST API load balancers support only TLS 1.0. This will be addressed later in 2015. Until then, make sure that you are pointing to TLS 1. To override Java's default settings, add a command line argument, such as:

    Dhttps.protocols=TLSv1

Answers