~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/ssl/WEB-INF/web.xml

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

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 1238 2006-07-17 03:36:20Z 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>locatorUrl</param-name>
 
19
            <param-value>sslservlet://localhost:8443/servlet-invoker/ServerInvokerServlet</param-value>
 
20
            <description>The servlet server invoker locator url</description>
 
21
<!--
 
22
           <param-name>locatorUrl</param-name>
 
23
           <param-value>sslservlet://localhost:8443/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