JBoss Remoting SVN: r4945 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/WEB-INF.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:28:12 -0400 (Sun, 05 Apr 2009)
New Revision: 4945
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/WEB-INF/web.xml
Log:
JBREM-139: Replaced locatorUrl with invokerName.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/WEB-INF/web.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/WEB-INF/web.xml 2009-04-05 06:27:55 UTC (rev 4944)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/WEB-INF/web.xml 2009-04-05 06:28:12 UTC (rev 4945)
@@ -15,10 +15,8 @@
</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>
+ <param-name>invokerName</param-name>
+ <param-value>jboss.remoting:host=localhost,port=8080,service=invoker,transport=servlet</param-value>
<description>The servlet server invoker</description>
</init-param>
<load-on-startup>1</load-on-startup>
15 years, 8 months
JBoss Remoting SVN: r4944 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:27:55 -0400 (Sun, 05 Apr 2009)
New Revision: 4944
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-service.xml
Removed:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-invoker-service.xml
Log:
JBREM-139: Renamed remoting-servlet-invoker-service.xml to remoting-servlet-service.xml.
Deleted: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-invoker-service.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-invoker-service.xml 2009-04-05 06:27:41 UTC (rev 4943)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-invoker-service.xml 2009-04-05 06:27:55 UTC (rev 4944)
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<server>
- <mbean code="org.jboss.remoting.transport.Connector"
- name="jboss.remoting:service=Connector,transport=Servlet"
- display-name="Servlet transport Connector">
-
- <attribute name="Configuration">
- <config>
- <invoker transport="servlet">
- <attribute name="serverBindAddress">localhost</attribute>
- <attribute name="serverBindPort">8080</attribute>
- <attribute name="preserveLines">true</attribute>
- <attribute name="path">servlet-invoker/ServerInvokerServlet</attribute>
- </invoker>
- <handlers>
- <handler subsystem="test">org.jboss.test.remoting.transport.servlet.lines.TestInvocationHandler</handler>
- </handlers>
- </config>
- </attribute>
- </mbean>
-</server>
Copied: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-service.xml (from rev 4674, remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-invoker-service.xml)
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-service.xml (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-service.xml 2009-04-05 06:27:55 UTC (rev 4944)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<server>
+ <mbean code="org.jboss.remoting.transport.Connector"
+ name="jboss.remoting:service=Connector,transport=Servlet"
+ display-name="Servlet transport Connector">
+
+ <attribute name="Configuration">
+ <config>
+ <invoker transport="servlet">
+ <attribute name="serverBindAddress">localhost</attribute>
+ <attribute name="serverBindPort">8080</attribute>
+ <attribute name="preserveLines">true</attribute>
+ <attribute name="path">servlet-invoker/ServerInvokerServlet</attribute>
+ </invoker>
+ <handlers>
+ <handler subsystem="test">org.jboss.test.remoting.transport.servlet.preservelines.TestInvocationHandler</handler>
+ </handlers>
+ </config>
+ </attribute>
+ </mbean>
+</server>
Property changes on: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/preservelines/remoting-servlet-service.xml
___________________________________________________________________
Name: svn:mergeinfo
+
15 years, 8 months
JBoss Remoting SVN: r4943 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/WEB-INF.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:27:41 -0400 (Sun, 05 Apr 2009)
New Revision: 4943
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/WEB-INF/web.xml
Log:
JBREM-139: Replaced locatorUrl with invokerName.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/WEB-INF/web.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/WEB-INF/web.xml 2009-04-05 06:26:50 UTC (rev 4942)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/WEB-INF/web.xml 2009-04-05 06:27:41 UTC (rev 4943)
@@ -15,10 +15,8 @@
</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>
+ <param-name>invokerName</param-name>
+ <param-value>jboss.remoting:host=localhost,port=8080,service=invoker,transport=servlet</param-value>
<description>The servlet server invoker</description>
</init-param>
<load-on-startup>1</load-on-startup>
15 years, 8 months
JBoss Remoting SVN: r4942 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:26:50 -0400 (Sun, 05 Apr 2009)
New Revision: 4942
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-service.xml
Removed:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-invoker-service.xml
Log:
JBREM-139: Renamed remoting-servlet-invoker-service.xml to remoting-servlet-service.xml.
Deleted: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-invoker-service.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-invoker-service.xml 2009-04-05 06:26:14 UTC (rev 4941)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-invoker-service.xml 2009-04-05 06:26:50 UTC (rev 4942)
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<server>
- <mbean code="org.jboss.remoting.transport.Connector"
- name="jboss.remoting:service=Connector,transport=Servlet"
- display-name="Servlet transport Connector">
-
- <attribute name="Configuration">
- <config>
- <invoker transport="servlet">
- <attribute name="serverBindAddress">localhost</attribute>
- <attribute name="serverBindPort">8080</attribute>
- <attribute name="preserveLines">false</attribute>
- <attribute name="path">servlet-invoker/ServerInvokerServlet</attribute>
- </invoker>
- <handlers>
- <handler subsystem="test">org.jboss.test.remoting.transport.servlet.lines.TestInvocationHandler</handler>
- </handlers>
- </config>
- </attribute>
- </mbean>
-</server>
Copied: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-service.xml (from rev 4674, remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-invoker-service.xml)
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-service.xml (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-service.xml 2009-04-05 06:26:50 UTC (rev 4942)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<server>
+ <mbean code="org.jboss.remoting.transport.Connector"
+ name="jboss.remoting:service=Connector,transport=Servlet"
+ display-name="Servlet transport Connector">
+
+ <attribute name="Configuration">
+ <config>
+ <invoker transport="servlet">
+ <attribute name="serverBindAddress">localhost</attribute>
+ <attribute name="serverBindPort">8080</attribute>
+ <attribute name="preserveLines">false</attribute>
+ <attribute name="path">servlet-invoker/ServerInvokerServlet</attribute>
+ </invoker>
+ <handlers>
+ <handler subsystem="test">org.jboss.test.remoting.transport.servlet.nopreservelines.TestInvocationHandler</handler>
+ </handlers>
+ </config>
+ </attribute>
+ </mbean>
+</server>
Property changes on: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/nopreservelines/remoting-servlet-service.xml
___________________________________________________________________
Name: svn:mergeinfo
+
15 years, 8 months
JBoss Remoting SVN: r4941 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:26:14 -0400 (Sun, 05 Apr 2009)
New Revision: 4941
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/ServletMultihomeTestClient.java
Log:
JBREM-139: Changed InvokerLocator.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/ServletMultihomeTestClient.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/ServletMultihomeTestClient.java 2009-04-05 06:25:42 UTC (rev 4940)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/ServletMultihomeTestClient.java 2009-04-05 06:26:14 UTC (rev 4941)
@@ -45,7 +45,7 @@
protected void setupServer() throws Exception
{
locatorURI = getTransport() + "://" + InvokerLocator.MULTIHOME + getPath() + "/?";
- locatorURI += InvokerLocator.CONNECT_HOMES_KEY + "=127.0.0.1:8081!192.168.2.2:8082!10.11.14.75:8083";
+ locatorURI += InvokerLocator.CONNECT_HOMES_KEY + "=localhost:7071!localhost:7082!localhost:7093";
serverLocator = new InvokerLocator(locatorURI);
log.info("server locator: " + locatorURI);
}
15 years, 8 months
JBoss Remoting SVN: r4940 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:25:42 -0400 (Sun, 05 Apr 2009)
New Revision: 4940
Removed:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/server.xml
Log:
JBREM-139: Created a single server.xml in .../servlet directory for all servlet tests.
Deleted: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/server.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/server.xml 2009-04-05 06:23:24 UTC (rev 4939)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/server.xml 2009-04-05 06:25:42 UTC (rev 4940)
@@ -1,199 +0,0 @@
-<Server>
-
- <!--APR library loader. Documentation at /docs/apr.html -->
- <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
- <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
- <Listener className="org.apache.catalina.core.JasperListener" />
-
- <!-- Use a custom version of StandardService that allows the
- connectors to be started independent of the normal lifecycle
- start to allow web apps to be deployed before starting the
- connectors.
- -->
- <Service name="jboss.web">
-
- <!-- A "Connector" represents an endpoint by which requests are received
- and responses are returned. Documentation at :
- Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
- Java AJP Connector: /docs/config/ajp.html
- APR (HTTP/AJP) Connector: /docs/apr.html
- Define a non-SSL HTTP/1.1 Connector on port 8080
- -->
- <Connector port="8080" address="${jboss.bind.address}"
- maxThreads="250" maxHttpHeaderSize="8192"
- emptySessionPath="true" protocol="HTTP/1.1"
- enableLookups="false" redirectPort="8443" acceptCount="100"
- connectionTimeout="20000" disableUploadTimeout="true" />
-
- <!-- The following Connectors are used by ServletMultihomeTestCase. -->
- <Connector port="8081" address="127.0.0.1"
- maxThreads="250" maxHttpHeaderSize="8192"
- emptySessionPath="true" protocol="HTTP/1.1"
- enableLookups="false" redirectPort="8443" acceptCount="100"
- connectionTimeout="20000" disableUploadTimeout="true" />
- <Connector port="8082" address="192.168.2.2"
- maxThreads="250" maxHttpHeaderSize="8192"
- emptySessionPath="true" protocol="HTTP/1.1"
- enableLookups="false" redirectPort="8443" acceptCount="100"
- connectionTimeout="20000" disableUploadTimeout="true" />
- <Connector port="8083" address="10.11.14.75"
- maxThreads="250" maxHttpHeaderSize="8192"
- emptySessionPath="true" protocol="HTTP/1.1"
- enableLookups="false" redirectPort="8443" acceptCount="100"
- connectionTimeout="20000" disableUploadTimeout="true" />
-
- <!-- Define a SSL HTTP/1.1 Connector on port 8443
- This connector uses the JSSE configuration, when using APR, the
- connector should be using the OpenSSL style configuration
- described in the APR documentation -->
- <!--
- <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
- maxThreads="150" scheme="https" secure="true"
- clientAuth="false" sslProtocol="TLS" />
- -->
- <!-- SSL/TLS Connector configuration using the admin devl guide keystore -->
- <!--Connector port="8443" address="${jboss.bind.address}"
- maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
- emptySessionPath="true"
- scheme="https" secure="true" clientAuth="false"
- keystoreFile="${jboss.server.home.dir}/conf/.keystore"
- keystorePass="unit-tests-server" sslProtocol = "TLS" /-->
-
- <Connector port="8443" maxHttpHeaderSize="8192"
- maxThreads="50" enableLookups="false"
- disableUploadTimeout="true"
- acceptCount="100" scheme="https" secure="true"
- SSLEngine="on"
- SSLCertificateFile="${jboss.server.home.dir}/conf/cert.pem"
- SSLCertificateKeyFile="${jboss.server.home.dir}/conf/key.pem" />
-
- <!-- Define an AJP 1.3 Connector on port 8009 -->
- <Connector port="8009" address="${jboss.bind.address}" protocol="AJP/1.3"
- emptySessionPath="true" enableLookups="false" redirectPort="8443" />
-
- <Engine name="jboss.web" defaultHost="localhost">
-
- <!-- The JAAS based authentication and authorization realm implementation
- that is compatible with the jboss 3.2.x realm implementation.
- - certificatePrincipal : the class name of the
- org.jboss.security.auth.certs.CertificatePrincipal impl
- used for mapping X509[] cert chains to a Princpal.
- - allRolesMode : how to handle an auth-constraint with a role-name=*,
- one of strict, authOnly, strictAuthOnly
- + strict = Use the strict servlet spec interpretation which requires
- that the user have one of the web-app/security-role/role-name
- + authOnly = Allow any authenticated user
- + strictAuthOnly = Allow any authenticated user only if there are no
- web-app/security-roles
- -->
- <Realm className="org.jboss.web.tomcat.security.JBossSecurityMgrRealm"
- certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping"
- allRolesMode="authOnly"
- />
- <!-- A subclass of JBossSecurityMgrRealm that uses the authentication
- behavior of JBossSecurityMgrRealm, but overrides the authorization
- checks to use JACC permissions with the current java.security.Policy
- to determine authorized access.
- - allRolesMode : how to handle an auth-constraint with a role-name=*,
- one of strict, authOnly, strictAuthOnly
- + strict = Use the strict servlet spec interpretation which requires
- that the user have one of the web-app/security-role/role-name
- + authOnly = Allow any authenticated user
- + strictAuthOnly = Allow any authenticated user only if there are no
- web-app/security-roles
- <Realm className="org.jboss.web.tomcat.security.JaccAuthorizationRealm"
- certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping"
- allRolesMode="authOnly"
- />
- -->
-
- <Host name="localhost"
- autoDeploy="false" deployOnStartup="false" deployXML="false"
- configClass="org.jboss.web.tomcat.security.config.JBossContextConfig"
- >
-
- <!-- Uncomment to enable request dumper. This Valve "logs interesting
- contents from the specified Request (before processing) and the
- corresponding Response (after processing). It is especially useful
- in debugging problems related to headers and cookies."
- -->
- <!--
- <Valve className="org.apache.catalina.valves.RequestDumperValve" />
- -->
-
- <!-- Access logger -->
- <!--
- <Valve className="org.apache.catalina.valves.AccessLogValve"
- prefix="localhost_access_log." suffix=".log"
- pattern="common" directory="${jboss.server.home.dir}/log"
- resolveHosts="false" />
- -->
-
- <!-- Uncomment to enable single sign-on across web apps
- deployed to this host. Does not provide SSO across a cluster.
-
- If this valve is used, do not use the JBoss ClusteredSingleSignOn
- valve shown below.
-
- A new configuration attribute is available beginning with
- release 4.0.4:
-
- cookieDomain configures the domain to which the SSO cookie
- will be scoped (i.e. the set of hosts to
- which the cookie will be presented). By default
- the cookie is scoped to "/", meaning the host
- that presented it. Set cookieDomain to a
- wider domain (e.g. "xyz.com") to allow an SSO
- to span more than one hostname.
- -->
- <!--
- <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
- -->
-
- <!-- Uncomment to enable single sign-on across web apps
- deployed to this host AND to all other hosts in the cluster.
-
- If this valve is used, do not use the standard Tomcat SingleSignOn
- valve shown above.
-
- Valve uses a JBossCache instance to support SSO credential
- caching and replication across the cluster. The JBossCache
- instance must be configured separately. By default, the valve
- shares a JBossCache with the service that supports HttpSession
- replication. See the "jboss-web-cluster-service.xml" file in the
- server/all/deploy directory for cache configuration details.
-
- Besides the attributes supported by the standard Tomcat
- SingleSignOn valve (see the Tomcat docs), this version also
- supports the following attributes:
-
- cookieDomain see above
-
- treeCacheName JMX ObjectName of the JBossCache MBean used to
- support credential caching and replication across
- the cluster. If not set, the default value is
- "jboss.cache:service=TomcatClusteringCache", the
- standard ObjectName of the JBossCache MBean used
- to support session replication.
- -->
- <!--
- <Valve className="org.jboss.web.tomcat.service.sso.ClusteredSingleSignOn" />
- -->
-
- <!-- Check for unclosed connections and transaction terminated checks
- in servlets/jsps.
-
- Important: The dependency on the CachedConnectionManager
- in META-INF/jboss-service.xml must be uncommented, too
- -->
- <Valve className="org.jboss.web.tomcat.service.jca.CachedConnectionValve"
- cachedConnectionManagerObjectName="jboss.jca:service=CachedConnectionManager"
- transactionManagerObjectName="jboss:service=TransactionManager" />
-
- </Host>
-
- </Engine>
-
- </Service>
-
-</Server>
\ No newline at end of file
15 years, 8 months
JBoss Remoting SVN: r4939 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:23:24 -0400 (Sun, 05 Apr 2009)
New Revision: 4939
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-service.xml
Removed:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-invoker-service.xml
Log:
JBREM-139: Renamed remoting-servlet-invoker-service.xml to remoting-servlet-service.xml.
Deleted: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-invoker-service.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-invoker-service.xml 2009-04-05 06:22:47 UTC (rev 4938)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-invoker-service.xml 2009-04-05 06:23:24 UTC (rev 4939)
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<server>
-
- <mbean code="org.jboss.remoting.transport.Connector"
- name="jboss.remoting:service=Connector,transport=Servlet"
- display-name="Servlet transport Connector">
-
- <attribute name="InvokerLocator">
- servlet://multihome/servlet-invoker/ServerInvokerServlet/?homes=127.0.0.1:8081!192.168.2.2:8082!10.11.14.75:8083
- </attribute>
-
- <attribute name="Configuration">
- <config>
- <handlers>
- <handler subsystem="test">org.jboss.test.remoting.multihome.TestInvocationHandler</handler>
- </handlers>
- </config>
- </attribute>
- </mbean>
-
-</server>
Copied: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-service.xml (from rev 4674, remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-invoker-service.xml)
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-service.xml (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-service.xml 2009-04-05 06:23:24 UTC (rev 4939)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<server>
+
+ <mbean code="org.jboss.remoting.transport.Connector"
+ name="jboss.remoting:service=Connector,transport=Servlet"
+ display-name="Servlet transport Connector">
+
+ <attribute name="InvokerLocator">
+ servlet://multihome/servlet-invoker/ServerInvokerServlet/?homes=localhost:7071!localhost:7082!localhost:7093
+ </attribute>
+
+ <attribute name="Configuration">
+ <config>
+ <handlers>
+ <handler subsystem="test">org.jboss.test.remoting.multihome.TestInvocationHandler</handler>
+ </handlers>
+ </config>
+ </attribute>
+ </mbean>
+
+</server>
Property changes on: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/multihome/remoting-servlet-service.xml
___________________________________________________________________
Name: svn:mergeinfo
+
15 years, 8 months
JBoss Remoting SVN: r4938 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:22:47 -0400 (Sun, 05 Apr 2009)
New Revision: 4938
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/MBeanServerPlatformTestClient.java
Log:
JBREM-139: Moved MBeanServer tests to their own directory.
Copied: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/MBeanServerPlatformTestClient.java (from rev 4674, remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/MBeanServerPlatformTestClient.java)
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/MBeanServerPlatformTestClient.java (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/MBeanServerPlatformTestClient.java 2009-04-05 06:22:47 UTC (rev 4938)
@@ -0,0 +1,46 @@
+
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.test.remoting.transport.servlet.mbeanserver.platform;
+
+import org.jboss.test.remoting.transport.servlet.MBeanServerSelectionTestParent;
+
+/**
+ *
+ * Used to test JBREM-746.
+ *
+ * @author <a href="ron.sigal(a)jboss.com">Ron Sigal</a>
+ * @version $Revision: 1.1 $
+ * <p>
+ * Copyright Nov 29, 2007
+ * </p>
+ */
+public class MBeanServerPlatformTestClient extends MBeanServerSelectionTestParent
+{
+
+ protected String getDefaultDomain()
+ {
+ return "platform";
+ }
+
+}
+
Property changes on: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/MBeanServerPlatformTestClient.java
___________________________________________________________________
Name: svn:mergeinfo
+
15 years, 8 months
JBoss Remoting SVN: r4937 - in remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver: platform and 1 other directories.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:22:22 -0400 (Sun, 05 Apr 2009)
New Revision: 4937
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/WEB-INF/
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/WEB-INF/web.xml
Log:
JBREM-139: Moved MBeanServer tests to their own directory.
Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/WEB-INF/web.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/WEB-INF/web.xml (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/platform/WEB-INF/web.xml 2009-04-05 06:22:22 UTC (rev 4937)
@@ -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 3291 2008-01-15 05:03:53Z 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>invokerName</param-name>
+ <param-value>jboss.remoting:host=localhost,port=8080,service=invoker,transport=servlet</param-value>
+ <description>The servlet server invoker</description>
+ </init-param>
+ <init-param>
+ <param-name>mbeanServer</param-name>
+ <param-value>*platform*</param-value>
+ <description>The servlet server invoker</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>
+
15 years, 8 months
JBoss Remoting SVN: r4936 - in remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/jboss: WEB-INF and 1 other directory.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-04-05 02:22:01 -0400 (Sun, 05 Apr 2009)
New Revision: 4936
Added:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/jboss/WEB-INF/
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/jboss/WEB-INF/web.xml
Log:
JBREM-139: Moved MBeanServer tests to their own directory.
Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/jboss/WEB-INF/web.xml
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/jboss/WEB-INF/web.xml (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/servlet/mbeanserver/jboss/WEB-INF/web.xml 2009-04-05 06:22:01 UTC (rev 4936)
@@ -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 3291 2008-01-15 05:03:53Z 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>invokerName</param-name>
+ <param-value>jboss.remoting:host=localhost,port=8080,service=invoker,transport=servlet</param-value>
+ <description>The servlet server invoker</description>
+ </init-param>
+ <!--init-param>
+ <param-name>mbeanServer</param-name>
+ <param-value>*platform*</param-value>
+ <description>The servlet server invoker</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>
+
15 years, 8 months