Charles, I believe it seems to hang simply because the URL you have defined in testURL is not a valid URL and thus the runservertests task thinks the server is not yet started. I don't think it is a problem of background process as it works well here and you're using the fork="yes" attribute.
You can start Ant in debug mode if you wish to get some debug info from the runservertests task (ant -debug your_target). Thanks -Vincent > -----Original Message----- > From: Charles Brunson [mailto:[EMAIL PROTECTED]] > Sent: 01 May 2002 17:09 > To: [EMAIL PROTECTED] > Subject: start tomcat target > > I'm trying to use Cactus's runservertests task so I've created > a start_tomcat target in my build.xml. I basically copied the > one from the cactus web page. > > What I'm finding is that when it starts tomcat it just sits there > because it has no way to background the java process. Am I missing > something here? I'm wondering how others have gotten this to work. > > Here's my start_tomcat target: > > <target name="start_tomcat"> > <java classname="org.apache.catalina.startup.Bootstrap" fork="yes" > jvm="${net-nile.jdk_home}/bin/java"> > <jvmarg value="-Dcatalina.home=${testx.tomcat_home}"/> > <jvmarg value="-Dcatalina.base=${testx.tomcat_base}"/> > <arg value="start"/> > <classpath> > <fileset refid="net-nile.jdk.classpath"/> > <fileset dir="${testx.tomcat_home}"> > <include name="bin/bootstrap.jar"/> > </fileset> > </classpath> > </java> > </target> > > > > > > -- > Chuck Brunson > x56912 > 719-277-6912 > [EMAIL PROTECTED] > AIM: chuck9206 > > > -- > To unsubscribe, e-mail: <mailto:cactus-user- > [EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:cactus-user- > [EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
