Hi Matt, Nothing has changed in Cactus in this area (not that I can recall). Do you have at least one pure Cactus test running fine with "cactus.contextURL = http://localhost/myApp" ? If so, it will probably mean that the problem comes from StrutsTestCase.
-Vincent > -----Original Message----- > From: Matt Raible [mailto:[EMAIL PROTECTED]] > Sent: 24 September 2002 17:58 > To: [EMAIL PROTECTED] > Subject: Upgrading to Cactus 1.4.1 and StrutTestCase 1.9 > > I'm trying to upgrade to Cactus 1.4.1 and StrutsTest 1.9. My tests > where working about fine a month ago with nightly builds of both, and I > found that I had to change the following to get it to work with the new > stuff: > > cactus.properties from: cactus.contextURL = http://localhost/myApp > > To: cactus.contextURL = http://localhost:80/myApp > > build.xml from: > > <!-- > =================================================================== --> > <!-- Test the NavigationAction class in Tomcat > --> > <!-- > =================================================================== --> > <target name="tomcat.navigationAction" depends="deploy" > if="tomcat.home"> > <!-- We suppose our webapp is named "onpoint" --> > <runservertests testURL="http://localhost/${webapp.name}" > startTarget="start.tomcat" > stopTarget="stop.tomcat" > testTarget="test.navigationAction"/> > </target> > > To: > > <!-- > =================================================================== --> > <!-- Test the NavigationAction class in Tomcat > --> > <!-- > =================================================================== --> > <target name="tomcat.navigationAction" depends="deploy" > if="tomcat.home"> > <!-- We suppose our webapp is named "onpoint" --> > <runservertests > testURL="http://localhost:80/${webapp.name}/ServletRedirector?Cactus_Ser > vice=RUN_TEST" > startTarget="start.tomcat" > stopTarget="stop.tomcat" > testTarget="test.navigationAction"/> > </target> > > Is this expected behavior? > > Thanks, > > Matt > > > > -- > 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]>
