12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2005 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!-- This file affects default servlet behaviour settings in an IBM WebSphere environment only. All other Application Servers will ignore this file.
- Option: fileServingEnabled
- Value: True - Allows the servlet to handle requests for static or non-servlet requests in addition to servlet requests.
- If the application is accessed directly (no web server for example) then this value should be set to True.
- Value: False - Limits the servlet to handling only requests for servlet applications. If you are running in a WebSphere cluster and using WLM for load balancing and
- a web server will be handling static file requests then set this value to False.
- Option: serveServletsByClassnameEnabled
- Value: True - This feature makes it possible to directly invoke a Servlet.
- Value: False - Disabling this feature is necessary if you are accessing the servlet application directly (without a web server) in WebSphere v6.x and also WebSphere 5.0.2 on HP/UX.
- IBM WebSphere documentation should be consulted if the expected behaviour is not seen as a result of proper implementation of this file.
- Note that this file must be named "ibm-web-ext.xmi" and located in the <install_location>/webapps/p2pd/WEB-INF directory prior to building the application archive file for it to take effect.
- -->
- <webappext:WebAppExtension xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"
- xmlns:webappext="webappext.xmi" xmlns:webapplication="webapplication.xmi" xmi:id="WebAppExtension_1"
- fileServingEnabled="true" serveServletsByClassnameEnabled="false">
- <webApp href="WEB-INF/web.xml#WebApp_1"/>
- <jspAttributes xmi:id="JSPAttribute_1" name="fileServingEnabled" value="true"/>
- <jspAttributes xmi:id="JSPAttribute_1" name="serveServletsByClassnameEnabled" value="false"/>
- </webappext:WebAppExtension>
|