~ubuntu-branches/ubuntu/wily/libjboss-remoting-java/wily

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/lease/servlet/WEB-INF/web.xml

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
<!-- The the JBossRemoting server invoker servlet web.xml descriptor
7
 
$Id: web.xml 1907 2007-01-18 07:37:33Z telrod $
8
 
-->
9
 
<web-app>
10
 
    <servlet>
11
 
        <servlet-name>ServerInvokerServlet</servlet-name>
12
 
        <description>The ServerInvokerServlet receives requests via HTTP
13
 
           protocol from within a web container and passes it onto the
14
 
           ServletServerInvoker for processing.
15
 
        </description>
16
 
        <servlet-class>org.jboss.remoting.transport.servlet.web.ServerInvokerServlet</servlet-class>
17
 
        <init-param>
18
 
             <param-name>invokerName</param-name>
19
 
             <param-value>jboss.remoting:service=invoker,transport=servlet</param-value>
20
 
             <description>The servlet server invoker</description>
21
 
           <!--
22
 
                      <param-name>locatorUrl</param-name>
23
 
                      <param-value>servlet://localhost:8080/servlet-invoker/ServerInvokerServlet</param-value>
24
 
                      <description>The servlet server invoker locator url</description>
25
 
           -->
26
 
        </init-param>
27
 
        <load-on-startup>1</load-on-startup>
28
 
    </servlet>
29
 
    <servlet-mapping>
30
 
        <servlet-name>ServerInvokerServlet</servlet-name>
31
 
        <url-pattern>/ServerInvokerServlet/*</url-pattern>
32
 
    </servlet-mapping>
33
 
</web-app>
34