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