A feature of HTTP where the same connection is used for multiple requests, speeding up downloading of web pages with multiple resources.

learn more… | top users | synonyms

0
votes
0answers
15 views

android maps failing after vpn connection

I seem to have bumped into an interesting problem that I hope someone else has seen before. I am working on a VPN app and one of the features is a map showing your ip-address location both before and ...
0
votes
1answer
15 views

How to send Udp packet 2 or 3 times after failed received packet in java?

I have send Udp packet to the Server. If the server is OK then I can receive the response packet nicely but when the server is down then I did not get any response packet. Anybody can help me that how ...
0
votes
0answers
14 views

Apache Shared-hosting: How to check if Keep-Alive is enabled and its Time-out value

I'm using a shared-hosting with PHP 5.3.13, Apache 2.0 and CGI API. How do I check if the server has Keep-Alive enabled and the current keep-alive time-out value? I know that it is not possible to ...
1
vote
1answer
25 views

Test the functionality of keepalive in nodejs tcp socket

I've been testing the functionality of keepalive in nodejs tcp sockets. It seems that I'm missing something here! Here is my server code: var net = require('net'); function accept(socket) { ...
0
votes
0answers
8 views

Javascript to hit a page for session keepalive, but not change data on open page

So I have an edge case that I'm working through in which I have this code to keep a page alive: $(document).ready(function(){ s=self.setInterval("keepSessionAlive()",840000); }); function ...
0
votes
0answers
18 views

Setting keep-alive when using HttpConnectionManager

I'm using org.apache.commons.httpclient.MultiThreadedHttpConnectionManager and getting clients from there using HttpClient I'm trying to disable Keep-Alive What is the right way to do this? I ...
0
votes
1answer
26 views

SO_KEEPALIVE: Detecting connection lost or terminated

I have multiple threads who have a socket open with a client application each. Each of those threads receive an instruction from a main thread to send commands to the client (commands could be run ...
3
votes
1answer
62 views

How Does Spring MVC handle responses

I use Spring MVC and webflow. There are time where I am obliged to write to the response object directly. Specifically I have a keep-alive class that continuously sends an empty response back to the ...
0
votes
2answers
55 views

Keep Alive and Multiple SSO Domino HTTP configuration

I have some problem in this specific scenario: If my XPages application If I have my Domino HTTP configure with Single server setting the Ext.lib Keep-Alive control work well...and my session don't ...
-1
votes
1answer
50 views

Performance improvement in Tunneling HTTP over TCP

I have a design requirement which requires HTTP communication over underlying TCP networking module ...
1
vote
0answers
59 views

How does Apache handle keep-alive connections for multiple clients on the same proxy?

I am dealing with performance issues and having trouble wrapping my head around Apache keep-alive connections. I understand that Apache is able to maintain a TCP connection for multiple requests, but ...
0
votes
1answer
95 views

Http connection using apache.DefaultHttpClient goes into TIME_WAIT not getting reused

We have a pool(GenericObjectPool) of HttpClient(apache.DefaultHttpClient) objects. HttpPost objects are put into for execution through these clients may Post request are sent simultaneously. The ...
2
votes
0answers
60 views

jsch : how to keep the session alive and up

I'm writing java GUI program for static route management using SSH. My code is as follows: import com.jcraft.jsch.*; import java.io.*; public class Konsep { String status; static String ...
1
vote
1answer
53 views

Reusing an Asio connection

I am working on a project currently where I have a web-server. I have to add the ability so that for each request, I need to send multiple requests to other servers, get responses, and send back ...
0
votes
0answers
36 views

How can I re-establish connection with server after keep-alive timeout to download a HTML5 video [closed]

I have a site based on wordpress, hosted on a shared server (to be specific, hostgator). I uploaded some videos on that site, and using Video-js plugin for wordpress, I want to show HTML5 videos. The ...
0
votes
1answer
37 views

How to know the keep alive interval needed for most router?

Most devices nowadays are behind NAT. When we make connection to server, router will create mapping for this connection and keep this mapping alive for some time. In order to keep this mapping, we ...
1
vote
2answers
221 views

NSStream TCP Keep-alive iOS

I have written this code to setup a stream with a server: -(void)streamOpenWithIp:(NSString *)ip withPortNumber:(int)portNumber; { CFReadStreamRef readStream; CFWriteStreamRef ...
1
vote
1answer
156 views

Managing server's HTTP keep-alive timeout with Netty

I am running an application server using the Play! Framework, which uses Netty for the actual IO heavy lifting. The HTTP connections have keep-alive turned on (which is the default for HTTP 1.1), and ...
0
votes
1answer
210 views

Nginx close keep-alive connection from php

Hello Everybody I have trouble with nginx server . I have configured nginx with keep alive connection. keepalive_timeout 65; And connect to server with persistent connection , i send many request ...
0
votes
1answer
88 views

openssl s_client losing connection after each request

I'm playing around with openssl s_client and a webserver and I wonder why I'm losing the connection to the server after each GET request I send: Handshake works fine: openssl s_client -connect ...
0
votes
2answers
77 views

ssl handshake again for wss after initial for https?

Assume a 100% secure websocket site where the webserver serves all files: html, js, css, etc, and the websocket serves all data between client and server. Obviously the initial ssl handshake is ...
0
votes
1answer
117 views

spdy faster than keep-alive https?

I've seen Is SPDY any different than http multiplexing over keep alive connections and Difference between http pipeling and http multiplexing with spdy but also ...
0
votes
0answers
177 views

Android, PARTIAL_WAKE_LOCK and Sleep Mode

I wrote an application with one activity and remote service. The main goal of this service is keep net connection with remote TCP server. I use in activity PARTIAL_WAKE_LOCK to prevent system going in ...
0
votes
2answers
79 views

How to turn off ruby thin server HTTP keep-alive?

Currently I am spawning HTTP server within my program programmatically. srv = Thin::Server.start('0.0.0.0', 3000, app) And I can't figure out where should I see to change keep-alive time setting. ...
0
votes
1answer
80 views

Prevent JAXRSClientFactory to reuse connections

I am using JAXRSClientFactory to instantiate REST clients for integration test purpose. Between two tests, I restart my Jetty server, and instantiate new REST clients, to the same URL. However, it ...
0
votes
1answer
284 views

How to keep XMPP connection alive in the App?

I am currently working on an application that uses asmack lib to connect to a XMPP Server. This application basically includes Sending/receiving messages, changing statuses, etc. At the moment, the ...
6
votes
1answer
424 views

AFNetworking/NSURLConnection HTTPS keep alive shows strange behaviour

We're currently dealing with a performance issues in our app, and we believe that some of these issues might be related to the fact that the app and the underlying AFNetworking network stack seems to ...
0
votes
0answers
47 views

Keep-alive connections sometimes dies for 120 seconds

I have the program, that opens keep-alive connection to the server and sends data. Sometimes connection freezes. Client close connection after 15 second wait and open another one. But this connection ...
2
votes
3answers
168 views

How do I shutdown a Node.js http(s) server immediately?

I have a Node.js application that contains an http(s) server. In a specific case, I need to shutdown this server programmatically. What I am currently doing is calling its close() function, but this ...
0
votes
1answer
64 views

Facebook graph api and keep alive connections

We want to reduce the https connect latency to facebook graph servers. We have configured our servers to do a http keep alive. However, it looks like the connection gets closed after every call (from ...
2
votes
0answers
330 views

Android DefaultHTTPConnection with Keep-Alive does not reuse TCP connection

I am trying to reuse HTTP connections with Keep Alive. The server supports Keep Alive, I send the Connection: Keep-Alive HTTP headers and still the connection is FIN (initiated by the Android client) ...
-1
votes
1answer
346 views

http 1.0 keep-alive server and curl

I'm busy with my own http server implementation on an embedded platform. Technically the server is HTTP 1.0 compliant, and therefore it expects the the client to send the header "Connection: ...
0
votes
2answers
62 views

What is the advised length of time to keep a keep-alive connection (http) open?

My question is: What is the advised length of time to keep a keep-alive connection (http) open?
0
votes
1answer
168 views

Using Keep Alive in Requests module - Python 2.7

My internet connection has an issue. Around 50% of times, web pages don't load because of DNS look up failing. Just reloading page works, and I am able to browse like that. However, I am also using ...
2
votes
1answer
336 views

Reuse of keep-alive HTTP web request object

Lets say I want to send 10 requests where each has different URI (same host, but different resource) and I want to reuse the connection in a way that first request creates keep-alive persistent ...
0
votes
1answer
93 views

https keep-alive?

I know how to do it for http, and it's pretty easy. But how do you do it for https in iis? If the method linked above is supposed to do it for https, it doesn't work on mine, or at least I receive ...
1
vote
1answer
77 views

Trouble with a Python server

I have a few test clients that are encountering the same issue each time. The clients can connect, and they can send their first message, but after that the server stops responding to that client. I ...
-3
votes
1answer
117 views

how to keep a windows application alive in C#?

I have an application with the following code in my main function: var timer = new System.Threading.Timer(Callback_f, null, TimeSpan.Zero, TimeSpan.FromMinutes(srcInterval)); Okay this ...
0
votes
1answer
119 views

Restlet: persistent connection

I am trying to create a Restlet server that will handle long sessions with its clients. So after handling the first request i want to be able to keep the current http connection open and save it in a ...
0
votes
1answer
121 views

How to make Symfony2 return HTTP Response with Connection: Keep-Alive?

I'm using Symfony2 to create a REST API server for my application in the backend, and was thinking of reusing the same HTTP connection for subsequent queries using Http Keep-Alive, but after every ...
0
votes
0answers
83 views

Tell browser to not use Connection: keep-alive HTTP header

Is there a way to tell the browser to not include Connection: keep-alive in the http request it send? I'm interested in it for debugging reasons, if there's a better to debug my web server I'd also be ...
6
votes
1answer
386 views

Netty: Should I close the Channel if it's a 'keep-alive' connection?

I'm writing an HTTP server with Netty. I set the keep-alive option when I create server bootstrap. bootstrap.setOption("child.keepAlive", true); Each time I write an HTTP response, I set the ...
1
vote
1answer
144 views

Express.js close response

Is there a way to close a response? I can use res.end() but it doesn't actually close the socket. What I want to achieve: I am writing a Java program which interfaces with the network, and I am ...
2
votes
1answer
411 views

Unable to use CPAN with proxy authentication. Getting keep_alive error

I am unable to install any module in perl which required proxy authentication. I configured perl with proxy credentials using cpan[2]> o conf init /proxy/ I get below error when i try to install any ...
3
votes
1answer
633 views

How to configure keep-alive timeout in playframework 2

I use playframework 2.0 in production and I see a rapidly growing number of files open by the corresponding java process. I changed the default allowed number of open files for a process from 1024 to ...
0
votes
0answers
231 views

TCP Keep-alive does not detect a dead client

I have added Keep-alive message in server in order to know about client. In my program server is keep on running and sending data to client. My problem is if client disconnect server never come to ...
1
vote
0answers
172 views

Keeping a XMPP connection alive or (re)connect on activity start up

I'm currently working on an application that uses asmack source to connect to a XMPP Server. This application basically includes all the default messenger attributes (Sending/receiving messages, ...
1
vote
1answer
205 views

REST Web Service and Keep-Alive

I'm setting up a web application, service oriented. The UI part (a web app) is consuming REST web services I'm coding too. So I have hand on both server and client side. I was just wondering if it ...
0
votes
1answer
93 views

How can I enable “keep-alive” if I'm with a web farm/cluster as a webhost, and they don't honor it?

I'm with a webhost for my company's website that has 47 pages (asp.net 4/vb). All speed tests, Google, Yslow, Gtmetrix, etc., want me to enable keep-alive. I have already set http header requests to ...
0
votes
2answers
184 views

How to force an android device to stay alive while the application is running

I need to force the android device to stay alive while the application is running. There any way to do this ? I read here : Is there a way to force an android device to stay awake? about this, I ...

1 2 3 4 5 6