When a process attempts to connect to a remote service, and fails to do so after a predetermined period of time.
Questions tagged [connection-timeout]
833 questions
0
votes
1 answer
PHP - Continue Execute Another Looping After Execute Looping
I have thousand email address in my database. I want to send a message to them. But every time I send it show error "500 Internal Server Error. Request Timeout. This request takes too long to process, it is timed out by the server. If it should not…

Riyanto Wibowo
- 364
- 1
- 6
- 13
0
votes
1 answer
how to check permanently a mysql database record from c# app
i am trying to make a c# console application my basic objective its to be cheking a "status" field in mysql database it is on a server... i tried it but after 20 min approximatly it gives me a timeout error... is there a way i can do this…

Aroque
- 1
- 2
0
votes
1 answer
connect timed out
I am trying to setup a scenario for a JAXWS web service in which I want the service to timeout (i.e. a connection timeout) so that I can set the proper connection switches during the initial call.
Can anyone tell me a way to setup such a test in a…

Acharya
- 97
- 4
0
votes
1 answer
Way to set connection timeout in asynchronous post method
I am using an asynchronous post method to post some data to the server. The post is working fine, but if the server is down or unresponsive then I am getting a force close in the application.
How should I implement a timeout to the post request?…

kittu88
- 2,451
- 5
- 40
- 80
0
votes
0 answers
(java.net.ConnectException) caught when processing request: Connection timed out
I have two different project deployed in tomcat server. From one project I called the web services to call the second project.
Sometime I have to call the web services 200 times at once. So this is what I did:
while(rs.next())
{
Thread t1 = new…

vikas27
- 563
- 5
- 14
- 36
0
votes
1 answer
Debugging for long time in visual studio - I receive a blank web page response in browser
I need to understand a complex web project and for that I need to be in a debugging session for much longer time. For this I have set the "Application Pool" "Ping Enabled" to False in the IIS 7.5, so that IIS does not terminate itself and I can…

teenup
- 7,459
- 13
- 63
- 122
0
votes
3 answers
Wcf decrease client connection timeout
I have a wcf service that works fine. The problem is the client. I have a little gui where the user is supposed to place the ip address of where the wcf service is located. Both the client and service are on the same network so if I am not able to…

Tono Nam
- 34,064
- 78
- 298
- 470
0
votes
1 answer
Error during export of large SSRS report via ReportViewer
I have an MVC3 application that delivers SQL Server 2008 reports using the Microsoft ReportViewer web control. Generally everything is working fine, except when exporting large reports to PDF.
At exactly 2 minutes into the export I get the following…

John Flackett
- 61
- 2
- 2
0
votes
1 answer
Httpurlconnection timeout not happening
I have a java servlet requesting some request to some other server, and the other server has a apache server with a default timeout of 2 minutes.
I have two urls to be called, in-case the first url has failed, then i need to call the second url,…

raghul
- 1,008
- 1
- 15
- 33
0
votes
1 answer
BlackBerry - How to make socket keep alive for infinite time
I have created socket program in Blackberry. and also set socket to keep alive using the following
socket = (SocketConnection) Connector.open(URL);
socket.setSocketOption(socket.KEEPALIVE, 2);
But my socket connection gets terminated after 2-3…

Sunil Kumar Sahoo
- 53,011
- 55
- 178
- 243
0
votes
0 answers
coldfusion jrpp threadID, do higher numbers mean anything?
I don't know much about threads in CF. I am trying to troubleshoot an issue in CF9, Windows Server 2008. Page requests start to timeout so we will restart the server. I've been looking at the logs and noticed that the threadID will be between…

jessieloo
- 1,759
- 17
- 24
0
votes
1 answer
Apache retrieve a timeout error and closes connection when uploading large files
I've been trying to reconfigure my apache and php.ini to allow upload of large file.
therefore I've changed the following variables:
/httpd/conf/httpd.conf:
Timeout 7200
ProxyTimeout 7200
/etc/php.ini:
post_max_size = 1024M ; Maximum size of…

Alon Kogan
- 3,258
- 1
- 21
- 20
0
votes
1 answer
Connection time out in Rails application
I have a rails application is deployed on Apache + Passenger + Rails 2.3.8(Ruby 1.8.7) + Linux server + MySQL 5.
I am trying to create an excel report by getting records from DB and download it.
When my report has < = 600(approx.) records, it get…

Learn More
- 1,535
- 4
- 29
- 51
0
votes
1 answer
What does HttpConnectionParams.setConnectionTimeout mean?
I've got some trouble downloading a webpage's HTML (see this question: Android: Downloading HTML not always working).
In my code, I use this method:
HttpConnectionParams.setConnectionTimeout(my_httpParams, 3000);
I'm not really sure what it means.…

Xander
- 5,487
- 14
- 49
- 77
0
votes
1 answer
500 internal server error on iphone app php web services
We've iphone and android apps which are sharing the same php web services. We found the 500 internal server errors on several places on the iphone application.
When we trying to access a web service for the very first time it gives the 500 error. If…

Irawana
- 269
- 3
- 6
- 14