DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13372>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13372 NPE's from StreamPumper ------- Additional Comments From [EMAIL PROTECTED] 2003-02-04 22:30 ------- Yeah, that patch was a shot in the dark in the first place, I'm not surprised if it doesn't work :) Anyway, I've just confirmed the same error using Sun's J2SE 1.4.1_01, Ant 1.5.1 and JBoss 3.0.6 (with integrated Tomcat 4.1.18) on a Red Hat Linux 8.0 box. The results vary, usually I get the NPE, sometimes absolutely no output (and immediate return) and sometimes a graceful JBoss shutdown. This is the java task from my build.xml. jboss.home and java.home properties are properly set. <target name="run"> <java fork="yes" classname="org.jboss.Main"> <jvmarg value="-Xms32M"/> <jvmarg value="-Xmx64M"/> <arg line="-c myserver"/> <classpath> <pathelement location="${jboss.home}/bin/run.jar"/> <pathelement location="${java.home}/lib/tools.jar"/> </classpath> </java> </target>