You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by br...@apache.org on 2005/01/13 10:16:34 UTC

svn commit: r125050 - /cocoon/trunk/src/webapp/WEB-INF/web.xml

Author: bruno
Date: Thu Jan 13 01:16:31 2005
New Revision: 125050

URL: http://svn.apache.org/viewcvs?view=rev&rev=125050
Log:
ParanoidCocoonServlet isn't in the core so shouldn't be used by default.

Modified:
   cocoon/trunk/src/webapp/WEB-INF/web.xml

Modified: cocoon/trunk/src/webapp/WEB-INF/web.xml
Url: http://svn.apache.org/viewcvs/cocoon/trunk/src/webapp/WEB-INF/web.xml?view=diff&rev=125050&p1=cocoon/trunk/src/webapp/WEB-INF/web.xml&r1=125049&p2=cocoon/trunk/src/webapp/WEB-INF/web.xml&r2=125050
==============================================================================
--- cocoon/trunk/src/webapp/WEB-INF/web.xml	(original)
+++ cocoon/trunk/src/webapp/WEB-INF/web.xml	Thu Jan 13 01:16:31 2005
@@ -46,10 +46,14 @@
 
     <!--
       The regular servlet class (trusts the servlet container classloader)
-    <servlet-class>org.apache.cocoon.servlet.CocoonServlet</servlet-class>
       -->
-
+    <servlet-class>org.apache.cocoon.servlet.CocoonServlet</servlet-class>
+    <!--
+      The paranoid servlet class, to be used instead of regular one when
+      having conflicts between libraries used by Cocoon and the servlet
+      container.
     <servlet-class>org.apache.cocoon.servlet.ParanoidCocoonServlet</servlet-class>
+    -->
     <init-param>
       <param-name>classloader-class</param-name>
       <param-value>org.apache.javaflow.ContinuationClassLoader</param-value>