Author: ron.sigal(a)jboss.com
Date: 2009-09-22 02:04:43 -0400 (Tue, 22 Sep 2009)
New Revision: 5546
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/marshal/noconfig/WEB-INF/web.xml
Log:
JBREM-1102: Added missing web.xml (svn problem?).
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/marshal/noconfig/WEB-INF/web.xml
===================================================================
---
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/marshal/noconfig/WEB-INF/web.xml
(rev 0)
+++
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/marshal/noconfig/WEB-INF/web.xml 2009-09-22
06:04:43 UTC (rev 5546)
@@ -0,0 +1,29 @@
+<?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 4903 2009-03-24 07:33:10Z ron.sigal(a)jboss.com $
+-->
+<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>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>
+
Show replies by date