The keepalive tag has no wiki summary.
3
votes
2answers
193 views
Getting disconnection notification using TCP Keep-Alive on write blocked socket
I use TCP Keep-Alive option to detect dead connection. It works well with connection that use reading sockets:
setsockopt(mysock,...) // set various keep alive options
...
0
votes
2answers
95 views
SO_KEEPALIVE on existing java application
I need to activate SO_KEEPALIVE on an existing commercial java application because my firewall drops the connections after some inactivity. I do not own the source code so i can't change it (it would ...
1
vote
0answers
128 views
Determining if existing connections are using TCP KeepAlive under Windows
In Windows (Vista and later) is there a way, or a tool, that can aide in determining wether an existing, already established, outgoing TCP connection, was created with the SO_KEEPALIVE option.
On ...
2
votes
3answers
228 views
Keepalive time - cannot reduce below one minute in C++
I implement a keepalive time in a C++ application that is writing to a TCP port via the code below. It's not shown, but I actually do a check for a valid return status to verify that setting the ...
0
votes
0answers
31 views
pycurl tests/tests_socketopen.py crash
import pycurl
import StringIO
import socket
def socketopen(family, socktype, protocol):
print family, socktype, protocol
s = socket.socket(family, socktype, protocol)
...
0
votes
0answers
145 views
Squid and Apache Keepalive
I'm using Squid 3.2.6 in front of Event MPM Apache. Now I know for sure Varnish benefits from Apache keepalive being on, because it reuses/recycles the connection. However, as far as I can tell, ...
0
votes
2answers
309 views
Persistent/Keepalive HTTP client implementation of Erlang
I am confused about the keep-alive feature of Erlang inets and also the ibrowse http client(latest version). According to the RFC:
8.1.2.2 Pipelining
A client that supports persistent ...
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
2answers
369 views
WCF: keeping a client alive and time to close it
I have a wrapper around a WCF service APIs
Class APIWrapper
{
private WCFClient _client;
//constructor opens a client connection
public APIWrapper()
{
_client = new WCFClient();
...
2
votes
1answer
154 views
How keep alive user control?
I have wizard project that works with ContentControl which contains user controls.
I do the instantiation through the XAML file at my main window:
<DataTemplate DataType="{x:Type ...
0
votes
0answers
261 views
Node.js socket.setKeepAlive does not seem to work
folks, I need an advice about socket.setKeepAlive functionality of node.js. Put simply, it doesn't seem to work on linux box (I'm using netstat -anpo command to see the keepalive status, and there are ...
2
votes
1answer
1k views
Proper use of KeepAlive in Apache Htaccess
What is the difference between:
Header set Connection keep-alive
and
KeepAlive on
in Apache htaccess?
1
vote
1answer
407 views
Proper use of Header set Connection Keep-Alive (Apache)
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
In order to make files reloading bit faster, a server needs the Keep Alive enabled in Apache. Some questions ...
0
votes
1answer
1k views
active connections of nginx keep growing
I have several nginx web servers as reverse proxy.
I found out that the active connections(including reading writing and waiting , seen from http_stub_status module) in some of the servers(not ...
1
vote
1answer
2k views
How to keep HTTP session cookies in HttpContext between activities on Android?
Here is current simple description my app. It uses some remote server API, which uses standart HTTP session.
Login activity. It calls auth class, passing login and password.
public class Auth extends ...
2
votes
1answer
805 views
Using SignalR Hubs, connection is lost after some time - why?
In my SignalR app, callbacks are fired as expected on a page. If the page is left for some time, callbacks are no longer invoked on that page until it is refreshed.
I suspect that this could be due ...
0
votes
0answers
839 views
HAProxy does not work with Rabbitmq?
I have configured HA proxy and keepalived for rabbbitmq server.
i have install Debian squeeze 6.04 with rabbbitmq 2.5.0 and enlarge 14.b.2.1,with cluster and mirror queue.
i have check cluster status ...
0
votes
1answer
1k views
How to implement TCP KeepAlive in VB.NET on a TCP Client(socket)
I want to implement the TCP KeepAlive in order to check dropped connections by running a timer.
In my case, I have a TCP Client (using socket class) and a third party server (i have no control on ...
1
vote
0answers
231 views
Simulating multiple HTTP Clients from single machine c#
I am load testing our web application. I would like to simulate 600 clients as follows:
Open 600 thread for 600 client
every client connects to server and send some request and response
What I ...
2
votes
1answer
786 views
Socket keep alive not working on Linux
We have a Java app that uses sockets with TCP keep alive enabled
Socket.setKeepAlive(true)
http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setKeepAlive(boolean)
Our tests show the keep ...
2
votes
1answer
990 views
PHP socket server, check if client is alive
i have a php server listening for 1 c# client.
When a connection is established, it is kept alive until client send command "quit" wich kills the PHP server.
But when the c# client disconnect ...
1
vote
1answer
166 views
ruby on apache not keeping connection alive
I have a ruby on rails app serving an API. It's legacy and we've already built a replacement on a more suitable stack, so no such suggestions in that direction needed :)
But we need to improve the ...
9
votes
3answers
4k 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 ...
0
votes
1answer
218 views
Preventing EOF message on a Java RMI socket connection
I have a Java application which uses RMI for client/server communication.
To secure this communication the traffic is tunneled through an ssh connection.
Everything works well, except that the ...
2
votes
1answer
1k views
JMeter, Jetty Performance test and Keep-Alive issues
Ok, so I created a very simple WAR which serves a simple Hello World .jsp. With all the HTML it's about 200bytes.
Deployed it on my server running Jetty 7.5.x jdk 6u27
On my client computer create ...
1
vote
5answers
2k views
SO_KEEPALIVE does not work during a call to write()?
I'm developing a socket application, which must must be to be robust to network failures.
The application has 2 running threads, one waiting messages from the socket (a read() loop) and the other ...
4
votes
1answer
3k views
Keep XMPP connection (using asmack) alive on Android
I'm developing an application that receives push notifications via XMPP ( I know C2DM, but it has some limitations and I can't use because of it ), the problem is the connection that after some time ...
-1
votes
1answer
58 views
MVC2 renders previous value while chaining item in for loop
I have list within a model and i bind it through the loop to the Text Box. If I change the number of items in the list, it renders the previous value. Following is the code
<% for (int j ...
2
votes
1answer
1k views
SMTP alert not working for keepalived
I have been working on a project that will establish a set of highly available load balancers. The load balancing and high availability software seems to work just fine (I am using Crossroads to load ...
0
votes
1answer
103 views
Best way to test application services from outside the application
I have a spring application that uses several services such as MySQL, PostgreSQL, and a Bing's location web service. They all work fine and I have some unit and integration tests to make sure they ...
0
votes
3answers
1k views
Apache KeepAlive on API Server
I have a LAMP server (Quad Core Debian with 4GB RAM, Apache 2.2 and PHP 5.3) with Rackspace which is used as an API Server. I would like to know what is the best KeepAlive option for Apache given our ...
2
votes
1answer
3k views
How to do keepalive http request with curl?
How can I request multiple pages from the same web server within the same connection?
So the client side need to extract the response for each request,of course it's the server's job to make the ...
2
votes
1answer
679 views
launchd NetworkState when no network connection
Anyone familiar with launchd on Mac OS X, specifically the NetworkState (bool) key in the KeepAlive section of a .plist file?
From the man pages, launchd should call an executable when there is no ...
0
votes
1answer
333 views
Technology stack for keep-alive web site
The most common technology stack for websites is Lamp, partly because it's available everywhere, and partly because the programming model is so simple: every request to the server generates a single ...
1
vote
0answers
288 views
threaded 'NOOP' command during retrbinary
I've written an FTP script that must unfortunately deal with a server that's behind a firewall. The ISP also cuts of my control connection quite early, no matter what kind of timeout settings I might ...
1
vote
5answers
2k views
How do I keep a Perl script running on Unix after I log off?
I have a script that takes a lot of time to complete.
Instead of waiting for it to finish, I'd rather just log out and retrieve its output later on.
I've tried;
at -m -t 03030205 -f ...
1
vote
1answer
1k views
What event is raised when a .Net Sockets Keep Alive does not receive an ackowledgement?
I have configured my C# .Net socket using
m_clientSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.KeepAlive, Convert.ToInt32(True))
...
1
vote
1answer
2k views
Windows TCP socket has SO_KEEPALIVE enabled by default?
I've encountered a strange bug with TCP sockets. It seems that SO_KEEPALIVE is enabled on all sockets by default.
I wrote a short test case to create a socket and connect to a server. Immediately ...
3
votes
1answer
2k views
How to stay alive in HTTP/1.1 using python urllib
For now I am doing this: (Python3, urllib)
url = 'someurl'
headers = '(('HOST', 'somehost'), /
('Connection', 'keep-alive'),/
('Accept-Encoding' , 'gzip,deflate'))
opener = ...
0
votes
1answer
529 views
Website page load time and keep-alive http connections
Background: I prefer to keep all my CSS and Javascript in separate .css/.js files. (Reason is that they are shared by many pages so in this way, static data in those file would not get transferred ...
3
votes
1answer
2k views
How to test HTTP Keep alive is actually working
I know HTTP keep-alive is on by default in HTTP 1.1 but I want to find a way to confirm that it is actually working.
Does anyone know of a simple way to test from a web browser (EG how to make sense ...
4
votes
1answer
206 views
Should I put KeepAlive inside my finally block?
So this tells me that I should put a GC.KeepAlive at the end of my code to keep my mutex open (to prevent multiple instances of my app happening due to early GC disposal of my mutex). But should I ...
1
vote
1answer
508 views
Does IIS / ASP.NET make use of TCP keepalive option? (this question is not about the HTTP Keep-Alive)
Does IIS / ASP.NET make use of TCP keepalive option? What are the config parameters that affect it's use?
Please note that this question is not about the HTTP Keep-Alive option.
0
votes
2answers
525 views
How does IIS / ASP.NET handle dead connections? (no HTTP Keep-Alive in effect)
Can IIS / ASP.NET make use of the TCP keepalive option to detect dead connections? Note that these connections do not have the HTTP Keep-Alive option in effect. These are connections, just abandoned ...
0
votes
1answer
149 views
PageFunction not being disposed of causes crash
I have a WPF "wizard" where I am using PageFunction objects to display the various pages in the wizard. Several of these pages use references to objects in other assemblies within the application so ...
1
vote
2answers
1k views
Site incredibly slow for firefox, instant on every other browser: KeepAlive issue?
I have a site where a page takes 10 seconds to load with firefox, and a further 10 seconds to load the images. It's a php page running on apache. The Images are just static images.
It runs ...
0
votes
0answers
680 views
TCP keepalive sent almost right after connection
I'm trying to implement an persistent TCP connection between an Android phone and a desktop server.
I've got heartbeat threads on both ends which are sending keepalive-packets on application level ...
0
votes
1answer
1k views
How to break connections TCP/IP by keepalive postgreSQL without changing anything in the register?
Hy,
I have a system working with the client-server structure and PostgreSQL 8.4.
My problem is that if a client is editing a record and lose his connection to the server,the TCPIP connection is ...
0
votes
1answer
1k views
apache2 ignores MaxKeepAliveRequests, closes connections arbitrarily
We have a Tomcat front-end server that proxies to our Apache 2.2.11 app server, running on a 64-bit Fedora 2.6.21.7 EC2 2xlarge instance (AKI aki-b51cf9dc). Apache is running mod_perl and is not ...
1
vote
1answer
327 views
Disconnect a jquery connection after an inactivity period
I'm using TCP keepalive on the server side to keep the connection alive, and notify the server if the client dies. How can I configure jQuery.get() to disconnect the connection after a certain period ...