You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs@cocoon.apache.org by do...@cocoon.apache.org on 2004/11/09 20:38:46 UTC

[Cocoon Wiki] Updated: BeaWeblogic

   Date: 2004-11-09T11:38:46
   Editor: SaschaMatthiasKulawik <sa...@kulawik.de>
   Wiki: Cocoon Wiki
   Page: BeaWeblogic
   URL: http://wiki.apache.org/cocoon/BeaWeblogic

   no comment

Change Log:

------------------------------------------------------------------------------
@@ -10,6 +10,31 @@
  * Deploy the application, go to the weblogic console
   * In "Configuration/Other" of the Webapp check "Prefer Web Inf Classes"
   * For Solaris you '''HAVE TO''' go to "Configuration/Files" and set the "Reload Period" to -1 because of performance issues
+=== Cocoon 2.2.0 DEV and BEA Weblogic 8.1  ===
+Here are also different isues regarding Rhino and Xalan - for Xalan it is necessary to switch to ParanoidCocoonServlet and set init-classloader to true. Here also the Rhino problems are only solved in the latest SVN Version, not with 2.1.5.1!
+To get around the Xalan problems, you also can use xsltc instead of the xalan Transformer, then you can leave the ParanoidCocoonServlet and init-classloader settings.
+For Cocoon in general you also have to create a weblogic.xml here, because "Prefer Web Inf Classes" is no more accessible through the console; here a small example:
+{{{
+<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">
+<weblogic-web-app>
+	<jsp-descriptor>
+		<jsp-param>
+			<param-name>keepgenerated</param-name>
+			<param-value>true</param-value>
+		</jsp-param>
+	</jsp-descriptor>
+	<container-descriptor>
+		<prefer-web-inf-classes>true</prefer-web-inf-classes>
+	</container-descriptor>
+	<charset-params>
+		<input-charset>
+			<resource-path>/*</resource-path>
+			<java-charset-name>UTF-8</java-charset-name>
+		</input-charset>
+	</charset-params>
+	<context-root>/</context-root>
+</weblogic-web-app>
+}}}
 
 ----
 AUTHOR: Sascha-Matthias Kulawik, AUTHOR-CONTACT: sascha@kulawik.de