connection-timeout Questions
1
Solved
We are working with 2 databases, our local database and an external database. But now our external database is down (we're still under development so it's good we came across this issue) and it now...
Daze asked 16/9, 2015 at 18:50
4
I have been trying to setup aws ec2 machines for load testing of my web server using jmeter but I am stuck. I have a jmeter client on my local machine and I want to set up multiple jmeter-server no...
Leverick asked 29/1, 2013 at 19:12
3
Solved
Is there any way to globally setup time you would wait for connecting to a given database, before a connection failure in NHibernate (connection timeout)? In ADO.NET you can do it for a single conn...
Tother asked 6/7, 2015 at 9:5
2
Solved
This code always fails (i.e., $result is Boolean false):
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $path);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE)...
Omalley asked 2/11, 2011 at 21:32
3
Solved
Receiving request timeout even though connect timeout and read timeout is set to default (infinite)?
I am connecting to a web service and did not set any connect timeout and read timeout on HttpURLConnection. What is the default connect timeout and read timeout? Is it dependent on the Android phon...
Amour asked 3/4, 2012 at 3:27
1
Solved
I'm testing a query on Parse using the findInBackground() method under different connection types.
When connection is not available, there are times in which the done() callback returns, as expecte...
Combe asked 11/7, 2014 at 7:50
3
Solved
I have a query that is taking longer to execute as the database increases in size. The query is optimized and necessary, but my C# Console Application has recently been giving me this error:
Unhan...
Lakeshialakey asked 16/7, 2012 at 17:55
2
Solved
I am writing a JAVA code to traverse FTP Location using Apache Commons Net FTPClient and getting output in an Excel file. the code execute correctly for approx 5 min but then gives an IOException:
...
Cameo asked 17/7, 2014 at 9:19
1
Solved
I am having trouble getting the Apache HttpClient (4.3) post request to timeout using the following code:
RequestConfig requestConfig = RequestConfig.custom().setConnectionRequestTimeout(4000).set...
Xavler asked 6/2, 2014 at 18:54
1
Solved
Has you may know, Web sites hosted under Microsoft Azure Web Sites service are by default configure to timeout after idling 20 minutes (idleTimeout) and the application pool to restart every 29 hou...
Overnight asked 17/2, 2014 at 22:57
1
I am working on a PHP script that's processing a lot of data through a SOAP connection. Estimates of the total run time of the script look to be several days if it doesn't encounter any errors. The...
Precipitin asked 25/9, 2013 at 16:18
1
I've a problem with php fsockopen command.
I need to open a socket connection on a server to implement a message exchange.
If the server does not receive anything from my (client) side, it close t...
Autograph asked 2/12, 2013 at 17:34
1
Solved
I am using NodeJS and SocketIO for my websocket solution. It works fine, but after a few minutes, my socket server always times out with the following messages in my console:
debug - fired heartbe...
Rivkarivkah asked 4/12, 2013 at 22:35
3
Solved
I have a website using Microsoft SQL 2008 server over local network. Sometimes, SQL server machine is rebooted, and so the website fails to connect to the database. If the machine is up and running...
Involute asked 24/6, 2010 at 21:35
1
I have a Tomcat application that uses MySQL, and Hibernate for ORM. The nature of our application demands that we have to pull and aggregate a lot of analytics data from a NoSQL store for each requ...
Silviasilviculture asked 23/5, 2013 at 17:45
1
We have a 3-tier application with a C# client, a C# WCF web service layer, and a SQL Server database. The web service connects to the database with ADO.NET. All of our C# code is using the .NET Fra...
Comnenus asked 22/2, 2013 at 15:30
1
Solved
tl;dr version
I get errors when using OLE DB (SNC10.0) connection managers after a few nights of running, could connections not be properly timing out? Switching to ADO.NET Connection Managers an...
Bagatelle asked 5/12, 2012 at 22:32
2
Solved
From the Netty API Documentation
connectTimeoutMillis = "the connect timeout in milliseconds. 0 if disabled."
And
ReadTimeoutHandler = Raises a ReadTimeoutException when no data was read wi...
Tatar asked 15/11, 2012 at 1:41
4
Solved
How long can the browser wait before an error is shown before server answers for request? Can this time be unlimited?
Dentition asked 4/9, 2011 at 7:2
5
Solved
I have a multithreaded Windows Service I've developed with VS 2010 (.NET 4.0) which can have anywhere from a few to a few dozen threads, each retrieving data from a slow server over the Internet an...
Speedy asked 4/5, 2011 at 14:20
1
Solved
To my understanding, the socket connection timeout is controlled by the TCP transport, which uses Retransmission Timeouts (RTOs). if the the ack does not come back before timer expires, the connect...
Cocke asked 12/4, 2011 at 3:45
1
Solved
$url = 'http://a.url/i-know-is-down';
//ini_set('default_socket_timeout', 5);
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 5,
'ignore_errors' => true
)
)
);
$s...
Evergreen asked 11/9, 2010 at 1:6
1
Solved
I'm utilizing the magic of jQuery.ajax( settings ).
However, I'm wondering if anyone has played with the timeout setting much?
I know it's basically for dictating the local time for a request, bu...
Haukom asked 22/8, 2010 at 22:17
2
Solved
I found what I thought should work perfectly at https://stackoverflow.com/questions/517219?tab=oldest#tab-top but, it did not work for me.
I have Ruby 1.9.1 installed on Windows and, when I try th...
Beautician asked 12/8, 2010 at 3:29
2
Solved
I read from
http://www.packtpub.com/article/friends-via-email-social-web-application-django-1.0
and follow the steps:
=> And change my
setting.py
SITE_HOST = '127.0.0.1:8000'
DEFAULT_FROM_EMAI...
Kimkimball asked 23/12, 2009 at 2:52
© 2022 - 2024 — McMap. All rights reserved.