blob: f3e9af75b38a0132b5f1c3d9e7e955e6b1506246 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
<!--
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<web-app>
<display-name>toto</display-name>
<description>this a dummy web app</description>
<listener>
<listener-class>org.glassfish.tests.webapi.TestListener</listener-class>
</listener>
<servlet>
<servlet-name>TestGF</servlet-name>
<description>Test GF root servlet</description>
<servlet-class>org.glassfish.tests.webapi.TestServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>TestGF2</servlet-name>
<description>Test GF secondary servlet</description>
<servlet-class>org.glassfish.tests.webapi.TestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>TestGF</servlet-name>
<url-pattern>/testgf</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>TestGF2</servlet-name>
<url-pattern>/toto/testgf2</url-pattern>
</servlet-mapping>
</web-app>