Hi Vincent, sorry for the confusion. Step 4, instead of using a junit task, I create a new tag "PerformTest", the rest 4 steps are kept unchanged. PerformTestTask extends JUnitTask. For an example of how PerformTest tag looks like, in reference to the build.xml you attach in the previous mail.
<PerformTest contextURL="http://localhost:${cactus.port}/${project.name.file}-cactified" testreportDir="${target.testreports.dir}/@{containerKey}" log ="${target.logfile}"> <classpath> <path refid="cactus.classpath"/> <pathelement location="${build.classes.dir}"/> <pathelement location="${test.classes.dir}"/> </classpath> <formatter type="xml"/> <batchtest> <fileset dir="${src.test.dir}"> <include name="**/Test*.java"/> <exclude name="**/TestAll.java"/> </fileset> </batchtest> </PerformTest> I put this in option 2 even there is a "new" tag since it's only a convinient wrapping of junit. Thanks Xuan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]