18
votes
8answers
2k views
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
As a follow up to a recent question (http://stackoverflow.com/questions/151590/java-how-do-detect-a …
1
vote
Sockets and Processes in Java
If your socket code has to run on a BlackBerry, you cannot using standard Java sockets. You have to use the J2ME Connector.open API for creating both types of sockets (those that initiate connectio …
2
votes
Sending a 4 byte message header from C# client to a Java Server
As everyone here has already pointed out, the issue is most likely caused by the C# application sending ints in little-endian order whereas the Java app expects them in network order (big-endian). …
0
votes
Python sockets suddenly timing out?
The first thing I would check is whether you need to connect via an HTTP proxy (in which case direct connections bypassing the proxy will likely time out). Run Wireshark and see what happens.
…
0
votes
Desperate networking question: Unix commands like ping, ssh, work fine but socket-based programs are failing in connect
Try pointing connect() to the same host:port where your SSH command works. Also, keep in mind that some firewalls can apply different rules for different user accounts (and sometimes for different …
0
votes
Why do I get “java.net.BindException: Only one usage of each socket address” if netstat says something else?
I must say I also thought that it's the usual issue solved by setReuseAddress(true). However, the error message in that case is usually something along the lines that the JVM can't bind to the port …
1
vote
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
Since none of the answers so far fully answer the question, I'm summarizing my current understanding of the issue.
When a TCP connection is established and one peer calls close() …
2
votes
Why do SocketChannel writes always complete for the full amount even on non-blocking sockets?
I managed to reproduce a situation that might be similar to yours. I think, ironically enough, your recipient is consuming the data faster than you're writing it.
import java.io.Inp …
0
votes
Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams?
Interesting bug! You say though that you can't use FileChannel#transferTo. How about wrapping the I/O streams of the non-NIO socket into channels using Channesl#newChannel before passing to FileCha …
1
vote
HTTP 1.1 Persistent Connections using Sockets in Java
According to your code, the only time you'll even reach the statements dealing with sending the second request is when the server closes the output stream (your input stream) after receiving/respo …
4
votes
TCP connection quality in .NET
Firstly, you should inspect the details of the SocketExceptions you're getting. I don't know what they contain in .Net, but in Java the detailed message provides a useful hint, such as "Connection …
1
vote
Are socket connections faster than http on Blackberry?
One difference between a socket and an HTTP connection on the BlackBerry is that HTTP connections may be transparently routed via an HTTP proxy in the case of BES and BIS connections.
…
