Re: java socket not closing

2005-03-22 Thread Nathan Bryant
Remember that a socket isn't closed until both stream directions are shut down. It kinda looks like the remote end has either become unreachable or isn't implementing TCP active close properly. You're sending data which it is not ACKing, and it's not sending an RST either. It may be stuck for s

Re: undefined symbol __gxx_personality_v0 when loading plugin

2004-12-16 Thread Nathan Bryant
Right, there is already a need for a Java plugin compiled with gcc 3.4 for some distributions Othmar Pasteka wrote: Hello, I wanted to use the latest j2sdk1.4.2 in connection with firefox 1.0 but whenever I try to load it I get: LoadPlugin: failed to initialize shared library /usr/local/j2sdk1.4.

Re: tomcat slowness on 2.6

2004-07-28 Thread Nathan Bryant
* Try booting the FC1 kernel on FC2, and see if that is faster. That will at least verify that the problem is probably isolated to the kernel. * Try LD_ASSUME_KERNEL=2.4.10 Keith T. Garner wrote: I've got a webapp setup with Tomcat 5.0.27 on RH9 and the exact same setup on FC2. On both machines

Re: current locale is not supported in X11, locale is set to CX

2004-07-22 Thread Nathan Bryant
try: LANG=C java newgui (to use the ASCII character set) or LANG=en_US java newgui (to use ISO-8859-1) or LANG=en_US.UTF-8 java newgui (to use UTF-8 unicode) McCoig, Kenneth wrote: Correction - I am having problems running my program, NOT compiling it. --

Re: Questions for the Java Open Source "Debate" at JavaOne

2004-06-28 Thread Nathan Bryant
Glenn Holmer wrote: I don't think anybody consciously wants to break compatibility, but I think it would simply be too tempting to add Just One Cool Feature(tm). That's the way Open Source works: when a programmer feels an itch, he codes. And that's OK for the kernel, or maybe XFree86, and for ap

Re: Thread question

2004-06-14 Thread Nathan Bryant
Daniel Malmkvist wrote: What I understand a thread pool will do lot pf unnessesary polling to no good. But in the 1-thread per connection case the only resorces that will be reserverd is a bit of memory (and on a 64 bit plattform that is not a problem). Or am I missing anything, is there any

Re: JDK 1.4.2 hanging on futex

2004-04-05 Thread Nathan Bryant
sometimes there is more information on the deadlock at the bottom of the thread dump (i think) including what thread was deadlocked with what... Veda N Ponnusamy wrote: I'm having problem with SUN jdk 1.4.2. My application deadlocks when its trying to find the file size. When I do a strace -p pi

Re: connection multiplexing

2004-03-26 Thread Nathan Bryant
nicole wrote: Not sure where else to post this, I don't know of a lot of java communities that have at least *some* activity ;o) This one comes from my husband, who is working on attempting to connect RMI (with backconnects) over one single port due to firewall constraints. With the increasing pre

Re: Max number of threads with NPTL

2004-02-04 Thread Nathan Bryant
Daniel Malmkvist wrote: To my supprise i could not have more then ~3500 threads at the same time. I got a OutOfMemoryException, but there was plenty of system memory left (the JVM only ha about 10% of system physical memory). Address space might be a limiting factor in a 32-bit machine. Assumin