User Alexander - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T04:59:07Zhttp://stackoverflow.com/feeds/user/16724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155243/why-is-it-impossible-without-attempting-i-o-to-detect-that-tcp-socket-was-grace18Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?Alexander2008-09-30T21:49:06Z2009-11-20T22:13:17Z
<p>As a follow up to a recent question (<a href="http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close">http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close</a>), I wonder why it is impossible in Java, without attempting reading/writing on a TCP socket, to detect that the socket has been gracefully closed by the peer? This seems to be the case regardless of whether one uses the pre-NIO <code>Socket</code> or the NIO <code>SocketChannel</code>.</p>
<p>When a peer gracefully closes a TCP connection, the TCP stacks on both sides of the connection know about the fact. The server-side (the one that initiates the shutdown) ends up in state <code>FIN_WAIT2</code>, whereas the client-side (the one that does not explicitly respond to the shutdown) ends up in state <code>CLOSE_WAIT</code>. Why isn't there a method in <code>Socket</code> or <code>SocketChannel</code> that can query the TCP stack to see whether the underlying TCP connection has been terminated? Is it that the TCP stack doesn't provide such status information? Or is it a design decision to avoid a costly call into the kernel?</p>
<p>With the help of the users who have already posted some answers to this question, I think I see where the issue might be coming from. The side that doesn't explicitly close the connection ends up in TCP state <code>CLOSE_WAIT</code> meaning that the connection is in the process of shutting down and waits for the side to issue its own <code>CLOSE</code> operation. I suppose it's fair enough that <code>isConnected</code> returns <code>true</code> and <code>isClosed</code> returns <code>false</code>, but why isn't there something like <code>isClosing</code>?</p>
<p>Below are the test classes that use pre-NIO sockets. But identical results are obtained using NIO.</p>
<pre><code>import java.net.ServerSocket;
import java.net.Socket;
public class MyServer {
public static void main(String[] args) throws Exception {
final ServerSocket ss = new ServerSocket(12345);
final Socket cs = ss.accept();
System.out.println("Accepted connection");
Thread.sleep(5000);
cs.close();
System.out.println("Closed connection");
ss.close();
Thread.sleep(100000);
}
}
import java.net.Socket;
public class MyClient {
public static void main(String[] args) throws Exception {
final Socket s = new Socket("localhost", 12345);
for (int i = 0; i < 10; i++) {
System.out.println("connected: " + s.isConnected() + ", closed: " + s.isClosed());
Thread.sleep(1000);
}
Thread.sleep(100000);
}
}
</code></pre>
<p>When the test client connects to the test server the output remains unchanged even after the server initiates the shutdown of the connection:</p>
<pre><code>connected: true, closed: false
connected: true, closed: false
...
</code></pre>
http://stackoverflow.com/questions/318540/how-to-close-a-system-dialog-on-a-blackberry/324286#3242861Answer by Alexander for How to close a system dialog on a BlackBerry?Alexander2008-11-27T17:19:25Z2008-11-27T17:19:25Z<p>(Haven't tried this myself) Your app could periodically poll the system for the foreground app. Once it's the Phone app, you could check what's this app's topmost screen. If it's the Missed Call screen, as magically identified by the screen's class, some special field, text of a field, and the likes, pop this screen off the display stack.</p>
http://stackoverflow.com/questions/324099/i-need-to-identify-each-iphone-user-in-my-database-application-uniquely-what-cod/324140#3241401Answer by Alexander for I need to identify each iPhone user in my database application uniquely. What code would achieve this?Alexander2008-11-27T16:16:21Z2008-11-27T17:09:15Z<p>If you need security, then you probably can't use the device's built-in unique identifier, because one could easily spoof this information. I'm just guessing here, but, most likely, from your server's perspective there's an incoming connection/request that contains the phone's ID. Now, how can you be really sure the connection/request is actually coming from the iPhone with that ID?</p>
<p>One solution is to issue each new device that connects to your server with a unique ID of your own in a secure way (i.e., the ID can't be obtained by a third party). You then need to use a secure protocol whereby a connection/request proves to your server that it originated from a device that knows the above ID.</p>
http://stackoverflow.com/questions/305053/programmatically-reject-a-call-on-the-blackberry/306571#3065712Answer by Alexander for Programmatically reject a call on the BlackBerryAlexander2008-11-20T19:36:33Z2008-11-20T19:50:51Z<p>I couldn't find an API for directly rejecting the call in progress. However, you could explore a hack where you inject a keypress of the Hangup/Disconnect button (see <code>EventInjector</code>).</p>
<p>As to determining the phone number, you could use <code>Phone.getCall(callId).getDisplayPhoneNumber()</code> or <code>Phone.getActiveCall().getDisplayPhoneNumber()</code>.</p>
http://stackoverflow.com/questions/285589/blackberry-http-header/302593#3025930Answer by Alexander for Blackberry HTTP HeaderAlexander2008-11-19T16:56:25Z2008-11-19T16:56:25Z<p>Find out what's in the WWW-Authenticate header sent by the BlackBerry (check the web server request logs or sniff the HTTP traffic). It may be that the BlackBerry is trying to authenticate using the "Basic" HTTP authentication scheme, whereas the web server rejects this scheme, say, because it's very insecure.</p>
http://stackoverflow.com/questions/286206/are-socket-connections-faster-than-http-on-blackberry/302551#3025511Answer by Alexander for Are socket connections faster than http on Blackberry?Alexander2008-11-19T16:46:19Z2008-11-19T16:46:19Z<p>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.</p>
http://stackoverflow.com/questions/263376/java-util-calendar-milliseconds-since-jan-1-1970/263973#2639731Answer by Alexander for Java.util.Calendar - milliseconds since Jan 1, 1970Alexander2008-11-05T00:16:56Z2008-11-05T00:16:56Z<p>Your timezone is most likely lagging behind GMT (e.g., GMT-5), therefore 10,000,000ms from epoch is December 31 1969 in your timezone, but since months are zero-based in java.util.Calendar your Calendar->text conversion is flawed and you get 1969-11-31 instead of the expected 1969-12-31.</p>
http://stackoverflow.com/questions/263406/end-of-an-xml-stream-over-a-jsse-connection/263953#2639531Answer by Alexander for End of an XML stream over a JSSE connection?Alexander2008-11-05T00:06:42Z2008-11-05T00:06:42Z<p>How does your client know when a complete message has been read? If it has to read until the input stream reaches its end, then, by definition, you won't be able to read anything from the stream afterwards anyway. On a second note, invoking <code>close()</code> on the input stream shouldn't be closing the socket. Are you sure that the socket is closed when you call <code>close()</code> on the input stream? May be the connection is (incorrectly) closed by the peer when it notices that its output stream (your input stream) has been closed.</p>
<p>A solution that avoids reading until the end of the input stream is to delimit the input message somehow. For example, you could send the length of the message before the message, then read the whole message from the stream into a buffer, then parse the buffer using XMLReader, or create a special InputStream that takes that reaches its end after the specified amount of data. Or you could add a special delimiter in the stream after the message, then you'd create a special InputStream reaches its end when the underlying stream produces the delimiter.</p>
http://stackoverflow.com/questions/259038/rtsp-over-http-over-a-proxy/260232#2602320Answer by Alexander for rtsp over http over a proxyAlexander2008-11-03T22:41:45Z2008-11-03T22:41:45Z<ol>
<li>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.</li>
<li>See what TCP packets the proxy is receiving, for example, by eavesdropping on the TCP
traffic on the machine that's running the proxy, say, using Wireshark.</li>
</ol>
http://stackoverflow.com/questions/259212/counting-reversed-bit-pattern/260068#2600681Answer by Alexander for Counting, reversed bit patternAlexander2008-11-03T21:42:41Z2008-11-03T22:13:34Z<p>How about adding 1 to the most significant bit, then carrying to the next (less significant) bit, if necessary. You could speed this up by operating on bytes:</p>
<ol>
<li>Precompute a lookup table for counting in bit-reverse from 0 to 256 (00000000 -> 10000000, 10000000 -> 01000000, ..., 11111111 -> 00000000).</li>
<li>Set all bytes in your multi-byte number to zero.</li>
<li>Increment the most significant byte using the lookup table. If the byte is 0, increment the next byte using the lookup table. If the byte is 0, increment the next byte...</li>
<li>Go to step 3.</li>
</ol>
http://stackoverflow.com/questions/258883/i-need-a-tcp-option-ioctl-to-send-data-immediately/259230#2592300Answer by Alexander for I need a TCP option (ioctl) to send data immediately.Alexander2008-11-03T16:45:04Z2008-11-03T16:45:04Z<p>In the worst case scenario you could go one level lower (raw sockets), where you have better control over the packets sent, but then you'd have to deal with all the nitty-gritty of TCP.</p>
http://stackoverflow.com/questions/257433/postgresql-unix-domain-sockets-vs-tcp-sockets/257479#2574795Answer by Alexander for PostgreSQL UNIX domain sockets vs TCP socketsAlexander2008-11-02T22:21:55Z2008-11-02T22:21:55Z<p>UNIX domain sockets should offer better performance than TCP sockets over loopback interface (less copying of data, fewer context switches), but I don't know whether the performance increase can be demonstrated with PostgreSQL.</p>
<p>I found a small comparison on the FreeBSD mailinglist: <a href="http://lists.freebsd.org/pipermail/freebsd-performance/2005-February/001143.html" rel="nofollow">http://lists.freebsd.org/pipermail/freebsd-performance/2005-February/001143.html</a>.</p>
http://stackoverflow.com/questions/254719/file-upload-with-java-with-progress-bar/255327#2553272Answer by Alexander for File Upload with Java (with progress bar)Alexander2008-11-01T00:37:17Z2008-11-01T00:37:17Z<p>Keep in mind that the progress bar might be misleading when an intermediate component in the network (e.g., an ISP's HTTP proxy, or a reverse HTTP proxy in front of the server) consumes your upload faster than the server does.</p>
http://stackoverflow.com/questions/254726/in-java-for-a-string-x-what-is-the-runtime-cost-of-s-length-is-it-o1-or-o/255307#2553076Answer by Alexander for In Java, for a string x, what is the runtime cost of s.length()? Is it O(1) or O(n)?Alexander2008-11-01T00:22:12Z2008-11-01T00:22:12Z<p>Contrary to what has been said so far, there is no guarantee that <code>String.length()</code> is a constant time operation in the number of characters contained in the string. Neither the javadocs for the <code>String</code> class nor the Java Language Specification require <code>String.length</code> to be a constant time operation.</p>
<p>However, in Sun's implementation <code>String.length()</code> is a constant time operation. Ultimately, it's hard to imagine why any implementation would have a non-constant time implementation for this method.</p>
http://stackoverflow.com/questions/251243/what-causes-a-tcp-ip-reset-rst-flag-to-be-sent/251546#2515461Answer by Alexander for What causes a TCP/IP reset (RST) flag to be sent?Alexander2008-10-30T20:01:01Z2008-10-30T20:01:01Z<p>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.</p>
http://stackoverflow.com/questions/241282/url-based-authentication-link/241309#2413090Answer by Alexander for URL Based Authentication LinkAlexander2008-10-27T20:40:05Z2008-10-27T20:40:05Z<p>You should probably use HTTPS to avoid the credentials being eavesdropped upon while in transit to the third party web server.</p>
http://stackoverflow.com/questions/236861/how-do-you-determine-the-ideal-buffer-size-when-using-fileinputstream/237038#2370380Answer by Alexander for How do you determine the ideal buffer size when using FileInputStream?Alexander2008-10-25T21:27:18Z2008-10-25T21:33:37Z<p>Reading files using Java NIO's FileChannel and MappedByteBuffer will most likely result in a solution that will be much faster than any solution involving FileInputStream. Basically, memory-map large files, and use direct buffers for small ones.</p>
http://stackoverflow.com/questions/233966/whats-the-best-way-to-sync-large-amounts-of-data-around-the-world/236271#2362710Answer by Alexander for What's the best way to sync large amounts of data around the world?Alexander2008-10-25T11:41:41Z2008-10-25T11:41:41Z<p>Have you tried the <code>detect-renamed</code> patch for rsync (<a href="http://samba.anu.edu.au/ftp/rsync/dev/patches/detect-renamed.diff" rel="nofollow">http://samba.anu.edu.au/ftp/rsync/dev/patches/detect-renamed.diff</a>)? I haven't tried it myself, but I wonder whether it will detect not just renamed but also duplicated files. If it won't detect duplicated files, then, I guess, it might be possible to modify the patch to do so.</p>
http://stackoverflow.com/questions/231592/knowing-the-plaintext-how-to-discover-the-encryption-scheme-used/231729#2317292Answer by Alexander for Knowing the plaintext, how to discover the encryption scheme used?Alexander2008-10-23T22:05:59Z2008-10-23T22:05:59Z<p>Assuming it's not something as simple as a substitution cipher (try frequency analysis) or a poorly applied XOR (e.g., reusing the key; try XORing two ciphertexts with known plaintexts and then see whether the result is the XOR of the plaintexts; or try XORing the ciphertext with itself shifted by some number of bytes), you should probably assume it's well-known stream/block cipher with an unknown key (which most likely consists of ASCII characters). If you have a big enough sample of ciphertext-plaintext pairs, you could start by checking whether plaintexts with the same first few characters/bytes have ciphertexts with the same first characters/bytes. There you might also see whether it's a block or a stream cipher and whether there is any feedback mechanism involved. Padding, if present, might also suggest that it's a block cipher rather than a stream cipher.</p>
http://stackoverflow.com/questions/228577/how-secure-is-this-authentication-model/229088#2290880Answer by Alexander for How secure is this authentication model?Alexander2008-10-23T09:23:40Z2008-10-23T09:23:40Z<p>If the attacker knows that the user is about to log in, the attacker can generate the hash (or a series of hashes with slightly different timestamps) and log in before the user does so. A slightly better solution is to replace the hash with a randomly generated token. Then the attacker will have to intercept the user's login request to site example2.</p>
<p>As long as you are using HTTP instead of HTTPS on site example2, no scheme will be secure. For example, say, you found the perfect login scheme for site example2 that is secure. However, after the login, the requests from the user will be sending the session information either in the URL or in the request headers (e.g., cookies). These requests can be intercepted and the attacker can steal the session information. In the worst case for the attacker, you'll be linking sessions to their source IP and the attacker will need to fake the source IP.</p>
http://stackoverflow.com/questions/228987/convert-string-to-byte-in-java/228998#2289989Answer by Alexander for convert string to byte[] in javaAlexander2008-10-23T08:50:31Z2008-10-23T08:55:38Z<p>May be the first two bytes are the Byte Order Mark (<a href="http://en.wikipedia.org/wiki/Byte_Order_Mark" rel="nofollow">http://en.wikipedia.org/wiki/Byte_Order_Mark</a>). It specifies the order of bytes in each 16-bit word used in the encoding.</p>
http://stackoverflow.com/questions/227001/best-method-to-determine-changed-data-in-c/227586#2275862Answer by Alexander for Best method to determine changed data in C++Alexander2008-10-22T21:19:26Z2008-10-22T23:20:54Z<p>If you don't have the old and new versions of files on the same machine, then rsync-like algorithms are the way forward (see previous answers). If you do have both the old and the new versions of files on the same machine, you can then do better than rsync: generate compressed diffs and send them over the network.</p>
<p>For generating efficient diffs, have a look at VCDIFF (RFC 3284) binary delta compression. One good implementation is xdelta (www.xdelta.org). It's fairly easy to implement a decoder/decompressor if you want to avoid using xdelta on the receiving end because of license issues. Writing your own VCDIFF diff generator that will generate compact diffs is much more complicated (think searching for moved blocks as an example).</p>
<p>In VCDIFF the diffs can also be sourceless, meaning they decompress into the target file without any source file (the file to which a diff is applied) at hand -- in VCDIFF compressing a file is a special case of creating a compressed delta between two files. This is useful because you can use the same format regardless of whether the destination has a version of your file.</p>
http://stackoverflow.com/questions/225489/how-to-get-the-text-of-an-exception-stack-trace-in-javame/225766#2257660Answer by Alexander for How to get the text of an exception stack trace in JavaMEAlexander2008-10-22T13:40:24Z2008-10-22T13:40:24Z<p>I don't thing there is a way to do that in CLDC 1.0. However, on some devices/OSes the underlying Exception class could be providing a way for accessing the stack trace (think newer CLDC versions). Just inspect the exception instance at runtime using reflection to see what members it exposes on your target platforms. You could then write some code that will be able to safely extract the stack trace on the platforms that offer such information.</p>
http://stackoverflow.com/questions/210789/how-to-test-persistent-connection-in-a-http-server/214135#2141350Answer by Alexander for How to test persistent connection in a HTTP server?Alexander2008-10-17T23:06:16Z2008-10-17T23:14:28Z<p>Netcat. You can type in the request(s) and see the response(s) from the server. If you know the HTTP protocol, it's not a problem at all. In fact, it's better than curl or other higher-level libraries/applications, since here you can send whatever you like (malformed requests) and test the corner cases in your server's behavior. You can also redirect the input (and output), which is especially useful when you want to test HTTP/1.1 request pipelining. Keep in mind that sending CRLFs in Unix using Netcat is harder than on Windows, where you can simply press Enter.</p>
http://stackoverflow.com/questions/213857/aix-ibm-java-java-net-socketexception-connection-timed-outcould-be-due-to-inv/214102#2141022Answer by Alexander for AIX: IBM Java: java.net.SocketException: Connection timed out:could be due to invalid addressAlexander2008-10-17T22:53:54Z2008-10-17T22:53:54Z<p>"java.net.SocketException: Socket closed" means that your side closed the socket. You say that this happens when you attempt to make an SSL connection to your server. However, the stack trace suggests that this happens when HTTPClient attempts to write an HTTP request over an already established connection.</p>
<p>This could happen if, for example, you somehow managed to make HTTPClient send a request via a connection that was previously closed by HTTPClient, or, more likely, by some other code on your side. Check whether you are accessing the underlying socket somewhere. Or it could be that the socket is closed by the SSL/TLS protocol (if I'm not mistaken, SSL/TLS has its own higher-level protocol for closing the underlying connection), but HTTPClient somehow managed to not notice this (don't know whether it's possible, but, say, the remote side closed the SSL connection but was using HTTP/1.1 persistent connections and didn't set a Connection: close response).</p>
<p>You can troubleshoot these issues by analyzing the TCP traffic using tcpdump/Wireshark. You could also start an stunnel on a machine to the server's HTTPS port, then make your code communicate with the server over plain HTTP via this tunnel. This should enable you to see the HTTP traffic in plaintext.</p>
<p>"java.net.SocketException: Connection timed out" means that the TCP connection could not be established due to a timeout. Could be that the packets are dropped by a firewall. For example, it could be that you need to use an HTTP proxy to make HTTPS requests. It could also be that the server machine is really busy or the network is really busy. Again, I suggest you try tcpdump/Wireshark to see what's going on at the TCP level.</p>
http://stackoverflow.com/questions/206560/tcp-connection-quality-in-net/206819#2068194Answer by Alexander for TCP connection quality in .NETAlexander2008-10-15T22:46:03Z2008-10-15T22:46:03Z<p>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 closed by peer" or "Connection reset".</p>
<p>In my experience, a common cause of socket connections being dropped is a bug in the code where a read timeout exception is handled by the same catch clause as all other connection-related exceptions, thus usually resulting in the connection being closed for no good reason.</p>
<p>In enterprise setups, the typical cause of long-lasting TCP connections being closed is a firewall appliance that closes TCP connections with no traffic, say, after 10 minutes, or closes connections after their age reaches, say, 30 minutes, regardless of the traffic. In general, it's best to assume that these things will happen, and be prepared to reestablish the connection gracefully.</p>
<p>A good approach is to see whether there's a pattern in connection closers. For example, whether they are closed periodically, or after a certain time of no activity. You can also run a packet sniffer to see which side initiates the connection shutdown or sends the RST packet and why.</p>
http://stackoverflow.com/questions/204186/java-nio-select-returns-without-selected-keys-why/205354#2053543Answer by Alexander for Java NIO select() returns without selected keys - why?Alexander2008-10-15T16:13:21Z2008-10-15T16:19:43Z<p>Short answer: remove <code>OP_CONNECT</code> from the list of operations you are interested in for the accepted connection -- an accepted connection is already connected.</p>
<p>I managed to reproduce the issue, which might be exactly what's happening to you:</p>
<pre><code>import java.net.*;
import java.nio.channels.*;
public class MyNioServer {
public static void main(String[] params) throws Exception {
final ServerSocketChannel serverChannel = ServerSocketChannel.open();
serverChannel.configureBlocking(true);
serverChannel.socket().bind(new InetSocketAddress("localhost", 12345));
System.out.println("Listening for incoming connections");
final SocketChannel clientChannel = serverChannel.accept();
System.out.println("Accepted connection: " + clientChannel);
final Selector selector = Selector.open();
clientChannel.configureBlocking(false);
final SelectionKey clientKey = clientChannel.register(selector, SelectionKey.OP_READ | SelectionKey.OP_CONNECT);
System.out.println("Selecting...");
System.out.println(selector.select());
System.out.println(selector.selectedKeys().size());
System.out.println(clientKey.readyOps());
}
}
</code></pre>
<p>After the above server receives a connection, the very first <code>select()</code> on the connection exits without blocking and there are no keys with ready operations. I don't know why Java behaves in this way, but it appears many people get bitten by this behavior.</p>
<p>The outcome is the same on Sun's JVM 1.5.0_06 on Windows XP as well as Sun's JVM 1.5.0_05 and 1.4.2_04 on Linux 2.6.</p>
http://stackoverflow.com/questions/197388/generate-user-specific-1-time-coupon-code/197534#1975340Answer by Alexander for Generate User Specific 1 Time Coupon CodeAlexander2008-10-13T13:07:30Z2008-10-13T13:07:30Z<p>This is just to sum up the answers so far. There are two main distinct ways of generating such coupon codes:</p>
<ol>
<li><p>Centralized solution: the information about each coupon is stored in your database. The coupon code can then be randomly generated and short -- it's just a reference to a record in your database that contains all the necessary information, such as coupon value, customer ID, rep ID. Verifying such a code requires online access to your servers.</p></li>
<li><p>Decentralized solution: the coupon is a standalone piece of information that can be verified in offline mode, without accessing any of your servers. As a result, the coupon code has to contain some (or even all) of the information. The most secure way is to use asymmetric cryptography so that nobody other than the holder of the private key (you) can generate coupons.</p></li>
</ol>
http://stackoverflow.com/questions/197388/generate-user-specific-1-time-coupon-code/197431#1974315Answer by Alexander for Generate User Specific 1 Time Coupon CodeAlexander2008-10-13T12:36:52Z2008-10-13T12:36:52Z<p>Generate a public/private key pair for signing. Digitally sign the combination of user ID and coupon value using the private key. Publish the coupon value + signature as the coupon code, encoded, for example, using letters and numbers. The client application would verify the code by recreating the combination of data that was originally signed (e.g., prepend the user ID to the coupon value) and then verifying the digital signature.</p>
http://stackoverflow.com/questions/195275/connect-to-self-signed-https-web-services-from-flex/195292#1952920Answer by Alexander for Connect to self-signed HTTPS web services from FlexAlexander2008-10-12T09:56:43Z2008-10-12T09:56:43Z<p>In your company, you could create your own root CA, add its certificate to all machines that will access the intranet, and then have the CA issue your web service a certificate. The certificate will no longer be self-signed. The two main issues are: (1) managing the private key of your CA, (2) distributing the CA's root certificate to client PCs.</p>
http://stackoverflow.com/questions/318263/should-i-use-self-signed-certificates-in-general-for-svn-in-particular/318277#318277Comment by Alexander on Should I use self-signed certificates in general? For SVN in particular?Alexander2008-11-27T17:06:35Z2008-11-27T17:06:35ZA slightly more extensible solution is to create and distribute a company's own CA certificate. You can then issue as many certificates as you want to various servers in your company without having to distribute the certificates. http://stackoverflow.com/questions/319516/difference-between-winsock-and-linux-socketsComment by Alexander on Difference between winsock and linux socketsAlexander2008-11-27T16:50:40Z2008-11-27T16:50:40ZWhich FTP mode are you using, passive or active?
Also, you say "the time between the last send and first receive takes about 14 seconds. This seems quite reasonable to me." I'm surprised that waiting for 14 seconds for a reply to a RETR command is reasonable, especially when it's longer for PS3.http://stackoverflow.com/questions/258885/java-network-eventsComment by Alexander on Java Network EventsAlexander2008-11-03T22:33:23Z2008-11-03T22:33:23ZWhat's you target platform? BlackBerry provides a coverage API, for example.http://stackoverflow.com/questions/258883/i-need-a-tcp-option-ioctl-to-send-data-immediately/259527#259527Comment by Alexander on I need a TCP option (ioctl) to send data immediately.Alexander2008-11-03T22:12:19Z2008-11-03T22:12:19ZJudging by the code in the Linux kernel (net/ipv4/tcp.c), the tcp_low_latency flag only affects the reading of data from the TCP stack into the application buffer.http://stackoverflow.com/questions/257433/postgresql-unix-domain-sockets-vs-tcp-sockets/257459#257459Comment by Alexander on PostgreSQL UNIX domain sockets vs TCP socketsAlexander2008-11-02T22:16:06Z2008-11-02T22:16:06ZJust out of curiosity, on which OSes is TCP loopback implemented using UNIX domain sockets?http://stackoverflow.com/questions/240283/authorizing-rest-requestsComment by Alexander on Authorizing REST RequestsAlexander2008-10-27T20:42:25Z2008-10-27T20:42:25ZDefine "forging requests". What entity creates non-forged requests? Is it the client-side software?http://stackoverflow.com/questions/235327/why-is-the-http-auth-ui-so-poor-in-browsers/235452#235452Comment by Alexander on Why is the http auth UI so poor in browsers?Alexander2008-10-25T10:41:12Z2008-10-25T10:41:12ZJim, even with HTTP authentication methods, the browser does not know whether a user is logged in. All the browser has is the list of credentials for authenticating itself/the user to some websites. Credentials != logged in.http://stackoverflow.com/questions/234341/should-i-always-make-my-java-code-thread-safe-or-for-performance-reasons-do-it-o/234355#234355Comment by Alexander on Should I always make my java-code thread-safe, or for performance-reasons do it only when needed?Alexander2008-10-25T10:21:29Z2008-10-25T10:21:29ZAlso, some naive thread-safe implementations don't take the memory model into the account, so you end up with code that is thread-safe when run on a single processor but then isn't thread-safe when threads reside on different processors.http://stackoverflow.com/questions/231592/knowing-the-plaintext-how-to-discover-the-encryption-scheme-usedComment by Alexander on Knowing the plaintext, how to discover the encryption scheme used?Alexander2008-10-23T22:19:59Z2008-10-23T22:19:59ZAny more examples of ciphertext-plaintext pairs?http://stackoverflow.com/questions/229015/encoding-conversion-in-java/229023#229023Comment by Alexander on Encoding conversion in javaAlexander2008-10-23T09:06:29Z2008-10-23T09:06:29ZI prefer new String(byte[], encoding) and String.getBytes(encoding) in most cases, because they are simple one-liners as opposed to the more powerful but more complicated API of Charset (which, BTW, is only available in Java 1.4+).http://stackoverflow.com/questions/227001/best-method-to-determine-changed-data-in-c/227015#227015Comment by Alexander on Best method to determine changed data in C++Alexander2008-10-22T23:29:11Z2008-10-22T23:29:11Z@dmckee, it depends on the exact scenario. In some scenarios both versions of each file are available on the sender machine. In that case you can generate diffs/deltas that will result in much less traffic than rsync's one.http://stackoverflow.com/questions/227001/best-method-to-determine-changed-data-in-c/227014#227014Comment by Alexander on Best method to determine changed data in C++Alexander2008-10-22T23:24:12Z2008-10-22T23:24:12ZWhile I was writing up my answer, I realized that you forgot to mention a good selling point of rsync: it works without having both versions of the file being synced on the sender machine.http://stackoverflow.com/questions/225207/what-can-i-do-if-a-java-vm-crashes-repeatedlyComment by Alexander on What can I do if a Java VM crashes repeatedly?Alexander2008-10-22T13:42:38Z2008-10-22T13:42:38Z100% pure Java still uses native code that can by definition crash.http://stackoverflow.com/questions/205239/why-can-final-constants-in-java-be-overriden/205427#205427Comment by Alexander on Why can final constants in Java be overriden?Alexander2008-10-15T22:24:50Z2008-10-15T22:24:50ZIt's also possible to change the values of final fields from JNI code.http://stackoverflow.com/questions/204186/java-nio-select-returns-without-selected-keys-whyComment by Alexander on Java NIO select() returns without selected keys - why?Alexander2008-10-15T15:40:49Z2008-10-15T15:40:49ZPlease also mention the JVM version and the OS on which it is running. It might be a (known) bug.