vmassol 01/08/30 05:13:37 Modified: cactus/conf/sample/conf/test/share cactus.properties Log: add trailing "/" to URLs so that HttpURLConnection does not handle status code > 400 as errors and throw a FileNotFoundException Revision Changes Path 1.4 +11 -6 jakarta-commons/cactus/conf/sample/conf/test/share/cactus.properties Index: cactus.properties =================================================================== RCS file: /home/cvs/jakarta-commons/cactus/conf/sample/conf/test/share/cactus.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- cactus.properties 2001/08/13 17:46:20 1.3 +++ cactus.properties 2001/08/30 12:13:37 1.4 @@ -4,11 +4,16 @@ # CLASSPATH (Meaning the directory containgin this file should be in the client # side CLASSPATH, not the file itself of course ... :) ) -# Defines the URLs that will be used by Cactus to call it's redirectors -# (Servlet and JSP). You need to specify in these URLs the webapp context -# that you use for your application. In the example below, the context is -# "test". +# Defines the URLs that will be used by Cactus to call it's redirectors. +# You need to specify in these URLs the webapp context that you use for your +# application. In the example below, the context is "test". -cactus.servletRedirectorURL = http://localhost:@test.port@/test/ServletRedirector -cactus.jspRedirectorURL = http://localhost:@test.port@/test/JspRedirector +# Servlet Redirector. Used by ServletTestCase test cases. Servlet API 2.2 and +# 2.3 +cactus.servletRedirectorURL = http://localhost:@test.port@/test/ServletRedirector/ +# JSP Redirector. Used by JspTestCase test cases. JSP API 1.1 and 1.2 +cactus.jspRedirectorURL = http://localhost:@test.port@/test/JspRedirector/ + +# Filter Redirector. Used by FilterTestCase test cases. Servlet API 2.3 only +cactus.filterRedirectorURL = http://localhost:@test.port@/test/FilterRedirector/
