Questions tagged [connection-reset]
159 questions
0
votes
2 answers
java.net.SocketException:connectionreset with eclipse
everytime it is getting the same error like
java.net.SocketException
in java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(Unknown Source)
at java.net.SocketInputStream.read(Unknown Source)
at…

user3004271
- 9
- 1
- 2
0
votes
2 answers
ERR_CONNECTION_RESET in MVC 3 Web App
I'm getting a connection reset error in my ASP.NET MVC3 app. It seems to work on http, except that redirects to https which doesn't work. I have tried fiddling with the timeout values as in asp.net mvc 3 - form post - ERR_CONNECTION_RESET, but to…

Bondolin
- 2,793
- 7
- 34
- 62
0
votes
1 answer
Connection Refused using access token from OAuth 2.0 User-Agent Authentication from Salesforce
I'm using OAuth2.0 User-Agent Authentication flow to get the access & refresh tokens so that I can use the Foce.com REST API over remote access. Now, the problem is that I'm able to authorize successfully and recieve the tokens, but while using…

Agraj
- 466
- 5
- 19
0
votes
1 answer
Connection reset + Java SE + TCP
I am developing a Java Standard Edition application.
The user of the application has a pseudonym.
My application can be used as a server.
In such a case a thread runs to accept connections from client instances of the application.
When a connection…

user1139666
- 1,687
- 4
- 24
- 45
0
votes
2 answers
SQL Server 2005 Timeout, Connection Was Reset
I am loading 100,000 plus pieces of data, which should take like 30 to 40 minutes to analyze and complete. We use SQL Server 2005. Currently after a specified time (trying to get the minutes it uses), the SQL Server says the connection was…

cdub
- 24,555
- 57
- 174
- 303
0
votes
1 answer
File download hanging
after extensive searching I was unable to find a solution to solve a file download problem.
The following script is designed to download a csv file from a remote (Hotmail) server via a
WebViewClient.
The login process is done through the their…

PowerAktar
- 2,341
- 1
- 21
- 17
-1
votes
2 answers
Connection reset while streaming xml
My code needs to download a big xml file (500MB) inside a GZIPInputStream and process it doing some operations for every object. Those operations take time to be completed, and I have many objects to process. I'm using commons http-client 3.1 and…

javanna
- 59,145
- 14
- 144
- 125
-1
votes
1 answer
Java HttpsUrlConnection, connection reset
String url1 = "foo1.blabla.com";
String url2 = "foo2_bar.blabla.com";
URLConnection urlConnection = new URL(url1).openConnection();
urlConnection.setDoInput(true);
//Fails
InputStream in = urlConnection.getInputStream();
We were able to connect…

benchpresser
- 2,171
- 2
- 23
- 41
-1
votes
1 answer
NodeJS - Why POST after GET doesn't work in express app?
This is app have only GET /test, it doesn't have POST /test yet. I'm uploading binary file 1.dat to it and it should return answer with '404', but seems I'm recieving ECONNRESET error instead.
var express = require('express');
var app =…

happy_marmoset
- 2,137
- 3
- 20
- 25