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










share|improve this question
























  • 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

















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










share|improve this question
























  • 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















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










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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




















  • 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



















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

404 Error Contact Form 7 ajax form submitting

How to know if a Active Directory user can login interactively

TypeError: fit_transform() missing 1 required positional argument: 'X'