JBoss Remoting SVN: r5296 - remoting2/branches.
by jboss-remoting-commits@lists.jboss.org
Author: jbertram(a)redhat.com
Date: 2009-05-28 22:00:26 -0400 (Thu, 28 May 2009)
New Revision: 5296
Removed:
remoting2/branches/2.2.2-SP9_JBREM-1112_JBREM-1128_JBREM-1129/
Log:
[JBPAPP-2030] branch not needed because 2.2.3 tag will be used instead
15 years, 6 months
JBoss Remoting SVN: r5295 - remoting2/branches.
by jboss-remoting-commits@lists.jboss.org
Author: jbertram(a)redhat.com
Date: 2009-05-26 11:44:39 -0400 (Tue, 26 May 2009)
New Revision: 5295
Added:
remoting2/branches/2.2.2-SP9_JBREM-1112_JBREM-1128_JBREM-1129/
Log:
[JBPAPP-2030] Creating JBR branch
Copied: remoting2/branches/2.2.2-SP9_JBREM-1112_JBREM-1128_JBREM-1129 (from rev 5294, remoting2/tags/2.2.2-SP9)
15 years, 6 months
JBoss Remoting SVN: r5294 - remoting2/tags.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-21 23:24:49 -0400 (Thu, 21 May 2009)
New Revision: 5294
Added:
remoting2/tags/2.2.3/
Log:
Copied: remoting2/tags/2.2.3 (from rev 5293, remoting2/branches/2.2)
15 years, 6 months
JBoss Remoting SVN: r5293 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-21 19:57:51 -0400 (Thu, 21 May 2009)
New Revision: 5293
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java
Log:
JBREM-1102: Made cloned and wrote private.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java 2009-05-21 23:49:24 UTC (rev 5292)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java 2009-05-21 23:57:51 UTC (rev 5293)
@@ -39,8 +39,8 @@
{
protected static Logger log = Logger.getLogger(ConfigTestMarshaller.class);
private static final long serialVersionUID = 1L;
- public static volatile int cloned;
- public static volatile boolean wrote;
+ private static volatile int cloned;
+ private static volatile boolean wrote;
public void write(Object dataObject, OutputStream output, int version) throws IOException
{
15 years, 6 months
JBoss Remoting SVN: r5292 - remoting2/branches/2.2/src/tests/org/jboss/test/remoting/marshall/config.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-21 19:49:24 -0400 (Thu, 21 May 2009)
New Revision: 5292
Modified:
remoting2/branches/2.2/src/tests/org/jboss/test/remoting/marshall/config/BisocketConfigurationMapTestCase.java
Log:
JBREM-1102: Corrected counts in a couple of test methods.
Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/marshall/config/BisocketConfigurationMapTestCase.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/marshall/config/BisocketConfigurationMapTestCase.java 2009-05-21 15:55:55 UTC (rev 5291)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/marshall/config/BisocketConfigurationMapTestCase.java 2009-05-21 23:49:24 UTC (rev 5292)
@@ -172,7 +172,7 @@
// Do tests.
assertTrue(ConfigTestMarshaller.ok(true, 16));
- assertTrue(ConfigTestUnmarshaller.ok(true, 12));
+ assertTrue(ConfigTestUnmarshaller.ok(true, 8));
assertTrue(LocatorTestMarshaller.ok());
assertTrue(LocatorTestUnmarshaller.ok());
assertEquals(1, callbackHandler.counter);
@@ -305,7 +305,7 @@
// Do tests.
assertTrue(ConfigTestMarshaller.ok(true, 8));
- assertTrue(ConfigTestUnmarshaller.ok(true, 6));
+ assertTrue(ConfigTestUnmarshaller.ok(true, 4));
assertTrue(LocatorTestMarshaller.ok());
assertTrue(LocatorTestUnmarshaller.ok());
assertEquals(1, callbackHandler.counter);
15 years, 6 months
JBoss Remoting SVN: r5291 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-21 11:55:55 -0400 (Thu, 21 May 2009)
New Revision: 5291
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestUnmarshaller.java
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestMarshaller.java
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestUnmarshaller.java
Log:
JBREM-1102: Made flags volatile.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java 2009-05-20 05:38:43 UTC (rev 5290)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestMarshaller.java 2009-05-21 15:55:55 UTC (rev 5291)
@@ -39,8 +39,8 @@
{
protected static Logger log = Logger.getLogger(ConfigTestMarshaller.class);
private static final long serialVersionUID = 1L;
- public static int cloned;
- public static boolean wrote;
+ public static volatile int cloned;
+ public static volatile boolean wrote;
public void write(Object dataObject, OutputStream output, int version) throws IOException
{
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestUnmarshaller.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestUnmarshaller.java 2009-05-20 05:38:43 UTC (rev 5290)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/ConfigTestUnmarshaller.java 2009-05-21 15:55:55 UTC (rev 5291)
@@ -40,8 +40,8 @@
{
protected static Logger log = Logger.getLogger(ConfigTestUnmarshaller.class);
private static final long serialVersionUID = 1L;
- public static int cloned;
- public static boolean read;
+ public static volatile int cloned;
+ public static volatile boolean read;
public UnMarshaller cloneUnMarshaller() throws CloneNotSupportedException
{
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestMarshaller.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestMarshaller.java 2009-05-20 05:38:43 UTC (rev 5290)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestMarshaller.java 2009-05-21 15:55:55 UTC (rev 5291)
@@ -34,8 +34,8 @@
public class LocatorTestMarshaller extends ConfigTestMarshaller
{
private static final long serialVersionUID = 1L;
- public static int cloned;
- public static boolean wrote;
+ public static volatile int cloned;
+ public static volatile boolean wrote;
public Marshaller cloneMarshaller() throws CloneNotSupportedException
{
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestUnmarshaller.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestUnmarshaller.java 2009-05-20 05:38:43 UTC (rev 5290)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/config/LocatorTestUnmarshaller.java 2009-05-21 15:55:55 UTC (rev 5291)
@@ -33,8 +33,8 @@
public class LocatorTestUnmarshaller extends ConfigTestUnmarshaller
{
private static final long serialVersionUID = 1L;
- public static int cloned;
- public static boolean read;
+ public static volatile int cloned;
+ public static volatile boolean read;
public UnMarshaller cloneUnMarshaller() throws CloneNotSupportedException
{
15 years, 6 months
JBoss Remoting SVN: r5290 - remoting2/branches.
by jboss-remoting-commits@lists.jboss.org
Author: galder.zamarreno(a)jboss.com
Date: 2009-05-20 01:38:43 -0400 (Wed, 20 May 2009)
New Revision: 5290
Added:
remoting2/branches/2.2.2-SP11_JBREM-1138/
Log:
Created branch.
Copied: remoting2/branches/2.2.2-SP11_JBREM-1138 (from rev 5289, remoting2/tags/2.2.2-SP11)
15 years, 6 months
JBoss Remoting SVN: r5289 - in remoting2/branches/2.2/src/etc/lib: remoting_2_2_2_SP11 and 1 other directory.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-19 23:29:30 -0400 (Tue, 19 May 2009)
New Revision: 5289
Added:
remoting2/branches/2.2/src/etc/lib/remoting_2_2_2_SP11/
remoting2/branches/2.2/src/etc/lib/remoting_2_2_2_SP11/jboss-remoting.jar
Log:
JBREM-1130: Adding jboss-remoting.jar from release 2.2.2.SP11 for versioning test suite.
Added: remoting2/branches/2.2/src/etc/lib/remoting_2_2_2_SP11/jboss-remoting.jar
===================================================================
(Binary files differ)
Property changes on: remoting2/branches/2.2/src/etc/lib/remoting_2_2_2_SP11/jboss-remoting.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 6 months
JBoss Remoting SVN: r5288 - remoting2/branches/2.x.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-19 21:43:03 -0400 (Tue, 19 May 2009)
New Revision: 5288
Modified:
remoting2/branches/2.x/build.xml
Log:
JBREM-1134: Changed 2.2.3 client suffix to 2_2_3_client.
Modified: remoting2/branches/2.x/build.xml
===================================================================
--- remoting2/branches/2.x/build.xml 2009-05-19 21:21:10 UTC (rev 5287)
+++ remoting2/branches/2.x/build.xml 2009-05-20 01:43:03 UTC (rev 5288)
@@ -2272,7 +2272,7 @@
<param name="version" value="2.2.3"/>
</antcall>
<antcall target="tests.versioning.all_transports_pre_2.4" inheritrefs="true">
- <param name="jboss-junit-configuration" value="2_2_3"/>
+ <param name="jboss-junit-configuration" value="2_2_3_client"/>
<param name="client.classpath" value="${etc.dir}/lib/2.2.3/jboss-remoting.jar${old.extended.classpath}"/>
<param name="server.classpath" value="${output.lib.dir}/jboss-remoting.jar${extended.classpath}"/>
<param name="client.pre_2_0_compatible" value=""/>
15 years, 6 months
JBoss Remoting SVN: r5287 - remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/web.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2009-05-19 17:21:10 -0400 (Tue, 19 May 2009)
New Revision: 5287
Modified:
remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/web/WebInvokerTestClient.java
Log:
JBREM-1100: Makes allowance for new ObjectNames.
Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/web/WebInvokerTestClient.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/web/WebInvokerTestClient.java 2009-05-19 21:17:51 UTC (rev 5286)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/web/WebInvokerTestClient.java 2009-05-19 21:21:10 UTC (rev 5287)
@@ -100,6 +100,14 @@
int index = locatorURI.indexOf(':');
String transport = locatorURI.substring(0, index);
String params = (isServlet(transport) ? ",createUniqueObjectName=true" : "");
+ if (((String)response).indexOf("serializationtype=java") >= 0)
+ {
+ params += ",serializationtype=java";
+ }
+ else if (((String)response).indexOf("serializationtype=jboss") >= 0)
+ {
+ params += ",serializationtype=jboss";
+ }
String port = "servlet".equals(transport) ? "8080" : ("sslservlet".equals(transport) ? "8443" : "8888");
System.out.println("ObjectName: " + response);
String host = null;
15 years, 6 months