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

« back to all changes in this revision

Viewing changes to src/tests/org/jboss/test/remoting/transport/servlet/marshal/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>ServerInvokerServletDefault</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://127.0.0.1:8080/servlet-invoker/ServerInvokerServlet/default/?datatype=test&amp;marshaller=org.jboss.test.remoting.transport.servlet.marshal.TestMarshaller&amp;unmarshaller=org.jboss.test.remoting.transport.servlet.marshal.TestUnmarshaller</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>
 
25
        <servlet-name>ServerInvokerServletFalse</servlet-name>
 
26
        <description>The ServerInvokerServlet receives requests via HTTP
 
27
           protocol from within a web container and passes it onto the
 
28
           ServletServerInvoker for processing.
 
29
        </description>
 
30
        <servlet-class>org.jboss.remoting.transport.servlet.web.ServerInvokerServlet</servlet-class>
 
31
        <init-param>
 
32
            <param-name>locatorUrl</param-name>
 
33
            <param-value>servlet://127.0.0.1:8080/servlet-invoker/ServerInvokerServlet/false/?datatype=test&amp;marshaller=org.jboss.test.remoting.transport.servlet.marshal.TestMarshaller&amp;unmarshaller=org.jboss.test.remoting.transport.servlet.marshal.TestUnmarshaller&amp;useRemotingContentType=false</param-value>
 
34
            <description>The servlet server invoker locator url</description>
 
35
        </init-param>
 
36
        <load-on-startup>1</load-on-startup>
 
37
    </servlet>
 
38
    <servlet>
 
39
        <servlet-name>ServerInvokerServletTrue</servlet-name>
 
40
        <description>The ServerInvokerServlet receives requests via HTTP
 
41
           protocol from within a web container and passes it onto the
 
42
           ServletServerInvoker for processing.
 
43
        </description>
 
44
        <servlet-class>org.jboss.remoting.transport.servlet.web.ServerInvokerServlet</servlet-class>
 
45
        <init-param>
 
46
            <param-name>locatorUrl</param-name>
 
47
            <param-value>servlet://127.0.0.1:8080/servlet-invoker/ServerInvokerServlet/true/?datatype=test&amp;marshaller=org.jboss.test.remoting.transport.servlet.marshal.TestMarshaller&amp;unmarshaller=org.jboss.test.remoting.transport.servlet.marshal.TestUnmarshaller&amp;useRemotingContentType=true</param-value>
 
48
            <description>The servlet server invoker locator url</description>
 
49
        </init-param>
 
50
        <load-on-startup>1</load-on-startup>
 
51
    </servlet>
 
52
    <servlet-mapping>
 
53
        <servlet-name>ServerInvokerServletDefault</servlet-name>
 
54
        <url-pattern>/ServerInvokerServlet/default/*</url-pattern>
 
55
    </servlet-mapping>
 
56
    <servlet-mapping>
 
57
        <servlet-name>ServerInvokerServletFalse</servlet-name>
 
58
        <url-pattern>/ServerInvokerServlet/false/*</url-pattern>
 
59
    </servlet-mapping>
 
60
    <servlet-mapping>
 
61
        <servlet-name>ServerInvokerServletTrue</servlet-name>
 
62
        <url-pattern>/ServerInvokerServlet/true/*</url-pattern>
 
63
    </servlet-mapping>
 
64
</web-app>
 
65