Author: chatra Date: Mon Oct 16 21:56:41 2006 New Revision: 464804 URL: http://svn.apache.org/viewvc?view=rev&rev=464804 Log: added data on exploded configuration to deploy Axis2 WAR in WebLogic and WebSphere
Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/app_server.html Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/app_server.html URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/xdocs/1_1/app_server.html?view=diff&rev=464804&r1=464803&r2=464804 ============================================================================== --- webservices/axis2/branches/java/1_1/xdocs/1_1/app_server.html (original) +++ webservices/axis2/branches/java/1_1/xdocs/1_1/app_server.html Mon Oct 16 21:56:41 2006 @@ -5,11 +5,53 @@ <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <title>Application Server Specific Configuration Guide</title> - <meta name="generator" content="amaya 9.2.1, see http://www.w3.org/Amaya/" - /> + <meta content="amaya 9.2.1, see http://www.w3.org/Amaya/" /> </head> <body> <h1>Application Server Specific Configuration Guide</h1> + +<p>This document will give you that extra configuration information required +for your Application Server to run Apache Axis2 to its fullest potential.</p> + +<p>Feel free to send your feedback or any learned information to our <a +href="http://ws.apache.org/axis2/mail-lists.html">mailing lists</a>.</p> + +<h3>WebLogic/ WebSphere</h3> + +<p>We recommend using the exploded configuration to deploy Axis2 WAR in +WebLogic and WebSphere application servers to support the hotupdate/ +hotdeployment features in Axis2.</p> + +<p>WebLogic ships with jars which conflict with jars present in Axis2. So, +kindly use <prefer-web-inf-classes> to ensure that jars packaged in +Axis2 WAR are picked up from WEB-INF/lib. You can do this by setting +<prefer-web-inf-classes> element in WEB-INF/weblogic.xml to true. An +example of weblogic.xml is shown below:</p> +<pre><weblogic-web-app> + <container-descriptor> + <prefer-web-inf-classes>true</prefer-web-inf-classes> + </container-descriptor> +</weblogic-web-app></pre> + +<p>If set to true, the <prefer-web-inf-classes> element will force +WebLogic's classloader to load classes located in the WEB-INF directory of a +Web application in preference to application or system classes. This is a +recommended approach since it only impacts a single Web module. </p> + +<p>Please look at the following documents in WebLogic/ WebSphere for more +information:</p> +<ul> + <li><a + href="http://e-docs.bea.com/wls/docs81/programming/classloading.html">WebLogic + ServerApplication Classloading</a>- For more information on how + WebLogic's class loader works</li> + <li><a + href="http://e-docs.bea.com/wls/docs81/webapp/deployment.html">Redeploying + a Web Application in Exploded Directory Format</a></li> + <li><a + href="http://publib.boulder.ibm.com/infocenter/wsiihelp/v8r3/index.jsp?topic=/com.ibm.websphere.ii.product.ce.doc/configuring/iiyviigdepwebexpl.htm">Deploying + the Web application in exploded form</a></li> +</ul> </body> </html> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]