Tagged Questions
0
votes
0answers
11 views
socket_connect does not timeout
I am using sockets to send data to a server that may not be responding. So I am trying to define a timeout by using this solution in SO.
Make PHP socket_connect timeout
socket_set_option($socket, ...
1
vote
1answer
18 views
TCP Socket binding timeout
I have questions about the time limit for the tcp binding socket in server side.
In my survey, I found if the tcp client socket send the close message to the server, the client will enter to ...
0
votes
0answers
21 views
ObjectInputStream Blocking socket external ip madness
When I initialize my objectinputstreams, after I have initialized and flushed by objectoutputstreams, I get this:
Client:
java.net.SocketTimeoutException: Read timed out
at ...
0
votes
0answers
19 views
Getting ConnectException intermittently from HSQLDB
We have a setup of 2 tomcats running in distributed mode
which connect to 2 HSQLDB running in HA mode on both the nodes.
The Tomcat Logs are showing ConnectExceptions at certain intervals. An ...
0
votes
1answer
48 views
Timeout implementation in C for TFTP
I am trying to implement the the timeout mechanism in my c implementation of TFTP, and i am looking for some general help.
What I am wondering is how to manage the timeout situation. The premature ...
0
votes
1answer
56 views
HttpClient hangs on socketRead0 with successfully executed method
In our web-application A user can submit a url. We will fetch the data and parse it server side. For each request we use an HttpClient with the following (relevant) settings
...
0
votes
1answer
47 views
How to change Java ROME parser default socket timeout?
I am parsing a fair amount of RSS feeds in cascade using Java ROME as my XML parser.
Sometimes one of the RSS feeds might be unreachable because of network issues, which results in a Socket timeout ...
0
votes
0answers
101 views
select() wont timeout after send()
I started to lock into socket programming an got into a little trouble:
I created the small program below which sends a message via udp an receives one if possible in a loop. I want to try that with ...
0
votes
1answer
96 views
uwsgi long timeouts
I am using ubuntu 12, nginx, uwsgi 1.9 with socket, django 1.5.
Config:
[uwsgi]
base_path = /home/someuser/web/
module = server.manage_uwsgi
uid = www-data
gid = www-data
virtualenv = /home/someuser
...
1
vote
1answer
101 views
java socket timeout behaviour
If I set soTimeout on java sockets what will be the behaviour in case of active peer vs passive peer. For instance if I have a readtimeout value 1 minute and having a file transfer and which takes 5 ...
4
votes
2answers
202 views
Enforce socket timeout on ActiveMQ from Camel route?
So below I have Camel (via Spring DSL) successfully integrating my beans with ActiveMQ queues:
<!-- Note: this code is just a snippet; if you need to see more, please let me know! -->
...
2
votes
2answers
304 views
connect() returns “Operation now in progress” on blocking socket?
I have a blocking socket (at least it appears so in following code):
sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (sock < 0) {
ERROR("%s: error opening socket", ...
-1
votes
1answer
90 views
Can Socket still be used after Timeout?
Is it possible to continue using a .NET Socket after synchronous Send/Receive method throws a SocketException because of exceeding the specified Send/Receive Timeout? Here it is said that methods will ...
0
votes
1answer
66 views
How to properly use timeout parameter in select?
I'm new to socket programming (and somewhat to Python too) and I'm having trouble getting the select timeout to work the way I want to (on the server side). Before clients connect, timeout works just ...
0
votes
0answers
103 views
onvif test tool running in windows 7 can't be accessed from other linux machine
I am implementing the onvif service in NVT. Here I met a weird problem as followings. Anyone can help me?
Environment: ONVIF test tool (12.06), host machine: windows 7
NVT: Ubuntu10.04
...
2
votes
2answers
177 views
Making a connection with Socket.connect using timeout
I'm making a java TCP connection using the Socket class.
Socket socket = new Socket();
socket.connect(new InetSocketAddress(host,port),50);
I want this connection to be established fast or not ...
0
votes
2answers
113 views
Can setConnectionTimeout stop a download from completing
I am downloading a file in my app and using the following time-outs.
HttpParams httpParameters = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParameters, 5000);
...
1
vote
3answers
81 views
Detecting a timed out socket from a set of sockets
I'm currently building a server using winsock . My server will deal with multiple clients, so I am using select() function and the read, write and exception sets. I already know that if a particular ...
1
vote
1answer
100 views
how to send reponse when timeout in node.js http module
On nodejs.org socket.setTimeout, it says
When an idle timeout is triggered the socket will receive a 'timeout' event but the connection will not be severed.
But when I test code like this:
var ...
0
votes
1answer
190 views
TcpClient connection broken after timeout
I am setting timeout for a TcpClient using TcpClient.ReceiveTimeout property. When the TcpClient.Read() method throws an exception ("connected party did not properly respond after a period of time") ...
0
votes
1answer
289 views
libev sets sockets to blocking with no timeout
Rant: I really dislike boost::asio, So I've been looking at alternatives and came across libev. Which seems simple enough for me, but is doing a few things I cannot understand. If those are too many ...
1
vote
3answers
836 views
Android TCP Sockets timeout
I'm doing an app which needs to communicate with TCP sockets. I set up a Service which is my TCP Server and an activity which is my TCP Client.
I have a big delay from sending a message and receiving ...
0
votes
0answers
32 views
Timeout not happening with Zend_HTTP_Cllient
An application is using Zend_HTTP_Client to connect to a site, and read the content. If the content is correct ( correct for the sake of example, is eaqual 'AAA'), some things happen which are ...
0
votes
0answers
133 views
PHP disable socket timeout
I'm at a standstill with this telnet script I'm trying to perfect. The scripts job is to interpret a command on the telnet connection and execute different commands based upon it. It's executed as a ...
0
votes
0answers
190 views
maximum timeout value in openning socket connection in different platforms
We have an application that uses java Socket class to make connection to its server. We have configurable setting to set read timeout after application open the connection using setSoTimeout. ...
0
votes
1answer
84 views
Socket timeout within a good connection [closed]
We have a server, that works with sockets using asynch calls like BeginSend. Servers are in Germany. One of our protocol message size is about 300 kilobytes. We send it to clients sockets usind ...
4
votes
2answers
232 views
Erlang socket and receive timeout
How to set receive timeout for socket, i could not find it in the socket option man.
my first soluation to the problem is to put after statement.
{ok, Listen} = gen_tcp:listen(Port, [..,{active, ...
0
votes
0answers
121 views
android onActivityResult socket timeout
When I try to start a socket from onActivityResult it always times out... What I was trying to do was start the Activity that starts the socket connection from onActivityResult with no success, ...
0
votes
1answer
248 views
Java socket, set connect timeout and so timeout, but still stuck when getting inputStream
Here's my code
Socket s = new Socket();
s.setSoTimeout(5000);
s.connect(url, 5000);
InputStreamReader inputStreamReader = new InputStreamReader(s.getInputStream());
BufferedReader bufferedReader = ...
3
votes
3answers
303 views
What is the standard socket timeout(seconds) in Ruby socket programming?
I am writing a Ruby client which will open tcp socket and stream data.
If I could not able to open socket within 20 secs I will trigger the Timeout error.
begin
Timeout::timeout(20) { socket = ...
3
votes
3answers
269 views
Socket not closing when timeout set [closed]
I am new to socket programming, and have a piece of code which opens a socket and writes into it. I set the timeout for the socket as one minute, and want to close the socket and exit after I reach a ...
2
votes
2answers
213 views
Android Connection to WebSocket hang
In my Android project I implemented a Faye client. But, when I call SocketChannel.socket().connect(...), the connection hangs and the next line does not run. It is as if I don`t set the timeout, or ...
4
votes
2answers
3k views
Java: socket read time out exception
I trying to make a call to a very heavy duty process.
It's average work length is estimated by 9-10 minutes.
When I'm executing the process, I set the timeout for a ridiculously huge number: ...
0
votes
1answer
1k views
Adding timeout to DatagramSocket - receive()
I need to create a 10 second timeout on this part of the code
DatagramPacket getack = new DatagramPacket(incoming, incoming.length);
socket.receive(getack);
I need it to listed for incoming ...
0
votes
1answer
72 views
Trying to connect to a suspended ElasticSearch server using Rubberband hangs forever and never returns
I'm trying to debug a very weird issue that is happening on our environments.
I have a Rails app running on ree-1.8.7-2011.12 that is exhibiting an strange behavior when the ElasticSearch server it ...
2
votes
3answers
208 views
How to know response time of a website? [duplicate]
Possible Duplicate:
Measuring ping latency of a server - Python
There are a few servers such as
http://server1.stackoverflow.com
http://server2.stackoverflow.com
...
2
votes
2answers
987 views
Make PHP socket_connect timeout
I have a small application I created to analyze the network connection. It runs from a browser and connects to a local PHP/Apache server. It then asks PHP to send a ping packet through a raw socket. ...
3
votes
2answers
228 views
C++ - Interrupt a receiving socket
I have a WinSock mySocket that receives in a loop like so:
while(keepGoing){
FD_SET fsd;
FD_ZERO(&fds);
FD_SET(mySocket, &fds);
int result = select(1+mySocket, &fds, ...
1
vote
4answers
3k views
Do TCP sockets automatically close after some time if no data is sent?
I have a client server situation where the client opens a TCP socket to the server, and sometimes long periods of time will pass with no data being sent between them. I have encountered an issue where ...
0
votes
1answer
333 views
How to set the keepAlive for socket on linux
I'm trying to download a large file using apache FtpCiient and I continually timeout every 2 hours.
So, I've set FTPClient.setDataTimeout(readTimeoutInMs); to 3 hours
It works on windows but not on ...
6
votes
4answers
1k views
Keeping a socket connection alive in iOS
I have the following code written in Objective-C that writes data to a socket. The server is running node.js on top of Ubuntu:
NSString *url = @"anIPAddress";
CFReadStreamRef readStream;
...
0
votes
0answers
86 views
For how long can a local socket connection be held open
I'm implementing some IPC stuff. STDIN/STDOUT are already polluted with debug data and named pipes seem to complex.
I want to rely on regular HTTP connections to do the job. So, background process ...
0
votes
1answer
709 views
SocketTimeout exception while connecting to a webservice from Android Device(Device only not emulator)
I am able to successfully make call to a .net webservice from my android app. tested it with Emulator (2.2 apilevel 8 to 4.0.3 api level 15) and it worked great.
I am now trying to test the same code ...
1
vote
1answer
405 views
setting connect timeout for Net::LDAP
I have perl code running under mod_perl which connects to the openldap server slapd using the Net::LDAP module.
I am trying to set a connect timeout like this:
my $ldap = Net::LDAP->new($server, ...
0
votes
2answers
116 views
Socket always timing out in the end
I have a code where I need to capture some information from a equipment. This equipment have a socket connection. Basically is this:
I send a command a have this returned:
<some info>
<some ...
0
votes
2answers
177 views
How to determine that the current client socket has closed and connect to another server?
I want to implement a handler in my code to allow a client to automatically connect to a second instance of a server on the same network if the server connected to this client is not responding after ...
1
vote
0answers
374 views
WCF Service - Socket Connection Was Aborted
I have searched and tried a lot of common solutions but can't seem to get rid of this error.
I am using a WCF Service in a Web Application in .net Framework 4.0 with webHttpBinding, and it apparently ...
0
votes
1answer
118 views
.NET: How can I keep using a socket after a read timeout?
In my application, I want to have a polling loop which blocks on a socket receive operation but times out after 100 ms. This would allow me to exit the loop when I want (e.g. the user clicks something ...
2
votes
2answers
226 views
Socket: Connect will spend 2 minutes looking for IP before it timesOut. How to reduce that time?
I want to reduce the allowed timeOut time that socket:connect will take to look up an IP/Port to connect to? On some network routers like Netgear that use IP 10.0.0.x only takes less than a second to ...
0
votes
1answer
189 views
Handler socket timers on read/write
How do you set timeouts with read and write (sockets)? and test them?
struct timeval timeout;
timeout.tv_sec = 3;
timeout.tv_usec = 0;
setsockopt (fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&timeout,
...


