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

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/performance/spring/hessian/web/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
 
 
3
 
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
4
 
<web-app>
5
 
 
6
 
    <display-name>Spring Hessian Test</display-name>
7
 
 
8
 
    <description>Spring Hessian performance benchmark test</description>
9
 
 
10
 
    <!--
11
 
      - Key of the system property that should specify the root directory of this
12
 
      - web app. Applied by WebAppRootListener or Log4jConfigListener.
13
 
      -->
14
 
    <context-param>
15
 
        <param-name>webAppRootKey</param-name>
16
 
        <param-value>remoting.root</param-value>
17
 
    </context-param>
18
 
 
19
 
    <!--<context-param>-->
20
 
        <!--<param-name>contextConfigLocation</param-name>-->
21
 
        <!--<param-value>/WEB-INF/applicationContext.xml</param-value>-->
22
 
    <!--</context-param>-->
23
 
 
24
 
    <listener>
25
 
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
26
 
    </listener>
27
 
 
28
 
    <servlet>
29
 
        <servlet-name>remoting</servlet-name>
30
 
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
31
 
    </servlet>
32
 
 
33
 
    <!-- mapping -->
34
 
    <!--
35
 
      - Maps the egida dispatcher to *.htm. All handler mappings in
36
 
      - egida-servlet.xml will by default be applied to this subpath.
37
 
      - If a mapping isn't a /* subpath, the handler mappings are considered
38
 
      - relative to the web app root.
39
 
      -
40
 
      - NOTE: A single dispatcher can be mapped to multiple paths, like any servlet.
41
 
      -->
42
 
 
43
 
    <servlet-mapping>
44
 
        <servlet-name>remoting</servlet-name>
45
 
        <url-pattern>/*</url-pattern>
46
 
    </servlet-mapping>
47
 
 
48
 
</web-app>
 
 
b'\\ No newline at end of file'