Software caused connection abort: recv failed when calling REST WebService in SpringBoot app
up vote
0
down vote
favorite
I've made a SpringBoot back-end and exposed some REST services.
I want to make a call of an external REST Webservice in this back-end on a webservice call.
Here's the code of the external call :
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
headers.add("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36");
HttpEntity<MonObjet> entity = new HttpEntity<MonObjet>(headers);
ResponseEntity<MonObjet> result = restTemplate.exchange("urlDuService", HttpMethod.GET, entity, MonObjet.class);
When i'm calling this code from a main(), it's working fine.
Bhen when i deploy it with spring-boot (in tomcat so...), and call it from my own webService, i've got a
"SocketException: Software caused connection abort: recv failed".
Any advices about it ? I've seen many posts about this error and try many ways, but i'm still stuck.
Thanks in advance
java spring rest spring-boot
add a comment |
up vote
0
down vote
favorite
I've made a SpringBoot back-end and exposed some REST services.
I want to make a call of an external REST Webservice in this back-end on a webservice call.
Here's the code of the external call :
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
headers.add("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36");
HttpEntity<MonObjet> entity = new HttpEntity<MonObjet>(headers);
ResponseEntity<MonObjet> result = restTemplate.exchange("urlDuService", HttpMethod.GET, entity, MonObjet.class);
When i'm calling this code from a main(), it's working fine.
Bhen when i deploy it with spring-boot (in tomcat so...), and call it from my own webService, i've got a
"SocketException: Software caused connection abort: recv failed".
Any advices about it ? I've seen many posts about this error and try many ways, but i'm still stuck.
Thanks in advance
java spring rest spring-boot
see stackoverflow.com/questions/135919/… and stackoverflow.com/questions/2126607/…
– Alien
Nov 20 at 9:21
Thanks for your answer. I've already seens theses links. But i've read them again and... i don't know why, but it's working now without changing anything. I've just restarted my server (and my computer). So it was indirectly the solution :)
– Malkav Nazthalen
Nov 20 at 10:44
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I've made a SpringBoot back-end and exposed some REST services.
I want to make a call of an external REST Webservice in this back-end on a webservice call.
Here's the code of the external call :
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
headers.add("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36");
HttpEntity<MonObjet> entity = new HttpEntity<MonObjet>(headers);
ResponseEntity<MonObjet> result = restTemplate.exchange("urlDuService", HttpMethod.GET, entity, MonObjet.class);
When i'm calling this code from a main(), it's working fine.
Bhen when i deploy it with spring-boot (in tomcat so...), and call it from my own webService, i've got a
"SocketException: Software caused connection abort: recv failed".
Any advices about it ? I've seen many posts about this error and try many ways, but i'm still stuck.
Thanks in advance
java spring rest spring-boot
I've made a SpringBoot back-end and exposed some REST services.
I want to make a call of an external REST Webservice in this back-end on a webservice call.
Here's the code of the external call :
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
headers.add("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36");
HttpEntity<MonObjet> entity = new HttpEntity<MonObjet>(headers);
ResponseEntity<MonObjet> result = restTemplate.exchange("urlDuService", HttpMethod.GET, entity, MonObjet.class);
When i'm calling this code from a main(), it's working fine.
Bhen when i deploy it with spring-boot (in tomcat so...), and call it from my own webService, i've got a
"SocketException: Software caused connection abort: recv failed".
Any advices about it ? I've seen many posts about this error and try many ways, but i'm still stuck.
Thanks in advance
java spring rest spring-boot
java spring rest spring-boot
edited Nov 20 at 9:19
Alien
4,47021023
4,47021023
asked Nov 20 at 9:15
Malkav Nazthalen
134
134
see stackoverflow.com/questions/135919/… and stackoverflow.com/questions/2126607/…
– Alien
Nov 20 at 9:21
Thanks for your answer. I've already seens theses links. But i've read them again and... i don't know why, but it's working now without changing anything. I've just restarted my server (and my computer). So it was indirectly the solution :)
– Malkav Nazthalen
Nov 20 at 10:44
add a comment |
see stackoverflow.com/questions/135919/… and stackoverflow.com/questions/2126607/…
– Alien
Nov 20 at 9:21
Thanks for your answer. I've already seens theses links. But i've read them again and... i don't know why, but it's working now without changing anything. I've just restarted my server (and my computer). So it was indirectly the solution :)
– Malkav Nazthalen
Nov 20 at 10:44
see stackoverflow.com/questions/135919/… and stackoverflow.com/questions/2126607/…
– Alien
Nov 20 at 9:21
see stackoverflow.com/questions/135919/… and stackoverflow.com/questions/2126607/…
– Alien
Nov 20 at 9:21
Thanks for your answer. I've already seens theses links. But i've read them again and... i don't know why, but it's working now without changing anything. I've just restarted my server (and my computer). So it was indirectly the solution :)
– Malkav Nazthalen
Nov 20 at 10:44
Thanks for your answer. I've already seens theses links. But i've read them again and... i don't know why, but it's working now without changing anything. I've just restarted my server (and my computer). So it was indirectly the solution :)
– Malkav Nazthalen
Nov 20 at 10:44
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53389682%2fsoftware-caused-connection-abort-recv-failed-when-calling-rest-webservice-in-sp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
see stackoverflow.com/questions/135919/… and stackoverflow.com/questions/2126607/…
– Alien
Nov 20 at 9:21
Thanks for your answer. I've already seens theses links. But i've read them again and... i don't know why, but it's working now without changing anything. I've just restarted my server (and my computer). So it was indirectly the solution :)
– Malkav Nazthalen
Nov 20 at 10:44