[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/lease/servlet/WEB-INF ...

Tom Elrod tom.elrod at jboss.com
Thu Jan 18 02:37:31 EST 2007


  User: telrod  
  Date: 07/01/18 02:37:31

  Added:       src/tests/org/jboss/test/remoting/lease/servlet/WEB-INF 
                        Tag: remoting_2_x web.xml
  Log:
  JBREM-671 - fixed so leasing will work again when using servlet invoker.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +34 -0     JBossRemoting/src/tests/org/jboss/test/remoting/lease/servlet/WEB-INF/Attic/web.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: web.xml
  ===================================================================
  RCS file: web.xml
  diff -N web.xml
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ web.xml	18 Jan 2007 07:37:31 -0000	1.1.2.1
  @@ -0,0 +1,34 @@
  +<?xml version="1.0" encoding="UTF-8"?>
  +<!DOCTYPE web-app PUBLIC
  +   "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  +   "http://java.sun.com/dtd/web-app_2_3.dtd">
  +
  +<!-- The the JBossRemoting server invoker servlet web.xml descriptor
  +$Id: web.xml,v 1.1.2.1 2007/01/18 07:37:31 telrod Exp $
  +-->
  +<web-app>
  +    <servlet>
  +        <servlet-name>ServerInvokerServlet</servlet-name>
  +        <description>The ServerInvokerServlet receives requests via HTTP
  +           protocol from within a web container and passes it onto the
  +           ServletServerInvoker for processing.
  +        </description>
  +        <servlet-class>org.jboss.remoting.transport.servlet.web.ServerInvokerServlet</servlet-class>
  +        <init-param>
  +             <param-name>invokerName</param-name>
  +             <param-value>jboss.remoting:service=invoker,transport=servlet</param-value>
  +             <description>The servlet server invoker</description>
  +           <!--
  +                      <param-name>locatorUrl</param-name>
  +                      <param-value>servlet://localhost:8080/servlet-invoker/ServerInvokerServlet</param-value>
  +                      <description>The servlet server invoker locator url</description>
  +           -->
  +        </init-param>
  +        <load-on-startup>1</load-on-startup>
  +    </servlet>
  +    <servlet-mapping>
  +        <servlet-name>ServerInvokerServlet</servlet-name>
  +        <url-pattern>/ServerInvokerServlet/*</url-pattern>
  +    </servlet-mapping>
  +</web-app>
  +
  
  
  



More information about the jboss-cvs-commits mailing list