Question about cactus 1.8 and jboss 4.2

2008-12-29 Thread Neha Agarwal
Hi, I have cactus 1.8 and Jboss 4.2 installed. I am tryong to get cactus working but if I use the jboss4x nested element within containerset, it gives me an error saying that jboss4x is not supported for ContainerSet. Just to check, I tried jboss3x but I get the same error for that as well. Was

Re: Question about cactus 1.8 and jboss 4.2

2008-12-29 Thread Petar Tahchiev
Hi Naha, first you need to use the jboss42x nested element for Cargo to work. This is clearly defined in the Cargo documentation: http://cargo.codehaus.org/JBoss+4.2.x Before you paste your configuration (the Ant scripts or the Maven poms) I am unable to locate the problem any further. Cheers,

Re: Question about cactus 1.8 and jboss 4.2

2008-12-29 Thread Neha Agarwal
Thanks for the prompt reply Petar. Here is the relevant portion from my build file. cactus warfile=${build.dir}/test.war fork=yes printsummary=yes haltonerror=true haltonfailure=true classpath path refid=project.classpath/ pathelement

Re: Question about cactus 1.8 and jboss 4.2

2008-12-29 Thread Neha Agarwal
Never mind about starting the container. I was able to fix that. It was a problem with my build file since I was not poitning to the existing installation of the container. The container starts up correctly now, but cactus does not seem to be running the tests. Here is the output from my console.

Re: Question about cactus 1.8 and jboss 4.2

2008-12-29 Thread Petar Tahchiev
Hi Neha, this error happens when there was something wrong with the war that you deploy. Make sure that the test.war you try to deploy is cactified and it's web.xml contains the servletRedirector definitions. Also one more thing that struck me in your build.xml: Are you sure that you have

Re: Question about cactus 1.8 and jboss 4.2

2008-12-29 Thread Neha Agarwal
Yes I checked my web.xml file. My tests seem to be cactified and deployed correctly with the redirector definitions. However I still see that error. I have looked at the cactus samples before, but I will look again to make sure I am not missing anything. Thanks for your help. PS: Thanks for