On  9 Apr, Vincent Massol wrote:
> hum. Strange. I'll have a look at it tomorrow. Which servlet jar are you
> using (Servlet API 2.2 or 2.3) ?
> 

2.3, looks like.

> No, CVS is the correct location. On Jakarta, there is a nightly build
> every day. You can get the results of this builds on
> http://jakarta.apache.org/builds/gump/latest/, and you can get the
> Cactus generated jars on http://gump.covalent.net/jars
> 

But some of them seem broken (cactus framework-13 and 12) and it looks like
the code that's giving me problems.

Anyway, I'm attaching some patches (diff -u) that allowed me to pass the
compile portion. I'm now getting the WLS hang everyone's been talking about
so I'm attacking this next.

L

-- 
Laurent Duperval <mailto:[EMAIL PROTECTED]>

HUBBARD'S LAW
    Don't take life too seriously; you won't get out of it alive.

Index: sample-servlet/src/sample/j2ee13/org/apache/cactus/sample/SampleFilter.java
===================================================================
RCS file: 
/home/cvspublic/jakarta-cactus/sample-servlet/src/sample/j2ee13/org/apache/cactus/sample/SampleFilter.java,v
retrieving revision 1.1
diff -u -r1.1 SampleFilter.java
--- sample-servlet/src/sample/j2ee13/org/apache/cactus/sample/SampleFilter.java 10 Mar 
2002 14:26:03 -0000      1.1
+++ sample-servlet/src/sample/j2ee13/org/apache/cactus/sample/SampleFilter.java 9 Apr 
+2002 17:57:09 -0000
@@ -166,4 +166,21 @@
     {
     }
 
-}
\ No newline at end of file
+    /**
+     * Get the filter config.
+     */
+    public FilterConfig getFilterConfig()
+    {
+        return config;
+    }
+
+    /**
+     * Set the filter config.
+     */
+    public void setFilterConfig(FilterConfig theConfig) 
+    {
+        config = theConfig;
+    }
+
+
+}
Index: sample-servlet/src/unit/j2ee13/org/apache/cactus/unit/TestAll.java
===================================================================
RCS file: 
/home/cvspublic/jakarta-cactus/sample-servlet/src/unit/j2ee13/org/apache/cactus/unit/TestAll.java,v
retrieving revision 1.1
diff -u -r1.1 TestAll.java
--- sample-servlet/src/unit/j2ee13/org/apache/cactus/unit/TestAll.java  10 Mar 2002 
14:26:04 -0000      1.1
+++ sample-servlet/src/unit/j2ee13/org/apache/cactus/unit/TestAll.java  9 Apr 2002 
+17:57:09 -0000
@@ -56,7 +56,6 @@
 import junit.framework.Test;
 import junit.framework.TestCase;
 import junit.framework.TestSuite;
-import org.apache.cactus.unit.TestAll;
 
 /**
  * Run all the Cactus unit tests related to Servlet API 2.3.
@@ -118,4 +117,4 @@
         return suite;
     }
 
-}
\ No newline at end of file
+}

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

Reply via email to