cancel
Showing results for 
Search instead for 
Did you mean: 

HttpClient.execute() fails with error "113 (No route to host)"

Former Member
0 Kudos

I have created a Java app which is trying to make REST call to the third party service deployed somewhere on internet. I'm using org.apache.http.client.HttpClient library to make Get and post call. The app is working fine when run on my local machine and it is able to connect to remote service and able to get the data. But when I deployed it on HCP, I get error as "113 (No route to host), error: Host unreachable (local port 45560 to address 0.0.0.0, remote port 443 to address <IPAddressOfRemoteSystem>". The protocol the remote system uses is https.

I have also created a destination with the URL in cockpit, keeping authentication as "No Authentication". But it did not help. The code that I'm using is like this -

HttpClient client = HttpClientBuilder.create().build();

HttpGet request = new HttpGet(url);

HttpResponse response = client.execute(request);

statusCode = response.getStatusLine().getStatusCode();

3rd line of this code gives this error. Any help would be greatly appreciated.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member204100
Active Participant
0 Kudos

Hi Archana,

you created this question using the HCI tag, so the people from HCP will not see it.
Try to edit the tags here, or close this thread, and open a new one using the HCP tags.

Best Regards,
Viktor

Former Member
0 Kudos

Can any one please answer to this question? I feel like I have posted it to the wrong tag. The question is for SAP Hana Cloud Platform and not for HCI