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
Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?
If the URL works fine in the web browser on the same machine, it might be that the Java code isn't using the HTTP proxy the browser is using for connecting to the URL.
…
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 …
1
vote
Using openssl encryption with Java
I'm not an OpenSSL expert, but I'd guess the C++ code is using DES in CBC mode thus needing an IV (that's what the initKey probably is, and that's why you think you need two keys). If I'm right, yo …
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
What are all the different ways to create an object in Java?
You can also instantiate objects via JNI.
…
1
vote
What is the best way to encrypt a clob?
Slightly off-topic: What's the point of the encryption/obfuscation in the first place? An attacker having access to your database will be able to obtain the plaintext -- finding the above stored pr …
0
votes
Memory footprint issues with JAVA, JNI, and C application
If you say that it's the Windows process that runs out of memory as opposed to the JVM, then my initial guess is that you probably invoke some (your own) native methods from the JVM and those nativ …
2
votes
Is it safe to get values from a java.util.HashMap from multiple threads (no modification)?
There is an important twist though. It's safe to access the map, but in general it's not guaranteed that all threads will see exactly the same state (and thus values) of the HashMap. This might hap …
1
vote
Memory footprint issues with JAVA, JNI, and C application
Try a test app in C that doesn't spawn the JVM but instead tries to allocate more and more memory. See whether the test app can reach the 2 GB barrier.
…
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 …
2
votes
Why is my Java program leaking memory when I call run() on a Thread object?
I doubt that constructing an instance of a Thread or a subclass thereof leaks memory. Firstly, there's nothing of the sorts mentioned in the Javadocs or the Java Language Specification. Secondly, I …
2
votes
“SocketException: Unconnected sockets not implemented” with self-signed SSL certificate
This is a hint rather than a proper answer: A cursory glance at Google results seems to suggest that the exception is usually caused by the code forcing the use of a default SSL socket factory that …
1
vote
Irretrievably destroying data in Java
If you're thinking about securing password/key management, you could write some JNI code that uses platform-specific API to store the keys in a secure way and not leak the data into the memory mana …
1
vote
Java Threads priority in Linux
Keep in mind that thread priorities are just a hint to the JVM. Also, on Unix JVMs can use native (natively scheduled) or green (scheduling emulated by JVM) threads.
EDIT: I found an intere …
