Tagged Questions
0
votes
2answers
39 views
Java: Connection Timedout and Socket Timedout
I'm in the process of writing two Junit testcases for testing the timemouts
@Test
public void connectionTimeoutTest()
{
String myurl = "http://serverip:serverport/context";
...
4
votes
1answer
92 views
Opening redis connection is too slow
It sometimes takes very long time to open connection to Redis. Looks like it depends on connecting thread's count and, maybe, PC configuration. I run test for 50 threads on two workstations with ...
0
votes
1answer
53 views
ObjectInputStream Blocking socket external ip madness
When I initialize my objectinputstreams, after I have initialized and flushed by objectoutputstreams, I get this:
Client:
java.net.SocketTimeoutException: Read timed out
at ...
0
votes
0answers
26 views
ios 6 json depending from the bandwidth the connection will be loss during preparing the data for export
I'm using a JSON REST Serve that i have implemented using Delphi
and I'm transferring the Data from our ERP-CRM to the iPad.
So My Question If i have an amount of data so that the Json File is ...
0
votes
1answer
148 views
Python Exception Handling - Best Practices
I'm writing a python program the accesses a database. I want to catch three types of exceptions when I make a http request. Timeouts, network errors, and http errors. I'm looking for the best way to ...
0
votes
1answer
58 views
Does tcp/ip protocol explained when connection will time out or be refused?
While a tcp client is connecting to a tcp server, and at same time the Listening port at server side hasn't been established. At this time will the tcp client report connection refused exception or ...
0
votes
0answers
278 views
org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for connection from pool
I use Multi-thread to scan the different URL in the same time in java. There was the bug,if the sum of request time exceed 100,000. I have already close which i should close. Here the code from my ...
0
votes
0answers
54 views
Multithreading many web requests in VB.NET
Private Sub threadimportbtcUSD()
Do
Dim postReq As HttpWebRequest = DirectCast(WebRequest.Create("https://btc-e.com/api/2/btc_usd/depth"), HttpWebRequest)
Try
...
0
votes
1answer
247 views
Android -Json httpRequest Time out Connection
How to make a Connection Timeout, when I do a httpRequest? I return to the previous activity? For my apilcacion is blocked by a firewall, and I can make some time to not be able to connect to the ...
1
vote
0answers
115 views
Mysql connections in TIME_WAIT state
I am facing an issue in server wherein couple of connections are being timed out. Below are the errors in the err file:-
130401 8:07:06 [Warning] Aborted connection 1111111to db: 'ABC' user: 'u1' ...
0
votes
0answers
69 views
WCF rest full service in sharing GPRS Connection
We are developing android application that is connected to a .NET middleware application with
WCF restful services and middleware connects to different kind of database.
Our transaction returns ...
0
votes
0answers
119 views
WCF Service Timeout - Service down
I have an interesting issue with our WCF service which is being used to stream large datasets to Excel via a VSTO solution.
I have created the various binding objects in code, because VSTO solutions ...
2
votes
2answers
222 views
Making a connection with Socket.connect using timeout
I'm making a java TCP connection using the Socket class.
Socket socket = new Socket();
socket.connect(new InetSocketAddress(host,port),50);
I want this connection to be established fast or not ...
1
vote
1answer
36 views
How to set a timeout to the database connection in SORM?
I use H2 database in embedded mode with SORM.
If the database is busy then SORM just continue to wait. There are no exception, nothing happens. This is misleading. :(
So how i can set the db ...
0
votes
1answer
170 views
PHP Script hangs even though max_execution_time & IIS7 Connection Timeout is set
I'm experiencing a very strange problem with my PHP script "hanging" even after the background processes have finished running. I am running PHP 5.3, Windows Server 2008 R2, IIS7 with Tomcat Apache ...
0
votes
0answers
71 views
Http connection sits and waits for data to download after certain amount of idle time
I have had this issue and sort of found a workaround after doing a weeklong research. Thought to share just in case someone else encounters it.
The issue happens on devices (as I've tested) with ...
0
votes
2answers
212 views
Timeout for UnknownHostException with established connection but no internet
I have an interesting issue.
I have an application where inside of it, I'm trying to account for the condition where the phone is connected to a router, but that router is not connected to the ...
0
votes
1answer
140 views
ASP.NET SQL - Pool - timeout
I've a problem with Asp.net and SQL.
I have many timeout errors from connection pool.
All connections are used within using block so they are correctly closed.
In the connectionSting I have : ...
0
votes
0answers
208 views
maximum timeout value in openning socket connection in different platforms
We have an application that uses java Socket class to make connection to its server. We have configurable setting to set read timeout after application open the connection using setSoTimeout. ...
1
vote
1answer
952 views
URLConnection.getInputStream() : Connection timed out
I use the code from Sun's java tutorial
import java.net.*;
import java.io.*;
public class URLConnectionReader {
public static void main(String[] args) throws Exception {
URL yahoo = new ...
1
vote
0answers
93 views
Jersey server - Trapping connection failure during response transmission
We've a RESTful java application developed w/ Jersey, deployed in a weblogic 11g on a CentOS 5.7 box and available for mobile clients (Android) connections.
Sometimes, due to the mobile network, the ...
5
votes
1answer
2k views
Is it possible to configure PostgreSQL to automatically close idle connections?
Some clients connect to our postgresql database but leave the connections opened.
Is it possible to tell Postgresql to close those connection after a certain amount of inactivity ?
Postgresql 8.3
0
votes
1answer
457 views
iOS: How to check if a stream connection is timed out
In my application I connect to a server using
- (void)connectToServerUsingCFStream:(NSString *) urlStr portNo: (uint) portNo
This function is called by another method
- ...
1
vote
1answer
365 views
Derby/JDBC connection lifetime (or Idle Timeout)
Using JDBC to connect to a Derby database, after a while, Derby or JDBC close the connection automatically. (This may be called a "connection lifetime" value or a timeout value).
Where can I find ...
1
vote
1answer
621 views
BlackBerry ConnectionFactory timeout
I upgraded an existing application and in the new version I require OS 5 - one of the reasons was that I wanted to use ConnectionFactory for communicating via HTTP/HTTPS with our server without having ...
0
votes
1answer
2k views
AJAX Requests and Connection Timeout: Chrome doesn't timeout after over 15 hours, but what about IE?
I am writing a web application that takes a script input from a client-side browser and sends it to a Java servlet through AJAX. Upon receiving the script, the Java class executes the script and sends ...
0
votes
1answer
195 views
Timeout for Multipart HTTP post
How to set the timeout for HTTP multipart file post. I want to upload image to the server at the time internet connection is not there how to handle that situation?
0
votes
2answers
2k views
Connection time out while connecting to EC2
I am a new user of amazon web services and trying to learn to use the services.
I used the getting started EC2 guide to create and connect to a EC2 instance (trying to be within the free usage ...
2
votes
2answers
505 views
WCF connections are aborted incorrectly / existing connection was forcibly closed by the remote host
I have a Windows application that uses WCF service. It has some WCF service calls, and ClientBase.Close() method is always called afterwards. When I close the application, I do not get any errors in ...
1
vote
1answer
994 views
HttpClient How to set Connection Timeout in individual GetMethod
In my web application I have a global static HttpClient that is used in many parts of the application. It is created like this:
MultiThreadedHttpConnectionManager connectionManager = new ...
0
votes
2answers
2k views
connect timeout=0???? what about? timeout value expired with 1500
System.Data.SqlClient.SqlConnection conec = new System.Data.SqlClient.SqlConnection("data source=" + servidor + "; initial catalog=" + basedatos + "; user id=" + usuario + "; password=" + contra + "; ...
1
vote
1answer
152 views
Loading a RSS on my ASP.NET website can be very long (abnormally)
I have a website, and the homepage loading time is unusually long sometimes, not everytime, it seems a bit random, and I can't determine the steps to reproduce this error. The website can be online ...
2
votes
1answer
306 views
Android socket always ending in timeout
I have made an android socket client application for android 2.3.3.
It sends a XML request, and then recieves an answer back from a cobol socket server.
The application works perfectly fine, my ...
0
votes
0answers
1k views
Altering the timeout setting of an Axis 1.4 generated SOAP Java client
I have a problem with changing the standard options used by an Axis 1.4 generated web service client code.
We consume a certain web service of a partner who is using the old RPC/Encoded style, which ...
0
votes
1answer
467 views
How to prevent Connection time out in jquery ajax?
I am facing problem with connection time out,during jquery ajax operation. The problem scenario is that
I am firing an ajax request which is taking too long to be served by the server(5 minutes) ...
0
votes
0answers
277 views
not able to connect to a remote Database using my Nexus S
Well i have been trying to connect my Nexus S to a remote database (which is set up in my local computer ) .
In the local computer I have set up a MYSQL database and I am accessing it using php ...
0
votes
1answer
262 views
Compact framework socket timeout
I have problem detecting the loss of socket connection in CF app for PDA device.
I have static class that has static methods for communication (Connect(), Write(), Disconnect()). Static because all ...
22
votes
6answers
60k views
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated
please see the error below :
Server Error in '/' Application.
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has ...
2
votes
0answers
503 views
Odbc open connection timeout
I'm having an issue with Odbc connection.Open() , everything was working fine with the code below until it started to freeze in high latency - bad connections.
I'm using TMnetsim as a tool to ...
1
vote
3answers
562 views
Timeout does not work if server does not respond
I have the problem that I never get a SocketTimeOutException when server not responding. After 30 seconds I get an IOException instead.
What do I need to do to get a timeout when server is not ...
0
votes
1answer
226 views
php - return header on connection_timeout
I have a shutdown function:
function shutdownFunction(){
if (connection_aborted()) {
header("Status: 409");
} elseif (connection_status() == CONNECTION_TIMEOUT) {
...
6
votes
2answers
745 views
Rails produces “PGError: server closed the connection unexpectedly” after some timeout
I have the setup of my Rails app as following:
Rails: 3.0.5 (under Apache proxy) running on RHEL 5.6
Postgres: 8.4, running on Windows Server 2008
The 2 servers are on the same LAN.
The problem ...
1
vote
1answer
602 views
Coldfusion consuming webservice -> java.net.SocketTimeoutException: connect timed out
I'm consuming a webservice over Coldfusion 9 for getting property data and saving the result to our local database. The script gets executed via scheduler once a day. The problem is that sometimes it ...
-1
votes
1answer
526 views
0
votes
2answers
855 views
Axis Connection Timeout
My Axis based client program tries to connect to a webservice, when the server is down I don't want to wait too much time . I want to wait max 3 seconds, So I need to set a timeout.
There is ...
0
votes
1answer
2k views
SQLPlus connection timeout options
We saw an issue other day, where the database server was responding to tnsping and not responding when trying to establish a connection..
When we tried to connect to the DB.. It was just stuck there ...
2
votes
2answers
481 views
How to abandon a connection attempt if it takes too long
I have an application I've written that works perfectly in the simulator. When I put it on a device however it does not.
It does one HttpRequest to get and parse all the xml containing all the urls ...
0
votes
1answer
1k views
Bluetooth connection timed out too soon?
Hey guys!
Got a problem when I connect with a embedded device via bluetooth.
When I connect with this code:
public void run() {
Looper.prepare();
try {
// Connect the ...
2
votes
2answers
625 views
Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool
I am fairly new in asp.net development, so you can say that I have developed a poorly coded application that is giving me this error.
Timeout expired. The timeout period elapsed prior to obtaining a ...
2
votes
2answers
212 views
Distinguishing device disconnects from timeouts
When using ReadFile on a communications resource it is possible to detect read timeouts by checking if less bytes than the requested amount of bytes were read. For example, when I want to read 1 byte, ...

