vmassol 02/05/23 12:06:29
Modified: documentation/docs/xdocs changes.xml
framework/web jspRedirector.jsp
Log:
improved jspRedirector by automatically creating a session. It fixes 2 reported bugs
Revision Changes Path
1.18 +14 -0 jakarta-cactus/documentation/docs/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/changes.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- changes.xml 22 May 2002 19:53:51 -0000 1.17
+++ changes.xml 23 May 2002 19:06:29 -0000 1.18
@@ -48,6 +48,20 @@
</devs>
<release version="1.4 in CVS">
+ <action dev="VMA" type="fix" due-to="Marc Brette"
due-to-email="[EMAIL PROTECTED]">
+ (<link href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8640">
+ Bug #8640</link>. It also solves bug
+ <link href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8640">
+ Bug #4167</link> reported by
+ <link href="mailto:[EMAIL PROTECTED]">Eric Walker</link>).
+ Modified the <code>jspRedirector.jsp</code> so that
+ it initializes an HTTP Session (<code>session="true"</code>). There
+ is no way I know to make this parameter dynamic so we set it to true
+ as this is the most used case. If one of your test must not have a
+ session created for it, then you can always use the Redirector
+ overriding feature (<code>WebRequest.setRedirectorName(String
+ redirectorName)</code>).
+ </action>
<action dev="VMA" type="fix" due-to="Patrick Lightbody"
due-to-email="[EMAIL PROTECTED]">
Fixed bug where the Test Result object which is put in the Servlet
Context was not serializable. This might cause some trouble with some
1.3 +1 -1 jakarta-cactus/framework/web/jspRedirector.jsp
Index: jspRedirector.jsp
===================================================================
RCS file: /home/cvs/jakarta-cactus/framework/web/jspRedirector.jsp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jspRedirector.jsp 10 Mar 2002 13:58:25 -0000 1.2
+++ jspRedirector.jsp 23 May 2002 19:06:29 -0000 1.3
@@ -1,5 +1,5 @@
<%@page import="org.apache.cactus.server.*,
- org.apache.cactus.util.log.LogService" session="false" %><%
+ org.apache.cactus.util.log.LogService" session="true" %><%
/**
*
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>