Questions tagged [connection-timeout]

When a process attempts to connect to a remote service, and fails to do so after a predetermined period of time.

833 questions
0
votes
2 answers

PHP MySQL external database connection timed out

I'm getting a connection timed out when I try to connect to an external (not on the same server as this code is on) database through the following code. I know the settings of the database is set up right, and the login info is good, 'cause I can…
Deniz Zoeteman
  • 9,691
  • 26
  • 70
  • 97
0
votes
1 answer

connection timeout error while checking mediastream available or not

In My Console application. i am checking media links which is available in my database through openstream.but one error is raising again and again in diffrent diffrent point.that is "Timeout expired. The timeout period elapsed prior to completion…
0
votes
1 answer

Linqpad TypeLoadException while fetching schema information

I get the following error when trying to load a large db into linqpad. I can connect to smaller dbs on the same server, but not this larger one. This DB is a Dynamics GP database. Not the actual DYNAMICS one, but the default 'TWO'…
joe
  • 787
  • 6
  • 15
0
votes
1 answer

Long-running MySQL queries run from PHP under Apache: browser does not output result and keeps “Transferring data…”

I have Apache 2.2 PHP 5.3 MySQL 5.5 application. A form on page1.php accepts user input. Values are passed to page2.php using GET. PHP script on page2.php runs MySQL query and shows results. Depending on the user input parameters query may run from…
0
votes
2 answers

Connection Time out with Error Text in Web.Config file

Hi I sometimes get the following error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file …
hungrycoder
  • 507
  • 2
  • 9
  • 24
0
votes
0 answers

java.net.ConnectException: Connection timed out, Tomcat 7 and iptables

I am experiencing a weird problem.. Basically our Java developer said that in the java application the services that access the db to write on it get this error: java.net.ConnectException: Connection timed out java.net.ConnectException: Connection…
elect
  • 6,765
  • 10
  • 53
  • 119
0
votes
2 answers

Using PHP to toggle between programs to avoid SERVER timeout

I have a question which is related to lots of others, but has some key differences. I have a PHP script which needs to do some general work (delete a tuple from a database) every 15 minutes (900 seconds). This needs to be done over and over. So, I…
0
votes
1 answer

Connection Timeout in Blackberry

How to set Connection timeout in blackberry while fetching data using HttpConnection from url? I was passing ConnectionTimeout parameter in url but not working When there is no network,blanck screen should be displayed along with network error…
DevBB
  • 35
  • 5
0
votes
1 answer

Database Move Resulting in Blocked IPs?

I'm totally baffled by a recent problem I'm encountering. I've moved the MySQL database of a WordPress site from one server to another. After this, my client reports that they cannot access their site from their offices, but can access it anywhere…
Cord Blomquist
  • 621
  • 5
  • 7
-1
votes
0 answers

How to resolve java.sql.SQLException: Io exception: Connection timed out

I have a Java thread that connects to Oracle when triggered by input. As soon as the thread starts, there are no connection issues with Oracle. However, after a while, when there is input trigger, the connection to Oracle throws the following…
-1
votes
3 answers

Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding

hi I'm getting an error Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. I'm alredy changed the connect timeout = 60000 and in database my procedure is executes in 43sec. so plz give…
-1
votes
1 answer

what should be the value of connection timeout in iis server for a ticketing application

I am working on an Application which is a ticketing tool,user log ticket corresponding to each task assign to them,there is Slow http post vulnerability in that which can be remove by manipulating connection timeout on iis server. what should be the…
-1
votes
1 answer

How to set connectTimeout in case of slow internet and if I don't know the size of file to download

private fun downloadAPKStream() : InputStream? { val url = URL(this.url) val connection = url.openConnection() as HttpURLConnection connection.requestMethod = "GET" connection.connect() …
-1
votes
1 answer

work-around for idle ssh sessions dropped because of "packet_write_wait: Connection to 192.168.xx.yyy port 22: Broken pipe"

here's the scenario: you ssh into a remote linux host, leave the terminal idle for a while and come back to find the connection has dropped. You've read the suggestions about setting keep-alive on the connection, and tried it, and it still…
nzc
  • 1,576
  • 1
  • 14
  • 24
-1
votes
1 answer

Curl force to Timeout

I am trying to test my timeout conditions using curl and force the website to timeout. Here is my curl settings: curl_setopt_array($curl, array( CURLOPT_URL => "https://app.sample.com/api/abc/changelogs?last=3", CURLOPT_RETURNTRANSFER =>…
Squish
  • 419
  • 4
  • 22