vmassol     2004/03/10 11:53:50

  Modified:    framework/src/java/share/org/apache/cactus/server
                        RequestDispatcherWrapper.java
               documentation/docs/xdocs changes.xml
  Log:
  Fixed bug in <code>HttpServletRequestWrapper.include()</code> where the passed 
request was not the original request. The problem was only apparent with Tomcat 3.x.
  
  Revision  Changes    Path
  1.8       +2 -2      
jakarta-cactus/framework/src/java/share/org/apache/cactus/server/RequestDispatcherWrapper.java
  
  Index: RequestDispatcherWrapper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/framework/src/java/share/org/apache/cactus/server/RequestDispatcherWrapper.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- RequestDispatcherWrapper.java     29 Feb 2004 09:42:31 -0000      1.7
  +++ RequestDispatcherWrapper.java     10 Mar 2004 19:53:50 -0000      1.8
  @@ -91,7 +91,7 @@
           throws IOException, ServletException
       {
           // Always pass the original request to the forward() call.
  -        if (!HttpServletRequestWrapper.class.isAssignableFrom(
  +        if (HttpServletRequestWrapper.class.isAssignableFrom(
               theRequest.getClass()))
           {
               HttpServletRequestWrapper request = 
  
  
  
  1.171     +5 -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.170
  retrieving revision 1.171
  diff -u -r1.170 -r1.171
  --- changes.xml       10 Mar 2004 18:31:18 -0000      1.170
  +++ changes.xml       10 Mar 2004 19:53:50 -0000      1.171
  @@ -68,6 +68,11 @@
         </devs>
   
         <release version="1.6dev" date="in CVS">
  +        <action dev="VMA" type="fix">
  +          Fixed bug in <code>HttpServletRequestWrapper.include()</code> where
  +          the passed request was not the original request. The problem was 
  +          only apparent with Tomcat 3.x.
  +        </action>
           <action dev="VMA" type="add">
             Added support for Tomcat 3.3.2 (note that this required adding the
             commons-logging jar to the Tomcat bootstrap classpath).
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to