web.xml 927 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: cpscrn
  5. (C) Copyright IBM Corp. 2005, 2011
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
  9. <web-app id="WebApp">
  10. <display-name>IBM Cognos Portal Services</display-name>
  11. <servlet id="GDKServlet">
  12. <servlet-name>GDKServlet</servlet-name>
  13. <display-name>Cognos GDK Servlet</display-name>
  14. <description>GDK Remote Server for Cognos Portlets</description>
  15. <servlet-class>com.cognos.cps.wsrp.consumer.impls.plumtree.GDKServlet</servlet-class>
  16. </servlet>
  17. <servlet-mapping>
  18. <servlet-name>GDKServlet</servlet-name>
  19. <url-pattern>/GDKServlet/*</url-pattern>
  20. </servlet-mapping>
  21. </web-app>