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

« back to all changes in this revision

Viewing changes to src/tests/org/jboss/test/remoting/transport/servlet/marshal/noconfig/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 4903 2009-03-24 07:33:10Z ron.sigal@jboss.com $
 
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>locatorUrl</param-name>
 
19
            <param-value>servlet://localhost:8080/servlet-invoker/ServerInvokerServlet</param-value>
 
20
            <description>The servlet server invoker locator url</description>
 
21
        </init-param>
 
22
        <load-on-startup>1</load-on-startup>
 
23
    </servlet>
 
24
    <servlet-mapping>
 
25
        <servlet-name>ServerInvokerServlet</servlet-name>
 
26
        <url-pattern>/ServerInvokerServlet/*</url-pattern>
 
27
    </servlet-mapping>
 
28
</web-app>
 
29