Hi Matt, As the stack trace says, that's definitely an HttpClient issue. Can you raise that issue on the jakarta commons mailing list?
Thanks for your help! -Vincent > -----Original Message----- > From: Matt Raible [mailto:[EMAIL PROTECTED]] > Sent: 26 September 2002 16:53 > To: 'Cactus Users List' > Subject: RE: Upgrading to Cactus 1.4.1 and StrutTestCase 1.9 > > If I remove :80 from my cactus.properties file, I get the following > error: > > [junit] Testcase: testCreate took 0.2 sec > [junit] Caused an ERROR > [junit] port out of range:-1 > [junit] java.lang.IllegalArgumentException: port out of range:-1 > [junit] at > java.net.InetSocketAddress.<init>(InetSocketAddress.java:103) > [junit] at java.net.Socket.<init>(Socket.java:119) > [junit] at > org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:26 > 0) > [junit] at > org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:2 > 55) > [junit] at > org.apache.cactus.client.HttpClientConnectionHelper.dispatch24_connect(H > ttpClientConnectionHelper.jav > a;org/apache/cactus/util/log/LogAspect.aj(1k):164) > [junit] at > org.apache.cactus.client.HttpClientConnectionHelper.around24_connect(Htt > pClientConnectionHelper.java; > org/apache/cactus/util/log/LogAspect.aj(1k):1236) > [junit] at > org.apache.cactus.client.HttpClientConnectionHelper.connect(HttpClientCo > nnectionHelper.java;org/apach > e/cactus/util/log/LogAspect.aj(1k):106) > [junit] at > org.apache.cactus.client.AbstractHttpClient.callRunTest(AbstractHttpClie > nt.java;org/apache/cactus/uti > l/log/LogAspect.aj(1k):186) > [junit] at > org.apache.cactus.client.AbstractHttpClient.dispatch2_doTest(AbstractHtt > pClient.java;org/apache/cactu > s/util/log/LogAspect.aj(1k):109) > [junit] at > org.apache.cactus.client.AbstractHttpClient.around2_doTest(AbstractHttpC > lient.java;org/apache/cactus/ > util/log/LogAspect.aj(1k):1236) > [junit] at > org.apache.cactus.client.AbstractHttpClient.doTest(AbstractHttpClient.ja > va;org/apache/cactus/util/log > /LogAspect.aj(1k):104) > [junit] at > org.apache.cactus.AbstractWebTestCase.runGenericTest(AbstractWebTestCase > .java:260) > [junit] at > org.apache.cactus.ServletTestCase.runTest(ServletTestCase.java:133) > [junit] at > org.apache.cactus.AbstractTestCase.runBare(AbstractTestCase.java:195) > > > > -----Original Message----- > > From: Vincent Massol [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, September 25, 2002 3:50 PM > > To: 'Cactus Users List' > > Subject: RE: Upgrading to Cactus 1.4.1 and StrutTestCase 1.9 > > > > > > 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:cactus-user-> [EMAIL PROTECTED]> > > For > > additional commands, > > e-mail: <mailto:[EMAIL PROTECTED]> > > > > > > -- > 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]>
