source: trunk/abcl/examples/google-app-engine/war/WEB-INF/web.xml

Last change on this file was 13264, checked in by Mark Evenson, 13 years ago

Fix the GAE example so that the 'ant runserver' target works.

Now invoke ABCL to compile the necessary FASL.

The web.xml descriptor contained an incorrect absolute path for the
welcome file.

In the interest of speeding up the (presumably) morecommon use case of
merely running the example, the GAE build.xml now merely checks for
the presence of 'abcl.jar' rather than invoking the main ABCL build
each time.

File size: 576 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.