git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@825195 13f79535-47bb-0310-9956-ffa450edef68
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
|
|
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
|
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
version="2.5">
|
|
<servlet>
|
|
<servlet-name>HelloWorld</servlet-name>
|
|
<servlet-class>sample.appengine.HelloWorldServlet</servlet-class>
|
|
</servlet>
|
|
<servlet-mapping>
|
|
<servlet-name>HelloWorld</servlet-name>
|
|
<url-pattern>/helloworld</url-pattern>
|
|
</servlet-mapping>
|
|
<welcome-file-list>
|
|
<welcome-file>index.html</welcome-file>
|
|
</welcome-file-list>
|
|
<filter>
|
|
<filter-name>tuscany</filter-name>
|
|
<filter-class>org.apache.tuscany.sca.host.webapp.TuscanyServletFilter</filter-class>
|
|
|
|
<init-param>
|
|
<param-name>node.configuration</param-name>
|
|
<param-value>http://people.apache.org/~rfeng/tuscany/nodes/helloworld-node.xml</param-value>
|
|
</init-param>
|
|
|
|
</filter>
|
|
|
|
<filter-mapping>
|
|
<filter-name>tuscany</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
</web-app>
|