Questions tagged [connection-reset]

159 questions
4
votes
4 answers

How to retry 104 connection reset by peer connection errors in python requests library without try except

I have the following Session object : import requests from requests.adapters import Retry, HTTPAdapter from requests.sessions import Session retry_strategy: Retry = Retry( total=5, status_forcelist=[429, 500, 502,…
Hadronymous
  • 566
  • 5
  • 16
4
votes
0 answers

Connection reset error when trying to connect to Salesforce from WSO2 ESB 5.0.0

I'm getting a connection reset error when trying to create a case or an event in the salesforce from WSO2 ESB proxy services. This is happening very frequently. Anyone having an idea on how to prevent these exceptions? I have already checked…
Ram
  • 41
  • 2
4
votes
1 answer

java.net.SocketException: Connection reset (SSL)

I am referring to these questions: java.net.SocketException: Connection reset - [SSL] SSL Connection Reset I used solution from second question to handle all suggested https protocols: System.getProperties().setProperty("https.protocols",…
Michal
  • 1,955
  • 5
  • 33
  • 56
4
votes
1 answer

Python SSL communication hangs on read, then issues an error 54 - connection reset by peer

I'm making a web services call to a Microsoft CRM web service using Python/suds/python-ntlm, and my call to the service is blocking on an SSL read. The CRM service provider provides both a testing and a production service, and I can contact the…
Chris R
  • 17,546
  • 23
  • 105
  • 172
4
votes
0 answers

Unable to download maven artifacts - connection reset

Every time I try to run a build when maven tries to download the artifacts it throws a connection reset error. I'm developing in Eclipse and am trying to use the embed-mongodb plugin:
Kingamere
  • 9,496
  • 23
  • 71
  • 110
4
votes
1 answer

How to resolve this channel issue from WMQ?

Below is the related part from a QMGR log file about a WMQ channel issue: ------------------------------------------------------------------------------- 2012-7-23 10:35:25 - Process(340.1) User(MUSR_MQADMIN) Program(runmqchl.exe) AMQ9206: Error…
wing2ofsky
  • 926
  • 4
  • 27
  • 48
3
votes
1 answer

How to intentionally reset a connection?

I am currently working on a project to download .mp4 files from links from a text document, and it works with this code import urllib.request import random import threading def request(line): urllib.request.urlretrieve(line,…
User1986
  • 175
  • 10
3
votes
1 answer

asp.net mvc 3 - form post - ERR_CONNECTION_RESET

I'm trying to make a form post page on asp.net mvc 3 application with 2500 input type "hidden" (because is like an preprocessed excel upload) with aprox 150 chars each input (aprox 400Kb of data) and on all browser i'm getting a connection reset…
Santiago
  • 2,190
  • 10
  • 30
  • 59
3
votes
1 answer

Intermittent ColdFusion 404 Error Page, Sometimes it shows Connect Reset / Interrupted and sometimes it shows the error page

I have a strange issue with 404 pages loaded on our new site. We just moved our site from a ColdFusion 8 single instance setup to a ColdFusion 10 setup with 3 instances of ColdFusion running. This is running on IIS 7.5 with Windows Server 2008 R2.…
3
votes
1 answer

javax.mail.MessagingException: Connection reset while trying to access gmail using java mail API

I was trying to read through the mails in my gmail account using java mail API. This is the code: import java.util.*; import java.io.*; import java.awt.*; import javax.mail.*; import javax.mail.search.FlagTerm; import javax.mail.Flags.Flag; public…
2
votes
0 answers

How to solve "springcloud gateway connection reset by peer"?

I run Jmeter concurrency(concurrency=5) test on springboot(version is 2.6.6) application and the springcloud gateway version is 3.1.2. I often got this error in gateway: 2022-11-21 15:39:01.541 WARN 218 --- [ctor-http-nio-2]…
zhu mo
  • 33
  • 3
2
votes
2 answers

javax.net.ssl.SSLException: Connection reset on few request out of the total

We have a service that is sending POST request once every second to one of our mircoservices. The sent request is to the same URL each time it is sent. The code class TrackTask that sends request is using…
Ran Koren
  • 41
  • 1
  • 1
  • 3
2
votes
1 answer

Intermittent git connectivity issue while checking out GIT code from jenkins

While checking out code from jenkins we are getting multiple intermittent issues in GIT connectivity. Errors: fatal: unable to access 'https://outgit.net/projects.git/': Failed connect to outgit.net:443; Connection timed out fatal: unable to…
Sapna
  • 29
  • 3
2
votes
0 answers

java.net.SocketException: Connection reset on External REST Calls

We do have following Configuration to build Spring beans. Built configuration beans in Spring Beans with Connection Pool manager and ClosableHttpClient. RestClient class autowires RestTemplate objects to make post calls. import lombok.Data; import…
2
votes
0 answers

JS - detect Connection Reset

In our React application, we have the ability to upload files. Our FW is configured to virusscan the incoming files (posted via multipart form). When a virus is detected the connection is reset ERR_CONNECTION_RESET. Is there a way to "catch" a…
Yoeri
  • 1,876
  • 15
  • 24
1
2
3
10 11