Questions tagged [connection-reset]

159 questions
0
votes
1 answer

I'm getting "Socket Error # 10054 Connection reset by peer" in Indy using TIdHTTP to GET an HTTPS url

I have what seems to be a simple task - to make an HTTPS request, but I encountered an error: Socket Error #10054 Connection reset by peer Moreover, this error does not occur every time; out of 30 attempts, it may occur 2-3 times, maybe once, or…
Aidyn
  • 5
  • 1
  • 3
0
votes
0 answers

Getting RestTemplate (Connection Reset) Despite everything is correct

I'm using Spring Boot RestTemplate to call REST API. On PROD, I'm getting below exception: org.springframework.web.client.ResourceAccessException: I/O error on POST request for "https:///v2/graphql": Connection reset; nested exception is…
0
votes
0 answers

Python - TCP server, connection closed by remote host

I want to write a simple client/server application in Python to send and receive JSON objects. The server is running fine and receives input from the client-side: λ python server.py Server running on localhost:9091 Handle request from ('127.0.0.1',…
0
votes
1 answer

NETWORK_RECEIVE_ERROR when sending http requests

I am trying to send http requests in C++. I have tried curl and cpr. In both of them I have some sort of connection reset which breaks the request and returns "NETWORK_RECEIVE_ERROR". I have checked the request with the WireShark and here is the…
0
votes
0 answers

Occasional connection reset while calling docker container app in K8s from browser-based java application

I have the following setup: docker container application sitting in K8s pod(s) exposed internally via TCP service Ingress Nginx routing incoming requests to this service This setup works perfectly fine - I can call the application by accessing…
Zaqaze
  • 1
  • 1
0
votes
0 answers

Connection reset; nested exception is java.net.SocketException: Connection reset error in springboot Rest API

I have a springboot application with one Rest API. In that REST API, I am invoking another REST API (3rd party). I am connecting to it via RestTemplate something like below, public RestTemplate restTemplate(RestTemplateBuilder restTemplateBuilder)…
0
votes
0 answers

Failed to load resource, ERR_connection_reset

When I test my site, it is fine, but with some customers it fails to load images and resources that I have stored in fleek.co. One customer just told me they were on a VPN I have tested on many devices and it is fine, but some people on a work…
markclark
  • 1
  • 1
0
votes
0 answers

Nessus Python script ChunkedEncodingError 104 Connection reset by peer

I want to use a Python Script to access Nessus API and start a scanning . I have installed my Nessus service on my Ubuntu Virtual Machine https://127.0.0.1:8834 , here is my code (I hide my accesskey and secretkey): import json import warnings from…
0
votes
1 answer

::ERR_CONNECTION_RESET - only on my machine

I have a jQuery ajax POST that sends data to the server and immediately I get a ::ERR_CONNECTION_RESET message in the console: POST http://www.example.com/casino/update net::ERR_CONNECTION_RESET In the browser Network tab, the request shows…
Adam Hey
  • 1,512
  • 1
  • 20
  • 24
0
votes
0 answers

HTTP Proxy Server does not forward request data: "java.net.SocketException: Connection reset"

I am attempting to build a basic Proxy Server in java that can handle and forward both HTTP and HTTPS requests. The current code below is based on https://stackoverflow.com/a/41368670/6346653: package com.example; import java.io.*; import…
0
votes
0 answers

Oracle JDBC intermittent connection reset SQLRecoverableException

Java program intermittently fails with below java.sql.SQLRecoverableException: I/O Exception: Connection reset I am using Oracle database and using jdbc connection. I have tried adding java.security.egd and securerandom jvm options while running…
0
votes
1 answer

Getting Non HTTP response code: javax.net.ssl.SSLProtocolException exception while performing load test with single system and also in distributed

We are trying to test a web application with 5k+ users, but we are getting below errors. • Non HTTP response code: org.apache.http.conn.HttpHostConnectException/Non HTTP response message: Connect to beta.headlite.com:443…
Ankit Patel
  • 21
  • 1
  • 6
0
votes
0 answers

What causes a server to close a TCP/IP connection abruptly with a Reset (RST Flag)?

TL;DR For quite some time we are facing a weird issue with all of our systems (including Prod!). On a regular basis the TCP-connection to the server is closed abruptly by the server (or to be exact on the way from the server to the client). This…
jBuchholz
  • 1,742
  • 2
  • 17
  • 25
0
votes
0 answers

Web Scraping with R: error related to reset of the connection with server

I have a problem with obtaining data from specific website - when trying to download raw website data with R 3.6.3 using following example code: website_raw <- readLines("https://tge.pl/gaz-rdn?dateShow=09-02-2022") The result I got is: Error in…
kakaba
  • 1
0
votes
0 answers

Connection reset after getOutputStream invocation

I am to ask your kind help for a problem I cannot solve... I have the following code: String https_url = "https://..."; try { HttpsURLConnection connection = (HttpsURLConnection) new URL(https_url).openConnection(); …