Release notes are now provided in the distribution in an ANNOUNCEMENT.txt file. Please make sure you read it.
See the Changes page for full list of changes.
Here are the changes that might affect your previous installation of Cactus 1.3:
cactus.enableLogging
property no longer has any effect.
commons-logging.jar
, due to the new logging system.
org.apache.cactus.ServletTestRequest
,
org.apache.cactus.util.ClientCookie
,
org.apache.cactus.util.AssertUtils
jspRedirector.jsp
now creates a HTTP Session by
default (it was not previously).
CACTUS_HOME
the directory where you unzipped
the Cactus distribution.
Follow these steps:
aspectjrt.jar
(found in
CACTUS_HOME/lib
) in both your client side and server
side classpaths.
cactus.properties
to the new format. For
example:
cactus.contextURL = http://localhost:8000/cactus cactus.servletRedirectorName = ServletRedirector
cactus.servletRedirectorName
does not end
with a "/" and that the mapping in web.xml
matches it:
<servlet-mapping> <servlet-name>ServletRedirector</servlet-name> <url-pattern>/ServletRedirector</url-pattern> </servlet-mapping>