source: branches/0.22.x/abcl/examples/google-app-engine/war/WEB-INF/web.xml

Last change on this file was 12231, checked in by ehuelsmann, 15 years ago

Google App Engine (GAE) basic Hello World application progress.

Most of the code by Alex Muscar.

File size: 577 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!DOCTYPE web-app PUBLIC
3 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
4 "http://java.sun.com/dtd/web-app_2_3.dtd">
5
6<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5">
7  <servlet>
8    <servlet-name>hello</servlet-name>
9    <servlet-class>abcl_ae.HelloWorldServlet</servlet-class>
10  </servlet>
11  <servlet-mapping>
12    <servlet-name>hello</servlet-name>
13    <url-pattern>/hello</url-pattern>
14  </servlet-mapping>
15  <welcome-file-list>
16    <welcome-file>/index.html</welcome-file>
17  </welcome-file-list>
18</web-app>
Note: See TracBrowser for help on using the repository browser.