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
Artificially create a connection timeout error
Connect to an existing host but to a port that is blocked by the firewall that simply drops TCP SYN packets. For example, www.google.com:81.
…
0
votes
How should one go about choosing a default TCP/IP port for a new service?
Choose a default port that doesn't interfere with the most common daemons and servers. Also make sure that the port number isn't listed as an attack vector for some virus -- some companies have str …
0
votes
How can I discover if there are other devices on my local sub-net?
Not receiving any responses to ICMP pings or ARP requests is not a 100% guarantee that there's no network connection. For instances, there might be devices on the network that are firewalled off. …
1
vote
What causes a TCP/IP reset (RST) flag to be sent?
Run a packet sniffer (e.g., Wireshark) also on the peer to see whether it's the peer who's sending the RST or someone in the middle.
…
0
votes
rtsp over http over a proxy
See whether issuing the same request but bypassing the proxy (e.g., replay the request you posted above using Netcat) results in more than four bytes streamed in the response body.
S …
