Tagged Questions
The keep-alive tag has no wiki summary.
20
votes
5answers
6k views
14
votes
6answers
15k views
Simple comet example using php and jquery
Can anyone give me a good and simple example of the comet technique using PHP? I just need an example that uses a persistent HTTP connection or something similar. I don't want to use a polling ...
12
votes
3answers
5k views
Use HTTP Keep-Alive for server to communicate to client
Recently in an interview I was asked how I would approach an online chat client application. I went through the standard "polling" solution but was cut off because the interviewer was looking for the ...
8
votes
4answers
9k views
Does a TCP socket connection have a “keep alive”?
I have heard of HTTP keep-alive but for now I want to open a socket connection with a remote server.
Now will this socket connection remain open forever or is there a timeout limit associated with it ...
6
votes
1answer
311 views
Tomcat, HTTP Keep-Alive and Java's HttpsUrlConnection
I have two Tomcat servers that need to maintain a persistent connection to cut down on SSL handshaking. One server (the proxy) sits in a DMZ while the other one is safely behind another firewall. The ...
6
votes
2answers
1k views
Why aren't persistent connections supported by URLLib2?
After scanning the urllib2 source, it seems that connections are automatically closed even if you do specify keep-alive.
Why is this?
As it is now I just use httplib for my persistent ...
5
votes
1answer
139 views
How to reduce a number of AJAX requests for a chat?
I have a chat on my web site and it needs to send many AJAX requests to my server (at least 2 times per second) in order to check if there are new messages.Is there a way to reduce the number of ...
5
votes
2answers
274 views
does http:keep-alive keep the php resources open or does it free all the resources?
I am using http keep-alive on a apache server,
Lets say I ask it to keep the connections open upto 2 minutes...
Now, if the connection is created and idle for a minute, will the resources held by php,
...
5
votes
5answers
3k views
iPhone app running while screen locked
Here is something I am trying desperately to get to work:
I have an app that polls the GPS module in specified intervals and then sends out coords out to a server using Unix calls such as write(); It ...
4
votes
4answers
353 views
Linux - xterminal - shell script - keep process alive
I need a program in linux always on if it dies it must restart by itself how do i do it?
also maybe start the process again if its killed by any other process, restarting itself again
4
votes
1answer
373 views
Android WebView XMLHttpRequest Keepalive
when making XMLHttpRequests in an Android WebView, no keepalive connections are used as it seems.
My desktop browsers all use keepalive when the requests are frequently made (eg. XMLHttpRequests ...
4
votes
2answers
773 views
Android - VPN at the native layer
Just a quick question as Google isn't throwing up much.
Is it possible to create a VPN connection using native code in
Android?
And if so does the VPN offer support for keep alives?
4
votes
5answers
1k views
Keep session alive forever as stackoverflow
I need to keep the session live unless until the user clicks logout in my asp.net mvc(C#) application.
When the user closes the browser and opens again, the session should continue with the values.
...
3
votes
2answers
498 views
WCF wsHttpBinding with http keepalive
I have a WCF client which uses a wsHttpBinding, I would like to enable http keep-alive.
I'm hoping I can turn this on by just changing the client config... I've found plenty of descriptions of how to ...
3
votes
1answer
212 views
HTTP Keep-Alive for <1KB calls every 1 second
I am optimizing my web server settings to handle large number of concurrent users and one of the problems I'm running into is deciding whether or not to disable HTTP Keep-Alive.
I am using CDN for ...
3
votes
2answers
317 views
Http persistent connections limit
Clients that use persistent connections SHOULD limit the number of simultaneous
connections that they maintain to a given server. A single-user client SHOULD
NOT maintain more than 2 connections with ...
3
votes
7answers
2k views
c# ping a website? (keep-alive service)
is there a way in c# to be able to ping a url every 15 minutes and get a response back from the server?
i want to try to see if .net can be used to build a simple tool to have asp.net websites invoke ...
3
votes
1answer
2k views
How can I disable keep-alive on ASP.NET Web Service client requests?
I have a few web servers behind an Amazon EC2 load balancer. I'm using TCP balancing on port 80 (rather than HTTP balancing).
I have a client polling a Web Service (running on all web servers) for ...
3
votes
3answers
1k views
Keep alive code fails with new RDP client
For our Secure Terminal Server project, we have a need to keep the RDP session open, that is, to prevent the remote computer from timing out and locking the session. A little background:
We have ...
3
votes
5answers
642 views
Keeping a live connection with php?
I am working on a project has me constantly pinging a php script for new data, so if I understand this correctly that means that the php script being pinged gets run over and over indefinitely. It ...
3
votes
8answers
7k views
C# Console Application - Keep it running
I am about to develop a console application that will be required to continually run and carry out work at specific times.
My question is what is are best methods or practices to keep your ...
2
votes
1answer
84 views
Possible to enable Keep-alive with a load balancer?
I'm trying to optimize my web application using Google's Page Speed API which has highlighted the absence of "Keep-alive" in my HTTP response headers as a major page speed weakness.
In talking with ...
2
votes
5answers
155 views
How to keep alive Java objects?
I'm just thinking about a way of keeping away Java objects from garbage collection even if it is not being referred for a reasonable amount of time.
How to do that?
2
votes
2answers
128 views
JVM-based longpoll/comet client: routers killing idle connections
I currently have a JVM-based network client that does an HTTP long poll (aka comet) request using the standard java.net.HttpURLConnection. I have timeout set very high for the connection (1 hour). For ...
2
votes
1answer
111 views
Why is Connection: keep-alive still being specified in http headers (isn't it deprecated)?
According to "HTTP: The Definitive Guide", using
Connection: keep-alive
to specify a persistent connection is deprecated in HTTP/1.1, since HTTP/1.1 specifies that connections are persistent by ...
2
votes
2answers
302 views
CXF JAXRS client not reusing TCP connections
I'm using the JAX-RS support in CXF 2.2.5 to invoke REST webservices. I'm creating a single org.apache.cxf.jaxrs.client.WebClient instance for each endpoint I need to communicate with (typically one ...
2
votes
3answers
808 views
Node.js https.request with keep-alive header
I want to pull posts from a users Facebook wall.
The following code snippet works, but it never terminates:
var https = require('https');
facebookWall = function(user) {
var options = {
...
2
votes
2answers
291 views
Sending a Keep-Alive packet manually using sockets
I have a socket called "clientSock". It's connected and working.
I receive data using a loop in a thread, as follows:
char[] inputChars = new char[1024];
int charsRead = 0;
while (!stopNow) {
...
2
votes
2answers
1k views
How to use SO_KEEPALIVE option properly to detect that the client at the other end is down?
so I was trying to learn the usage of option SO_KEEPALIVE in socket programming in C language under Linux environment.
I created a server socket and used my browser to connect to it. It was ...
2
votes
2answers
1k views
Does WebClient use KeepAlive?
I need to issue around 50 HTTP requests to a single host (API calls). Performance is important, so I'd like to use HTTP KeepAlive's. Does WebClient support this?
2
votes
4answers
366 views
javascript code to prevent screensaver from starting
I am completely new to javascript programming and I have a question that I didn't manage to find an answer for anywhere.
I have recently put together a simple slideshow to view the photos remotely ...
2
votes
1answer
506 views
Create a WCF service hosted in IIS7 alive between request?
How can I keep a WCF service alive between requests?
The service is creating a simple cache in memory on initialisation and I dont want the service to have to re-initialise between requests.
The ...
2
votes
5answers
6k views
How to keep an iPhone app running on background fully operational
first of all, I know there is only support for voip, audio and location apps to run in background and that they will run just while the audio is been played or while using location services, etc.
...
2
votes
2answers
195 views
Is this a safe way of keeping an asp.net application alive without getting recycled?
I ve started a timer to visit my application every 20 minuates in Applicaiton_start in global.asax.
void Application_Start(object sender, EventArgs e)
{
System.Timers.Timer tm = new ...
2
votes
2answers
1k views
NSURLConnection and keep-alive
I have a small bug in my client app that uses NSURLConnection. I have tracked it down to an unexpected connection keep-alive that seems to confuse the web server (probably a bug on the server side). ...
2
votes
2answers
4k views
“Connection: Keep-Alive” in server response
I'm trying to establish a HTTP persistent connection from a Silverlight application to a PHP page (ie without creating a new TCP connection for each HTTP request) hosted by an Apache server.
To this ...
2
votes
3answers
2k views
Relation between HTTP Keep Alive duration and TCP timeout duration
I am trying to understand the relation between TCP/IP and HTTP timeout values. Are these two timeout values different or same? Most Web servers allow users to set the HTTP Keep Alive timeout value ...
2
votes
2answers
324 views
Keeping an ajax web page functioning after hours of being idle
I have a one page web app so there is no page refreshing. Sometimes I leave the page open overnight and I come back in the morning and start interacting with it again. Usually I find I have to ...
2
votes
5answers
536 views
Pushing data from the server to browser via http
In general chat application, client's browser always poll to server to check for new messages.
// the function to check new messages in server
function check(){
// but this question is less about ...
2
votes
1answer
4k views
apache proxy to tomcat keep alive confusion
I have an apache 2.2 server infront of a tomcat 6 server. using mod_proxy_ajp on apache to proxy requests to tomcat. pretty standard setup.
If I need to disable keep-alive connections for browsers, ...
2
votes
2answers
3k views
ASP.NET AJAX and keeping the Session alive - What is the standard way to do it?
Long time ASP.NET Webforms developer, new to Ajax development (mostly via the UpdatePanel control !).
Since no postbacks are happening the server does not reset the user’s session timeout counter, ...
2
votes
4answers
1k views
How to keep an App Engine/Java app running with deaf requests from a Java/Python web cron?
App Engine allows you 30 seconds to load your application
My application takes around 30 seconds - sometimes more, sometimes less. I don't know how to fix this.
If the app is idle (does not receive a ...
2
votes
5answers
831 views
Why are my ASP.NET pages returning `200 OK` without any authentication headers being sent?
Note:
This question has broadened in scope from previous revisions. I have tried to simplify the issue so it can be easily reproduced by anyone.
Using Fiddler, I can replay an arbitrary request ...
1
vote
1answer
82 views
ASP.NET Worker process getting killed when web app is inactive
My hosted ASP.NET MVC app takes long time (10-20 secs) when it launches. And after ASP.NET worker process is running, everything is normal. Problem is that the worker process is getting killed when ...
1
vote
0answers
94 views
HTTP socket keep-alive not working
I am writing a browser that sends http get requests constructed the same way browsers do. I want to test the "keep-alive" header so I send and receive the following package twice:
"POST /test.php ...
1
vote
1answer
123 views
Android http keepalive solution, but is it a permanent one?
I have a search button which accesses a server every time I press it. The problem is that if I press it multiple times in a row, it will work fine. However, if I wait 5 seconds, the first press won't ...
1
vote
2answers
130 views
How to add persistent connection support to a load-balanced HTTP webservice
We are working on an HTTP webservice load-balanced using haproxy. The webservice is accessed via SSL. It is a RESTful HTTP service and simply accepts JSON, does some work, and returns JSON. There is ...
1
vote
1answer
186 views
gracefully shutdown (multi-threaded) gSOAP service with http-keepalive enabled
I have a multi-threaded gSOAP service running with enabled http-keepalive. How can I gracefully shutdown the service when there are still clients connected?
A similar question was asked in gSoap: how ...
1
vote
2answers
35 views
Override previously used functions
I'm in the process of making an irc bot with PHP. While developing, I want to be able to dynamically load and unload classes/functions.
Mind you, the PHP is keep-alive.
ex:
Main File:
class stuff ...
1
vote
2answers
116 views
What is the minimum necessary code to keep a session alive in classic ASP?
I have a classic ASP site that I would like the sessions to stay alive as long as the user has a page open. So I used some Javascript to periodically call a 'keepalive' ASP page to keep the session ...