From jboss-remoting-commits at lists.jboss.org Thu Nov 6 13:25:04 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 6 Nov 2014 13:25:04 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6519 - remoting2/branches. Message-ID: <201411061825.sA6IP4ad023146@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-06 13:25:04 -0500 (Thu, 06 Nov 2014) New Revision: 6519 Added: remoting2/branches/2.5.4.SP3-0119044/ Log: Branching 2.5.4.SP3. From jboss-remoting-commits at lists.jboss.org Thu Nov 6 13:25:08 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 6 Nov 2014 13:25:08 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6520 - remoting2/branches/2.5.4.SP3-0119044. Message-ID: <201411061825.sA6IP8SA023159@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-06 13:25:08 -0500 (Thu, 06 Nov 2014) New Revision: 6520 Added: remoting2/branches/2.5.4.SP3-0119044/2.5.4.SP3/ Log: Branching 2.5.4.SP3. From jboss-remoting-commits at lists.jboss.org Thu Nov 6 13:26:10 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 6 Nov 2014 13:26:10 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6521 - remoting2/branches. Message-ID: <201411061826.sA6IQAMN023202@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-06 13:26:10 -0500 (Thu, 06 Nov 2014) New Revision: 6521 Added: remoting2/branches/2.5.4.SP3/ Log: Branching 2.5.4.SP3 From jboss-remoting-commits at lists.jboss.org Thu Nov 6 13:27:31 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 6 Nov 2014 13:27:31 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6522 - remoting2/branches. Message-ID: <201411061827.sA6IRVnL023227@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-06 13:27:31 -0500 (Thu, 06 Nov 2014) New Revision: 6522 Added: remoting2/branches/2.5.4.SP3-01190444/ Removed: remoting2/branches/2.5.4.SP3/ Log: Branching from tag 2.5.4.SP3. From jboss-remoting-commits at lists.jboss.org Thu Nov 6 14:30:11 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 6 Nov 2014 14:30:11 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6523 - in remoting2/branches/2.5.4.SP3-01190444/src: tests/org/jboss/test/remoting/connection/identity and 1 other directory. Message-ID: <201411061930.sA6JUBPT000808@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-06 14:30:10 -0500 (Thu, 06 Nov 2014) New Revision: 6523 Added: remoting2/branches/2.5.4.SP3-01190444/src/tests/org/jboss/test/remoting/connection/identity/ConnectionValidatorReuseTestCase.java Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ConnectionValidator.java remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Lease.java remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/LeasePinger.java remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ServerInvoker.java remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Version.java Log: Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ConnectionValidator.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ConnectionValidator.java 2014-11-06 18:27:31 UTC (rev 6522) +++ remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ConnectionValidator.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -260,6 +260,7 @@ private volatile boolean stopping; private String invokerSessionId; private boolean tieToLease = true; + private long clientLeasePeriod; private boolean stopLeaseOnFailure = true; private int pingTimeout; private int failureDisconnectTimeout = -1; @@ -287,6 +288,7 @@ listeners = new HashMap(); stopped = false; getParameters(client, new HashMap()); + clientLeasePeriod = client.getLeasePeriod(); log.debug(this + " created"); } @@ -300,6 +302,7 @@ stopped = false; this.metadata = new HashMap(metadata); getParameters(client, metadata); + clientLeasePeriod = client.getLeasePeriod(); log.debug(this + " created"); } @@ -357,7 +360,9 @@ { isValid = false; - if (tieToLease && client.getLeasePeriod() > 0) + log.info(this + ": tieToLease: " + tieToLease + ", client lease period: " + client.getLeasePeriod()); +// if (tieToLease && client.getLeasePeriod() > 0) + if (tieToLease && clientLeasePeriod > 0) { if (trace) { @@ -464,7 +469,9 @@ if (s.size() == 0) { listeners.remove(listener); + log.info(this + " removed " + listener); } + log.info(this + " listeners.size(): " + listeners.size()); if (listeners.size() == 0) { stop(); @@ -485,7 +492,7 @@ public String toString() { - return "ConnectionValidator[" + Integer.toHexString(System.identityHashCode(this)) + ":" + clientInvoker + ", pingPeriod=" + pingPeriod + " ms]"; + return "ConnectionValidator[" + Integer.toHexString(System.identityHashCode(this)) + ":" + client + ", " + clientInvoker + ", pingPeriod=" + pingPeriod + " ms]"; } public boolean isStopped() @@ -670,6 +677,7 @@ try { tieToLease = Boolean.valueOf(((String) o)).booleanValue(); + log.info(this + " tieToLease: " + tieToLease); } catch (Exception e) { @@ -902,16 +910,16 @@ if (pingWorked) { - if (trace) { log.trace("ConnectionValidator got successful ping using " + clientInvoker);} + if (trace) { log.trace(this + " got successful ping using " + clientInvoker);} } else { - if (trace) { log.trace("ConnectionValidator did not get successful ping response " + clientInvoker);} + if (trace) { log.trace(this + " did not get successful ping response " + clientInvoker);} } } catch (Throwable t) { - log.debug("ConnectionValidator failed to ping via " + clientInvoker, t); + log.debug(this + " failed to ping via " + clientInvoker, t); } return pingWorked; @@ -982,16 +990,16 @@ if (pingWorked) { - if (trace) { log.trace("ConnectionValidator got successful ping using " + clientInvoker);} + if (trace) { log.trace(this + " got successful ping using " + clientInvoker);} } else { - if (trace) { log.trace("ConnectionValidator did not get successful ping response " + clientInvoker);} + if (trace) { log.trace(this + " did not get successful ping response " + clientInvoker);} } } catch (Throwable t) { - log.debug("ConnectionValidator failed to ping via " + clientInvoker, t); + log.debug(this + " failed to ping via " + clientInvoker, t); } return pingWorked; Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Lease.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Lease.java 2014-11-06 18:27:31 UTC (rev 6522) +++ remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Lease.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -87,6 +87,7 @@ } this.leaseWindow = leasePeriod * 2; this.clientLeases = clientLeases; + log.info("clientLeases: " + clientLeases); } @@ -226,7 +227,7 @@ public String toString() { String hash = Integer.toHexString(System.identityHashCode(this)); - return "Lease[" + hash + ":" + clientSessionId + ":" + leasePingerId + "]"; + return "Lease[" + hash + ":" + clientSessionId + ":" + leasePingerId + ":" + leaseId + "]"; } private void notifyClientTermination(String sessionId) @@ -400,28 +401,89 @@ */ public void run() { - if (leaseUpdated) + boolean timedOut = false; + + if (clientLeases != null) { - leaseUpdated = false; + synchronized (clientLeases) + { + // ServerInvoker might be looking for a Lease. + if (leaseUpdated) + { + leaseUpdated = false; + } + else + { + timedOut = true; + if (clientLeases.remove(clientSessionId) != null) + { + if (isTraceEnabled) log.trace(Lease.this + " removed lease:" + clientSessionId); + } + else + { + if (isTraceEnabled) log.trace(Lease.this + " clientSessionId not found in clientLeases"); + } + } + } } else { + if (leaseUpdated) + { + leaseUpdated = false; + } + else + { + timedOut = true; + } + } + + if (timedOut) + { + if (isTraceEnabled) log.trace(Lease.this + " did not receive ping: " + clientSessionId); + stopLease(); + try { - if (isTraceEnabled) log.trace(Lease.this + " did not receive ping: " + clientSessionId); - stopLease(); notifyClientLost(); - if (clientLeases != null) - { - clientLeases.remove(clientSessionId); - } - if (isTraceEnabled) log.trace(Lease.this + " removed lease:" + clientSessionId); } catch (Throwable thr) { log.error("Error terminating client lease and sending notification of lost client.", thr); } } +// if (leaseUpdated) +// { +// leaseUpdated = false; +// } +// else +// { +// try +// { +// if (isTraceEnabled) log.trace(Lease.this + " did not receive ping: " + clientSessionId); +// stopLease(); +// notifyClientLost(); +// if (clientLeases != null) +// { +// if (clientLeases.remove(clientSessionId) != null) +// { +// if (isTraceEnabled) log.trace(Lease.this + " removed lease:" + clientSessionId); +// } +// else +// { +// if (isTraceEnabled) log.trace(Lease.this + " clientSessionId not found in clientLeases"); +// } +// } +// else +// { +// if (isTraceEnabled) log.trace(Lease.this + " clientLeases == null"); +// } +// } +// catch (Throwable thr) +// { +// log.error("Error terminating client lease and sending notification of lost client.", thr); +// } +// } } } } \ No newline at end of file Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/LeasePinger.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/LeasePinger.java 2014-11-06 18:27:31 UTC (rev 6522) +++ remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/LeasePinger.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -33,7 +33,7 @@ private static boolean trace = log.isTraceEnabled(); - private static Timer timer = new Timer(true); + private Timer timer = new Timer(true); // Attributes ----------------------------------------------------------------------------------- @@ -321,6 +321,7 @@ public long getLeasePeriod(String sessionID) { + log.info(this + ": timerTask: " + timerTask + ", clientSessionIds.containsKey(sessionID): " + clientSessionIds.containsKey(sessionID)); if (timerTask == null) { return -1; Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java 2014-11-06 18:27:31 UTC (rev 6522) +++ remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -472,6 +472,7 @@ { synchronized(clientLeaseLock) { + log.info(this + ": leasePinger: " + leasePinger); if(leasePinger == null) { return -1; Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ServerInvoker.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ServerInvoker.java 2014-11-06 18:27:31 UTC (rev 6522) +++ remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/ServerInvoker.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -449,6 +449,7 @@ public void removeConnectionListener(ConnectionListener listener) { + System.out.println(this + " removing ConnecttionListener " + listener); if(connectionNotifier != null) { connectionNotifier.removeListener(listener); @@ -466,6 +467,7 @@ String sessionId = (String)itr.next(); Lease clientLease = (Lease)clientLeases.get(sessionId); clientLease.terminateLease(sessionId); + System.out.println(this + " terminating " + clientLease); } clientLeases.clear(); } @@ -2065,8 +2067,21 @@ if(clientSessionId != null) { if(trace) { log.trace("Getting lease for invoker session id: " + clientSessionId); } - - Lease clientLease = (Lease)clientLeases.get(clientSessionId); + System.out.println(this + ": existing leases:"); + Iterator it = clientLeases.keySet().iterator(); + while (it.hasNext()) + { + Object key = it.next(); + log.info(" " + clientLeases.get(key)); + } + + Lease clientLease = null; + synchronized (clientLeases) + { + // Lease$LeaseTimerTask might be removing a Lease that timed out. + clientLease = (Lease)clientLeases.get(clientSessionId); + } + if(clientLease == null) { Lease newClientLease = new Lease(clientSessionId, leasePeriod, @@ -2099,7 +2114,7 @@ if (trace) log.trace("terminating invoker lease: " + clientLease); clientLease.terminateLeaseUponFailure(clientSessionId); clientLeases.remove(clientSessionId); - +log.info(this + " clientLeases: " + clientLeases); Lease newClientLease = new Lease(clientSessionId, leasePeriod, locator.getLocatorURI(), invocation.getRequestPayload(), Modified: remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Version.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Version.java 2014-11-06 18:27:31 UTC (rev 6522) +++ remoting2/branches/2.5.4.SP3-01190444/src/main/org/jboss/remoting/Version.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -40,7 +40,7 @@ public static final byte VERSION_2 = 2; public static final byte VERSION_2_2 = 22; - public static final String VERSION = "2.5.4.SP3 (Flounder)"; + public static final String VERSION = "2.5.4.SP3-0119044 (Flounder) [01190444: 11/6/14: 01:39"; private static final byte byteVersion = VERSION_2_2; private static byte defaultByteVersion = byteVersion; private static boolean performVersioning = true; Added: remoting2/branches/2.5.4.SP3-01190444/src/tests/org/jboss/test/remoting/connection/identity/ConnectionValidatorReuseTestCase.java =================================================================== --- remoting2/branches/2.5.4.SP3-01190444/src/tests/org/jboss/test/remoting/connection/identity/ConnectionValidatorReuseTestCase.java (rev 0) +++ remoting2/branches/2.5.4.SP3-01190444/src/tests/org/jboss/test/remoting/connection/identity/ConnectionValidatorReuseTestCase.java 2014-11-06 19:30:10 UTC (rev 6523) @@ -0,0 +1,263 @@ +/* +* JBoss, Home of Professional Open Source +* Copyright 2009, 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.connection.identity; + +import java.net.InetAddress; +import java.util.HashMap; +import java.util.Map; + +import javax.management.MBeanServer; + +import junit.framework.Assert; +import junit.framework.TestCase; + +import org.apache.log4j.ConsoleAppender; +import org.apache.log4j.Level; +import org.apache.log4j.Logger; +import org.apache.log4j.PatternLayout; +import org.jboss.remoting.Client; +import org.jboss.remoting.ConnectionListener; +import org.jboss.remoting.ConnectionValidator; +import org.jboss.remoting.InvocationRequest; +import org.jboss.remoting.InvokerLocator; +import org.jboss.remoting.Remoting; +import org.jboss.remoting.ServerInvocationHandler; +import org.jboss.remoting.ServerInvoker; +import org.jboss.remoting.callback.InvokerCallbackHandler; +import org.jboss.remoting.transport.Connector; +import org.jboss.remoting.transport.PortUtil; +import org.jboss.remoting.transport.socket.SocketServerInvoker; + + +/** + * + * @author Ron Sigal + * @version $Rev$ + *

+ * Copyright Nov 5, 2014 + *

+ */ +public class ConnectionValidatorReuseTestCase extends TestCase +{ + protected static final int LEASE_PERIOD = 2000; + protected static final int VALIDATOR_PING_TIMEOUT = 1000; + protected static final int VALIDATOR_PING_PERIOD = 2000; + protected static final int PING_PERIODS_TO_WAIT = 2; + + private static Logger log = Logger.getLogger(ConnectionValidatorReuseTestCase.class); + private static boolean firstTime = true; + + protected String host; + protected int port; + protected String locatorURI; + protected InvokerLocator serverLocator; + protected Connector connector; + protected TestInvocationHandler invocationHandler; + + + public void setUp() throws Exception + { + if (firstTime) + { + firstTime = false; + Logger.getLogger("org.jboss.remoting").setLevel(Level.TRACE); + Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO); + String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n"; + PatternLayout layout = new PatternLayout(pattern); + ConsoleAppender consoleAppender = new ConsoleAppender(layout); + Logger.getRootLogger().addAppender(consoleAppender); + } + host = InetAddress.getLocalHost().getHostAddress(); + port = PortUtil.findFreePort(host); + } + + + public void tearDown() + { + } + + + public void testSimultaneousClients() throws Throwable + { + log.info("entering " + getName()); + + // Start server. + setupServer(); + + // Create first client. + InvokerLocator clientLocator = new InvokerLocator(locatorURI); + HashMap clientConfig = new HashMap(clientLocator.getParameters()); + clientConfig.put(InvokerLocator.FORCE_REMOTE, "true"); + clientConfig.put(Client.ENABLE_LEASE, "true"); + clientConfig.put(ConnectionValidator.VALIDATOR_PING_PERIOD, Integer.toString(VALIDATOR_PING_PERIOD)); + clientConfig.put(ConnectionValidator.VALIDATOR_PING_TIMEOUT, Integer.toString(VALIDATOR_PING_TIMEOUT)); + clientConfig.put(ConnectionValidator.FAILURE_DISCONNECT_TIMEOUT, "0"); + addExtraClientConfig(clientConfig); + Client client1 = new Client(clientLocator, clientConfig); + TestConnectionListener clientConnectionListener1 = new TestConnectionListener(); + client1.connect(clientConnectionListener1, null); + log.info("client1 is connected"); + + // Create second client. + Client client2 = new Client(clientLocator, clientConfig); + TestConnectionListener clientConnectionListener2 = new TestConnectionListener(); + client2.connect(clientConnectionListener2, null); + log.info("client2 is connected"); + + // Test connection. + assertEquals("abc", client1.invoke("abc")); + log.info("connection 1 is good"); + assertEquals("abc", client2.invoke("abc")); + log.info("connection 2 is good"); + + // Verify that ConnectionValidator is still tied to Lease. + Thread.sleep(4000); + client1.removeConnectionListener(clientConnectionListener1); + client1.disconnect(); + Thread.sleep(4000); + log.info("clientConnectionListener2.connectionFailed: " + clientConnectionListener2.connectionFailed); + Assert.assertFalse(clientConnectionListener2.connectionFailed); + + client2.removeConnectionListener(clientConnectionListener1); + client2.disconnect(); + shutdownServer(); + log.info(getName() + " PASSES"); + } + + + public void testSerialClients() throws Throwable + { + log.info("entering " + getName()); + + // Start server. + setupServer(); + + // Create first client. + InvokerLocator clientLocator = new InvokerLocator(locatorURI); + HashMap clientConfig = new HashMap(clientLocator.getParameters()); + clientConfig.put(InvokerLocator.FORCE_REMOTE, "true"); + clientConfig.put(Client.ENABLE_LEASE, "true"); + clientConfig.put(ConnectionValidator.VALIDATOR_PING_PERIOD, Integer.toString(VALIDATOR_PING_PERIOD)); + clientConfig.put(ConnectionValidator.VALIDATOR_PING_TIMEOUT, Integer.toString(VALIDATOR_PING_TIMEOUT)); + clientConfig.put(ConnectionValidator.FAILURE_DISCONNECT_TIMEOUT, "0"); + addExtraClientConfig(clientConfig); + Client client1 = new Client(clientLocator, clientConfig); + TestConnectionListener clientConnectionListener1 = new TestConnectionListener(); + client1.connect(clientConnectionListener1, null); + log.info("client1 is connected"); + assertEquals("abc", client1.invoke("abc")); + log.info("connection 1 is good"); + + // Create second client. + Client client2 = new Client(clientLocator, clientConfig); + TestConnectionListener clientConnectionListener2 = new TestConnectionListener(); + client2.connect(clientConnectionListener2, null); + log.info("client2 is connected"); + assertEquals("abc", client2.invoke("abc")); + log.info("connection 2 is good"); + + // Disconnect first client. + Thread.sleep(4000); + client1.removeConnectionListener(clientConnectionListener1); + client1.disconnect(); + Thread.sleep(4000); + + // Verify that ConnectionValidator gets updated with client2 + log.info("clientConnectionListener2.connectionFailed: " + clientConnectionListener2.connectionFailed); + Assert.assertFalse(clientConnectionListener2.connectionFailed); + + client2.removeConnectionListener(clientConnectionListener1); + client2.disconnect(); + shutdownServer(); + log.info(getName() + " PASSES"); + } + + + protected String getTransport() + { + return "socket"; + } + + + protected void addExtraClientConfig(Map config) {} + protected void addExtraServerConfig(Map config) {} + + + protected void setupServer() throws Exception + { + locatorURI = getTransport() + "://" + host + ":" + port + "?" + Remoting.USE_SERVER_CONNECTION_IDENTITY + "=true"; + locatorURI += "&" + Remoting.USE_CLIENT_CONNECTION_IDENTITY + "=true"; + locatorURI += "&" + SocketServerInvoker.CHECK_CONNECTION_KEY + "=true"; + locatorURI += "&" + InvokerLocator.CLIENT_LEASE + "=true"; + locatorURI += "&" + InvokerLocator.CLIENT_LEASE_PERIOD + "=" + LEASE_PERIOD; + String metadata = System.getProperty("remoting.metadata"); + if (metadata != null) + { + locatorURI += "&" + metadata; + } + serverLocator = new InvokerLocator(locatorURI); + log.info("Starting remoting server with locator uri of: " + locatorURI); + HashMap config = new HashMap(); + config.put(InvokerLocator.FORCE_REMOTE, "true"); + addExtraServerConfig(config); + connector = new Connector(serverLocator, config); + connector.create(); + invocationHandler = new TestInvocationHandler(); + connector.addInvocationHandler("test", invocationHandler); + connector.addConnectionListener(new TestConnectionListener()); + connector.start(); + } + + + protected void shutdownServer() throws Exception + { + if (connector != null) + connector.stop(); + } + + + static class TestInvocationHandler implements ServerInvocationHandler + { + public void addListener(InvokerCallbackHandler callbackHandler) {} + public Object invoke(final InvocationRequest invocation) throws Throwable + { + return invocation.getParameter(); + } + public void removeListener(InvokerCallbackHandler callbackHandler) {} + public void setMBeanServer(MBeanServer server) {} + public void setInvoker(ServerInvoker invoker) {} + } + + + static class TestConnectionListener implements ConnectionListener + { + public boolean connectionFailed; + public Throwable throwable; + + public void handleConnectionException(Throwable throwable, Client client) + { + connectionFailed = true; + this.throwable = throwable; + log.info(this + " received connection notification: connectionFailed: " + connectionFailed); + } + } +} \ No newline at end of file Property changes on: remoting2/branches/2.5.4.SP3-01190444/src/tests/org/jboss/test/remoting/connection/identity/ConnectionValidatorReuseTestCase.java ___________________________________________________________________ Added: svn:mime-type + text/plain From jboss-remoting-commits at lists.jboss.org Thu Nov 20 00:19:37 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 20 Nov 2014 00:19:37 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6524 - remoting2/branches. Message-ID: <201411200519.sAK5Jbn0001396@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-20 00:19:37 -0500 (Thu, 20 Nov 2014) New Revision: 6524 Added: remoting2/branches/Remoting-2.5.4.SP4-01241076/ Log: Share project "Remoting-2.5.4.SP4-01241076" into "https://svn.jboss.org/repos/jbossremoting/remoting2/branches" From jboss-remoting-commits at lists.jboss.org Thu Nov 20 00:53:42 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 20 Nov 2014 00:53:42 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6526 - remoting2/branches/Remoting-2.5.4.SP4-01241076/docs/guide/en. Message-ID: <201411200553.sAK5rgqb003737@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-20 00:53:42 -0500 (Thu, 20 Nov 2014) New Revision: 6526 Modified: remoting2/branches/Remoting-2.5.4.SP4-01241076/docs/guide/en/chap5.xml Log: JBREM-1327: Updating Chapter 5 of guide with new parameter, "callbackStoreMaxSize". Modified: remoting2/branches/Remoting-2.5.4.SP4-01241076/docs/guide/en/chap5.xml =================================================================== --- remoting2/branches/Remoting-2.5.4.SP4-01241076/docs/guide/en/chap5.xml 2014-11-20 05:43:42 UTC (rev 6525) +++ remoting2/branches/Remoting-2.5.4.SP4-01241076/docs/guide/en/chap5.xml 2014-11-20 05:53:42 UTC (rev 6526) @@ -3829,6 +3829,12 @@ FILE_SUFFIX_KEY (actual value is "StoreFileSuffix"): indicates the file suffix to use for the callback objects written to disk. The default value is 'ser'. + + CALLBACK_STORE_MAX_SIZE (actual value is + "callbackStoreMaxSize"): indicates the number of Callbacks to be stored in + org.jboss.remoting.callback.BlockingCallbackStore before + adding a new Callback must wait for a Callback to be removed. + The default value is 10000. Sample service configuration Socket transport with callback store specified by class name and From jboss-remoting-commits at lists.jboss.org Thu Nov 20 01:04:00 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 20 Nov 2014 01:04:00 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6527 - remoting2/branches. Message-ID: <201411200604.sAK640Lq009995@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-20 01:03:59 -0500 (Thu, 20 Nov 2014) New Revision: 6527 Added: remoting2/branches/2.5.4.SP4-01241076/ Removed: remoting2/branches/Remoting-2.5.4.SP4-01241076/ Log: From jboss-remoting-commits at lists.jboss.org Thu Nov 20 01:08:06 2014 From: jboss-remoting-commits at lists.jboss.org (jboss-remoting-commits at lists.jboss.org) Date: Thu, 20 Nov 2014 01:08:06 -0500 Subject: [jboss-remoting-commits] JBoss Remoting SVN: r6528 - remoting2/branches/2.5.4.SP4-01241076. Message-ID: <201411200608.sAK6861V010065@svn01.web.mwc.hst.phx2.redhat.com> Author: ron.sigal at jboss.com Date: 2014-11-20 01:08:05 -0500 (Thu, 20 Nov 2014) New Revision: 6528 Removed: remoting2/branches/2.5.4.SP4-01241076/r0 Log: Deleted: remoting2/branches/2.5.4.SP4-01241076/r0 =================================================================== --- remoting2/branches/2.5.4.SP4-01241076/r0 2014-11-20 06:03:59 UTC (rev 6527) +++ remoting2/branches/2.5.4.SP4-01241076/r0 2014-11-20 06:08:05 UTC (rev 6528) @@ -1,1647 +0,0 @@ -Buildfile: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/build.xml - -get-jvm: - -setbindaddress.sub: - -setbindaddress.true: - -setbindaddress.false: - [echo] bind.address: 127.0.0.1 - -setbindaddress: - -setmulticastaddress.sub: - -setmulticastaddress.isset: - -setmulticastaddress.jdk14: - -setmulticastaddress.jdk15: - -setmulticastaddress.jdk16: - [echo] multicast.address: 228.15.2.5 - -setmulticastaddress: - -setmulticastport.sub: - -setmulticastport.isset: - -setmulticastport.jdk14: - -setmulticastport.jdk15: - -setmulticastport.jdk16: - [echo] multicast.port: 45568 - -setmulticastport: - -setReceiveOnAllInterfaces.sub: - -setReceiveOnAllInterfaces.isset.true: - -setReceiveOnAllInterfaces.isset.false: - [echo] receiveOnAllInterfaces: false - -setReceiveOnAllInterfaces: - -setSendOnAllInterfaces.sub: - -setSendOnAllInterfaces.isset.true: - -setSendOnAllInterfaces.isset.false: - [echo] sendOnAllInterfaces: false - -setSendOnAllInterfaces: - -setSendInterfaces.sub: - -setSendInterfaces.isset.true: - -setSendInterfaces.isset.false: - [echo] sendInterfaces: none - -setSendInterfaces: - -configure.jrunit: - -configure: - -clean: - [delete] Deleting directory /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output - -get-jvm: - -setbindaddress.sub: - -setbindaddress.true: - -setbindaddress.false: - [echo] bind.address: 127.0.0.1 - -setbindaddress: - -setmulticastaddress.sub: - -setmulticastaddress.isset: - -setmulticastaddress.jdk14: - -setmulticastaddress.jdk15: - -setmulticastaddress.jdk16: - [echo] multicast.address: 228.15.2.5 - -setmulticastaddress: - -setmulticastport.sub: - -setmulticastport.isset: - -setmulticastport.jdk14: - -setmulticastport.jdk15: - -setmulticastport.jdk16: - [echo] multicast.port: 45568 - -setmulticastport: - -setReceiveOnAllInterfaces.sub: - -setReceiveOnAllInterfaces.isset.true: - -setReceiveOnAllInterfaces.isset.false: - [echo] receiveOnAllInterfaces: false - -setReceiveOnAllInterfaces: - -setSendOnAllInterfaces.sub: - -setSendOnAllInterfaces.isset.true: - -setSendOnAllInterfaces.isset.false: - [echo] sendOnAllInterfaces: false - -setSendOnAllInterfaces: - -setSendInterfaces.sub: - -setSendInterfaces.isset.true: - -setSendInterfaces.isset.false: - [echo] sendInterfaces: none - -setSendInterfaces: - -configure.jrunit: - -configure: - -compile: - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/classes - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/build.xml:435: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds - [javac] Compiling 407 source files to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/classes - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/bisocket/BisocketSampleClient.java:34: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/bisocket/BisocketSampleServer.java:34: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/FactoryExample.java:35: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualServerSocketFactory in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualServerSocketFactory; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/FactoryExample.java:36: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocketFactory in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocketFactory; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/N_SocketScenarioClient.java:34: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/N_SocketScenarioServer.java:32: warning: [deprecation] org.jboss.remoting.transport.multiplex.MasterServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MasterServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/N_SocketScenarioServer.java:33: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/PrimeScenarioExampleClient.java:33: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/PrimeScenarioExampleClient.java:34: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/PrimeScenarioExampleServer.java:34: warning: [deprecation] org.jboss.remoting.transport.multiplex.MasterServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MasterServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/PrimeScenarioExampleServer.java:35: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/SymmetricScenarioClient.java:33: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/SymmetricScenarioClient.java:34: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/SymmetricScenarioServer.java:34: warning: [deprecation] org.jboss.remoting.transport.multiplex.MasterServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MasterServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/SymmetricScenarioServer.java:35: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/SymmetricScenarioServer.java:36: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/invoker/Client2Server1.java:43: warning: [deprecation] org.jboss.remoting.transport.multiplex.Multiplex in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.Multiplex; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/invoker/Client2Server2.java:43: warning: [deprecation] org.jboss.remoting.transport.multiplex.Multiplex in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.Multiplex; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/samples/multiplex/invoker/Client3Server1.java:43: warning: [deprecation] org.jboss.remoting.transport.multiplex.Multiplex in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.Multiplex; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:26: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.StoppableThread; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:118: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public class MultiGroupInputThread extends StoppableThread - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:26: warning: [deprecation] org.jboss.remoting.transport.multiplex.InputMultiplexor in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.InputMultiplexor.MultiGroupInputThread; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:26: warning: [deprecation] org.jboss.remoting.transport.multiplex.InputMultiplexor in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.InputMultiplexor.MultiGroupInputThread; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:27: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:28: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.StoppableThread; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:29: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.VirtualSelector; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:31: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.StoppableThread; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:112: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SingleGroupInputThread getaSingleGroupInputThread(MultiplexingManager manager, Socket socket, OutputStream os) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:493: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] class SingleGroupInputThread extends StoppableThread - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:155: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void registerSocketGroup(MultiplexingManager manager) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:203: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void unregisterSocketGroup(MultiplexingManager manager) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:347: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] class OutputThread extends StoppableThread - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:31: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.StoppableThread; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:32: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.VirtualSelector; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:387: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] static class BackChannelThread extends StoppableThread - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:2826: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.StoppableThread in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] protected static class PendingActionThread extends StoppableThread - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1104: warning: [deprecation] org.jboss.remoting.transport.multiplex.PendingAction in org.jboss.remoting.transport.multiplex has been deprecated - [javac] protected static void addToPendingActions(PendingAction pendingAction) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:33: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedInputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.GrowablePipedInputStream; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:34: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:35: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.utility.VirtualSelector; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1167: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingInputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public synchronized MultiplexingInputStream registerServerSocket(ServerSocket serverSocket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1209: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public synchronized MultiplexingInputStream registerSocket(VirtualSocket socket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1209: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingInputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public synchronized MultiplexingInputStream registerSocket(VirtualSocket socket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1233: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public synchronized void unRegisterSocket(VirtualSocket socket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1444: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingInputStream getAnInputStream(SocketId socketId, VirtualSocket socket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1444: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingInputStream getAnInputStream(SocketId socketId, VirtualSocket socket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1444: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingInputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingInputStream getAnInputStream(SocketId socketId, VirtualSocket socket) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1476: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public GrowablePipedOutputStream getAnOutputStream(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1476: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public GrowablePipedOutputStream getAnOutputStream(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1495: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingOutputStream getAnOutputStream(VirtualSocket socket, SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1495: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingOutputStream getAnOutputStream(VirtualSocket socket, SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1495: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingOutputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingOutputStream getAnOutputStream(VirtualSocket socket, SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1520: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public GrowablePipedOutputStream getConnectedOutputStream(SocketId socketId) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1520: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public GrowablePipedOutputStream getConnectedOutputStream(SocketId socketId) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1572: warning: [deprecation] org.jboss.remoting.transport.multiplex.OutputMultiplexor in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public OutputMultiplexor getOutputMultiplexor() - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1583: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public OutputStream getOutputStreamByLocalSocket(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1593: warning: [deprecation] org.jboss.remoting.transport.multiplex.Protocol in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public Protocol getProtocol() - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1623: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public VirtualSocket getSocketByLocalPort(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1623: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public VirtualSocket getSocketByLocalPort(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:1697: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public synchronized boolean isSocketRegistered(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingManager.java:2053: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] protected void removeAnInputStream(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:209: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void write(MultiplexingManager manager, SocketId socketId, byte[] content) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:209: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void write(MultiplexingManager manager, SocketId socketId, byte[] content) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:223: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void write(MultiplexingManager manager, SocketId socketId, byte[] content, int brackets) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:223: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void write(MultiplexingManager manager, SocketId socketId, byte[] content, int brackets) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:322: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] protected Message getaMessage(SocketId socketId, byte[] content, int brackets) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:498: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] private MultiplexingManager manager; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/InputMultiplexor.java:515: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SingleGroupInputThread(MultiplexingManager manager, Socket socket, OutputStream os) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/OutputMultiplexor.java:566: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] protected void encode(SocketId destination, byte[] bytes, int start, - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/utility/VirtualSelector.java:69: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedInputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public synchronized void register(GrowablePipedInputStream inputStream, Object attachment) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:92: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public static BackChannelThread getBackChannelThread(VirtualSelector virtualSelector) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:103: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public Protocol(MultiplexingManager manager) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:120: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingInputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId connect(MultiplexingInputStream is, SocketId socketId) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:120: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId connect(MultiplexingInputStream is, SocketId socketId) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:120: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId connect(MultiplexingInputStream is, SocketId socketId) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:133: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingInputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId connect(MultiplexingInputStream is, SocketId socketId, int timeout) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:133: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId connect(MultiplexingInputStream is, SocketId socketId, int timeout) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:133: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId connect(MultiplexingInputStream is, SocketId socketId, int timeout) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:202: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingInputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId acceptConnect(MultiplexingInputStream is, int timeout) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:202: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public SocketId acceptConnect(MultiplexingInputStream is, int timeout) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:254: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingOutputStream in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void answerConnect(MultiplexingOutputStream os, int port) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:267: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void notifyOutputShutdown(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:292: warning: [deprecation] org.jboss.remoting.transport.multiplex.SocketId in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public void disconnect(SocketId socketId) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:389: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] VirtualSelector virtualSelector; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:390: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] VirtualSocket socket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/Protocol.java:393: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public BackChannelThread(VirtualSelector virtualSelector) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:67: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public MultiplexingInputStream(GrowablePipedOutputStream sourceStream, MultiplexingManager manager) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:67: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] public MultiplexingInputStream(GrowablePipedOutputStream sourceStream, MultiplexingManager manager) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:80: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public MultiplexingInputStream(GrowablePipedOutputStream sourceStream, - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:81: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] MultiplexingManager manager, - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:82: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] VirtualSocket socket) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:96: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public MultiplexingInputStream(GrowablePipedOutputStream sourceStream, - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:97: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] MultiplexingManager manager, - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:98: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] VirtualSocket socket, - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:99: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] VirtualSelector virtualSelector) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:315: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] protected VirtualSocket getSocket() - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/MultiplexingInputStream.java:491: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] protected void setSocket(VirtualSocket socket) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/utility/GrowablePipedInputStream.java:82: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.VirtualSelector in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public GrowablePipedInputStream(VirtualSelector virtualSelector) - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/utility/GrowablePipedInputStream.java:94: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public GrowablePipedInputStream(GrowablePipedOutputStream source) throws IOException - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/main/org/jboss/remoting/transport/multiplex/utility/GrowablePipedInputStream.java:109: warning: [deprecation] org.jboss.remoting.transport.multiplex.utility.GrowablePipedOutputStream in org.jboss.remoting.transport.multiplex.utility has been deprecated - [javac] public GrowablePipedInputStream(GrowablePipedOutputStream source, VirtualSelector virtualSelector) throws IOException - [javac] ^ - [javac] Note: Some input files additionally use or override a deprecated API. - [javac] 100 warnings - [rmic] RMI Compiling 1 class to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/classes - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/etc - [copy] Copying 22 files to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/etc - -manifest: - -jars: - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib - [jar] Building jar: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/jboss-remoting.jar - [jar] Building jar: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/jboss-remoting-src.jar - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/servlet-invoker.war/WEB-INF - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/servlet-invoker.war/WEB-INF/classes - [copy] Copying 4 files to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/servlet-invoker.war/WEB-INF/classes - [copy] Copying 1 file to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/servlet-invoker.war/WEB-INF - -tests.compile: - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/classes - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/build.xml:526: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds - [javac] Compiling 1027 source files to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/classes - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/connectionfailure/CallbackConnectionFailureTestParent.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:11: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexClientInvoker in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MultiplexClientInvoker; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:12: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexServerInvoker in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MultiplexServerInvoker; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:13: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexingManager in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MultiplexingManager; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:14: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualServerSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualServerSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:15: warning: [deprecation] org.jboss.remoting.transport.multiplex.VirtualSocket in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.VirtualSocket; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:16: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexServerInvoker in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MultiplexServerInvoker.SocketGroupInfo; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/push/bidirectional/multiplex/MultiplexCallbackTestClient.java:16: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexServerInvoker in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MultiplexServerInvoker.SocketGroupInfo; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/sslsocketfactory/SSLSocketFactoryTestParent.java:41: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/callback/store/blocking/BlockingStoreDeadlockTestCase.java:17: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/classloader/parentfirst/ParentFirstClassloaderTestCase.java:39: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/classloader/race/ClassloaderRaceTestParent.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/connection/ConnectionValidatorRemoteClient.java:33: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/connection/ConnectionValidatorTiedToLeaseTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/connection/identity/ConnectionIdentityTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/connection/identity/LeaseIdentityTestCase.java:37: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/connection/identity/ServerIdentityTestCase.java:45: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/connection/params/ConnectionValidatorConfigurationTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/detection/jndi/Client.java:32: warning: [deprecation] org.jboss.remoting.transport.multiplex.Multiplex in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.Multiplex; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/detection/jndi/deadlock3/Client.java:14: warning: [deprecation] org.jboss.remoting.transport.multiplex.MultiplexInvokerConstants in org.jboss.remoting.transport.multiplex has been deprecated - [javac] import org.jboss.remoting.transport.multiplex.MultiplexInvokerConstants; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/detection/jndi/startup/JNDIDetectorTestCase.java:26: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/detection/metadata/MetadataTestCase.java:27: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/invoker/InvokerDestructionTest.java:16: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/InjectedConnectionListenerTestCase.java:19: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/LeaseUnitTestCase.java:26: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/http/HTTPLeaseTestServer.java:25: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/http/multiple/HTTPLeaseTestServer.java:4: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/socket/multiple/SocketLeaseTestCase.java:5: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/socket/multiple/SocketLeaseTestServer.java:4: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/lease/synchronization/MultipleClientSynchronizationTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/marshall/compress/CompressionStressTestParent.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/marshall/compress/WrappedHttpUnMarshallerTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/marshall/config/ConfigurationMapTestParent.java:35: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/InjectedClassloadersTestCase.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/multihome/MultihomeTestParent.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/oneway/OnewayThreadPoolTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/security/CallbackErrorHandlerProxyTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/security/CallbackStoreProxyTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/security/NetworkRegistryProxyTestCase.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/security/ServerInvokerHandlerProxyTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/security/ServerSocketFactoryProxyTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/soak/ClientLauncher.java:39: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/soak/ProducerConsumerSoakTestParent.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/soak/ServerLauncher.java:37: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/timeout/QuickDisconnectServerParent.java:34: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/BisocketControlConnectionReplacementTestCase.java:44: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/CallbackClientWithZeroTimeoutTestCase.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/accept/SecondaryAcceptThreadPriorityTestCase.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/configuration/BisocketCallbackSocketConfigurationTestCase.java:43: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/configuration/SocketServerSocketConfigurationTestCase.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/configuration/SocketSocketConfigurationTestCase.java:40: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/load/SocketLoadTestCase.java:30: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/socketpool/SocketClientPoolWithSemaphoreTestCase.java:42: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh/ServerSocketRefreshTestCase.java:49: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/ssl/serversocketrefresh/SSLBisocketTestCase_Retired.java:4: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/SocketDefaultTimeoutTestCase.java:41: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/WriteTimeoutTestParent.java:47: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/threadpool/ServerThreadReuseTestCase.java:42: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/bisocket/timertask/TimerTaskTestCase.java:44: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/config/POJOConfigurationTestCase.java:41: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/connector/ObjectNameWithZeroesAddressTestCase.java:43: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/NullInputStreamTestCase.java:43: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/chunked/ChunkedUnmarshallingTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/errors/NoThrowOnErrorTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/lines/HttpLinePreservationTestCase.java:37: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/proxy/ProxyAuthenticationTestCase.java:42: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/query/URLQueryTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/http/retry/ConnectionRetryTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/local/callback/LocalCallbackConnectorTestCase.java:39: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/rmi/RMIInvokerDecoratorTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/rmi/multihome/RMIMultihomeTestCase.java:29: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/servlet/MBeanServerSelectionTestParent.java:33: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/servlet/callback/CallbackTestClient.java:33: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/multihome/SocketMultihomeTestCase.java:29: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/accept/AcceptThreadPriorityTestCase.java:41: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/connection/ConnectionWaitTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/connectionpool/ConnectionPoolRetryTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/connectionpool/ConnectionPoolSingleConnectionTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/connectionpool/ConnectionPoolSingleRetryTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/idle/ThreadPoolStackTestCase.java:39: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/interrupt/InterruptedExceptionTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/oneway/OnewayConnectionManagerTestCase.java:38: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/oneway/OnewayInvocationTestCase.java:35: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/serverlockup/ServerLockupTestDriver.java:10: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/socketpool/SocketPoolTestCase.java:25: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh/TestCase_Retired.java:4: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/threadpool/ThreadPoolEvictionTestCase.java:18: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/CallbackTimeoutTestCase.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/ServerThreadReuseAfterTimeoutTestCase.java:39: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/oneway/AbstractTimeoutClientTest.java:26: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/oneway/AbstractTimeoutServerTest.java:25: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/oneway/java/TimeoutClientTest.java:25: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/oneway/java/TimeoutServerTest.java:25: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/oneway/jboss/TimeoutClientTest.java:25: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/transport/socket/timeout/oneway/jboss/TimeoutServerTest.java:28: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/version/ConfigurableVersionTestParent.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/versioning/identity/ServerIdentityVersionTestServer.java:39: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/versioning/identity/ServerIdentityWithLeasingVersionTestClient.java:35: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/versioning/identity/ServerIdentityWithoutLeasingVersionTestClient.java:35: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/src/tests/org/jboss/test/remoting/versioning/lease/LeaseVersionTestClient.java:36: warning: [deprecation] org.jboss.logging.XLevel in org.jboss.logging has been deprecated - [javac] import org.jboss.logging.XLevel; - [javac] ^ - [javac] Note: Some input files additionally use or override a deprecated API. - [javac] 100 warnings - [rmic] RMI Compiling 2 classes to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/classes - [copy] Copying 102 files to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/classes - [copy] Copied 21 empty directories to 1 empty directory under /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/classes - -tests.jars: - [jar] Building jar: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/jboss-remoting-tests.jar - [jar] Building jar: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/jboss-remoting-loading-tests.jar - [jar] Building jar: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/lib/jboss-remoting-invokerregistry-test.jar - -tests.functional.core: - -tests.functional.serialization.java.core: - -tests.functional.main.core: - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/results - [mkdir] Created dir: /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/tests/tmp - [echo] bisocket/rmi/socket: serializationtype=java - [junit] Running org.jboss.test.remoting.binding.BindingTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.211 sec - [junit] Running org.jboss.test.remoting.byvalue.ByValueInvocationTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.346 sec - [junit] Running org.jboss.test.remoting.callback.CallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.195 sec - [junit] Running org.jboss.test.remoting.callback.DestroyNPETestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.193 sec - [junit] Running org.jboss.test.remoting.callback.acknowledge.CallbackAcknowledgeTestCase - [junit] Tests run: 28, Failures: 0, Errors: 0, Time elapsed: 38.624 sec - [junit] Running org.jboss.test.remoting.callback.asynch.BisocketAsynchCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 29.369 sec - [junit] Running org.jboss.test.remoting.callback.asynch.SSLBisocketAsynchCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 29.321 sec - [junit] Running org.jboss.test.remoting.callback.asynch.SSLSocketAsynchCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 30.124 sec - [junit] Running org.jboss.test.remoting.callback.asynch.SocketAsynchCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 30.123 sec - [junit] Running org.jboss.test.remoting.callback.configuration.CallbackServerConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.195 sec - [junit] Running org.jboss.test.remoting.callback.exception.CallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 62.192 sec - [junit] Running org.jboss.test.remoting.callback.leak.ServerInvokerCallbackHandlerLeakTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 20.184 sec - [junit] Running org.jboss.test.remoting.callback.listeners.ListenerRemovedTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.218 sec - [junit] Running org.jboss.test.remoting.callback.listeners.MultipleListenersTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.221 sec - [junit] Running org.jboss.test.remoting.callback.multiple.CallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 42.321 sec - [junit] Running org.jboss.test.remoting.callback.multiple.client.CallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 13.269 sec - [junit] Running org.jboss.test.remoting.callback.multiple.server.CallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 14.392 sec - [junit] Running org.jboss.test.remoting.callback.params.UseAllParamsTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 15.285 sec - [junit] Running org.jboss.test.remoting.callback.pull.CallbackPollerShutdownTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 14.226 sec - [junit] Running org.jboss.test.remoting.callback.pull.UniqueCallbackPollerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.177 sec - [junit] Running org.jboss.test.remoting.callback.pull.blocking.BlockingPullCallbackTestCase - [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 97.296 sec - [junit] Running org.jboss.test.remoting.callback.pull.memory.blocking.BlockingCallbackStoreSynchronizationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.369 sec - [junit] Running org.jboss.test.remoting.callback.push.ImplicitCallbackConnectorTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.304 sec - [junit] Running org.jboss.test.remoting.callback.push.InVMPushCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.214 sec - [junit] Running org.jboss.test.remoting.callback.push.MultipleCallbackServersTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.114 sec - [junit] Running org.jboss.test.remoting.callback.push.bidirectional.local.LocalCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.272 sec - [junit] Running org.jboss.test.remoting.callback.push.disconnect.CallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 20.251 sec - [junit] Running org.jboss.test.remoting.callback.push.unidirectional.socket.SocketCallbackPollTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.072 sec - [junit] Running org.jboss.test.remoting.callback.push.unidirectional.socket.SocketCallbackPushTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.248 sec - [junit] Running org.jboss.test.remoting.callback.sslsocketfactory.SSLSocketSSLSocketFactoryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.644 sec - [junit] Running org.jboss.test.remoting.callback.store.blocking.BlockingCallbackStoreTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 21.155 sec - [junit] Running org.jboss.test.remoting.callback.store.blocking.BlockingStoreDeadlockTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 3.658 sec - [junit] Running org.jboss.test.remoting.callback.timeout.BisocketCallbackTimeoutTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.388 sec - [junit] Running org.jboss.test.remoting.callback.timeout.SocketCallbackTimeoutTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.33 sec - [junit] Running org.jboss.test.remoting.classloader.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.227 sec - [junit] Running org.jboss.test.remoting.classloader.RemoteClassloaderTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.237 sec - [junit] Running org.jboss.test.remoting.classloader.arrays.ArrayClassloadingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.197 sec - [junit] Running org.jboss.test.remoting.classloader.parentfirst.ParentFirstClassloaderTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.185 sec - [junit] Running org.jboss.test.remoting.classloader.race.bisocket.BisocketClassloaderRaceTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.306 sec - [junit] Running org.jboss.test.remoting.classloader.race.socket.SocketClassloaderRaceTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 3.818 sec - [junit] Running org.jboss.test.remoting.client.ClientSerializationTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.344 sec - [junit] Running org.jboss.test.remoting.concurrent.local.ConcurrentTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 20.314 sec - [junit] Running org.jboss.test.remoting.concurrent.remote.ConcurrentTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 29.055 sec - [junit] Running org.jboss.test.remoting.configuration.ConfigOverridesLocatorTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.208 sec - [junit] Running org.jboss.test.remoting.configuration.CustomSocketConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.181 sec - [junit] Running org.jboss.test.remoting.configuration.LocatorURITestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.171 sec - [junit] Running org.jboss.test.remoting.configuration.MiscellaneousParametersTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.118 sec - [junit] Running org.jboss.test.remoting.configuration.SocketClientConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.262 sec - [junit] Running org.jboss.test.remoting.configuration.client.local.ClientCountTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.201 sec - [junit] Running org.jboss.test.remoting.configuration.client.remote.ClientCountTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.075 sec - [junit] Running org.jboss.test.remoting.configuration.client.remote.ClientPingCountTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.035 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 37.106 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidatorCachedInvokerTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 3.185 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidatorConfigTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.142 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidatorDisconnectTimeoutTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 58.298 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidatorNPETestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.513 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidatorTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.146 sec - [junit] Running org.jboss.test.remoting.connection.ConnectionValidatorTiedToLeaseTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 108.273 sec - [junit] Running org.jboss.test.remoting.connection.deadlock.DeadlockTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 79.099 sec - [junit] Running org.jboss.test.remoting.connection.identity.ConnectionIdentityTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 40.256 sec - [junit] Running org.jboss.test.remoting.connection.identity.LeaseIdentityTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 24.226 sec - [junit] Running org.jboss.test.remoting.connection.identity.ServerIdentityTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 85.345 sec - [junit] Running org.jboss.test.remoting.connection.local.LocalConnectionValidationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 15.191 sec - [junit] Running org.jboss.test.remoting.connection.local.LocalServerDisconnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.204 sec - [junit] Running org.jboss.test.remoting.connection.params.ConnectionValidatorConfigurationTestCase - [junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 0.258 sec - [junit] Running org.jboss.test.remoting.datatype.DataTypeRaceTestCase - [junit] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 805.542 sec - [junit] Running org.jboss.test.remoting.deploy.DualDeploymentTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.279 sec - [junit] Running org.jboss.test.remoting.detection.jndi.CleanDetectionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 13.076 sec - [junit] Running org.jboss.test.remoting.detection.jndi.JNDIDetectorTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 72.434 sec - [junit] Running org.jboss.test.remoting.detection.jndi.RestartTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 20.173 sec - [junit] Running org.jboss.test.remoting.detection.jndi.ssl.SSLRestartTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 15.315 sec - [junit] Running org.jboss.test.remoting.detection.jndi.startup.JNDIDetectorTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.403 sec - [junit] Running org.jboss.test.remoting.detection.metadata.MetadataTestCase - [junit] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 2.277 sec - [junit] Running org.jboss.test.remoting.detection.multicast.MulticastDetectorTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.166 sec - [junit] Running org.jboss.test.remoting.detection.multicast.deadlock.DeadlockTestCase - [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 2.519 sec - [junit] Running org.jboss.test.remoting.detection.multicast.startup.MulticastDetectorTestCase - [junit] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 7.096 sec - [junit] Running org.jboss.test.remoting.detection.registry.NetworkRegistryTestCase - [junit] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 8.172 sec - [junit] Running org.jboss.test.remoting.exception.cannotconnect.socket.CannotConnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.095 sec - [junit] Running org.jboss.test.remoting.exception.server.ServerExceptionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.105 sec - [junit] Running org.jboss.test.remoting.handler.mbean.MBeanHandlerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.213 sec - [junit] Running org.jboss.test.remoting.invocation.internal.EchoInternalInvocationTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.191 sec - [junit] Running org.jboss.test.remoting.invoker.ClientInvokerDelayedDestructionTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 50.333 sec - [junit] Running org.jboss.test.remoting.invoker.ClientInvokerDisconnectTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.133 sec - [junit] Running org.jboss.test.remoting.invoker.DisconnectInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.819 sec - [junit] Running org.jboss.test.remoting.invoker.LocalInvokerTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.119 sec - [junit] Running org.jboss.test.remoting.ipv6.IPv6HostWithNoBracketsTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.166 sec - [junit] Running org.jboss.test.remoting.ipv6.IPv6InvokerLocatorTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.038 sec - [junit] Running org.jboss.test.remoting.ipv6.IPv6TestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 2.211 sec - [junit] Running org.jboss.test.remoting.ipv6.ObjectNameWithIPv6AddressTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.193 sec - [junit] Running org.jboss.test.remoting.ipv6.PercentEncodingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.034 sec - [junit] Running org.jboss.test.remoting.lease.InjectedConnectionListenerTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.238 sec - [junit] Running org.jboss.test.remoting.lease.LeaseCreationFailureTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.222 sec - [junit] Running org.jboss.test.remoting.lease.LeaseCreationTimeoutTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 60.568 sec - [junit] Running org.jboss.test.remoting.lease.LeaseUnitTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 137.148 sec - [junit] Running org.jboss.test.remoting.lease.UniquePingerTaskTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.204 sec - [junit] Running org.jboss.test.remoting.lease.local.LocalLeaseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 25.234 sec - [junit] Running org.jboss.test.remoting.lease.socket.ClientLeasePeriodTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.308 sec - [junit] Running org.jboss.test.remoting.lease.socket.SocketLeaseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 33.076 sec - [junit] Running org.jboss.test.remoting.lease.socket.multiple.SocketLeaseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 44.159 sec - [junit] Running org.jboss.test.remoting.lease.synchronization.MultipleClientSynchronizationTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 48.629 sec - [junit] Running org.jboss.test.remoting.lease.timeout.LeasePingerTimeoutTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 30.216 sec - [junit] Running org.jboss.test.remoting.lease.timer.TimerUtilTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 42.13 sec - [junit] Running org.jboss.test.remoting.lifecycle.ConnectorStartStopTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.204 sec - [junit] Running org.jboss.test.remoting.lifecycle.InvokerLifecycleTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.221 sec - [junit] Running org.jboss.test.remoting.locator.ExtraneousEqualsTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.034 sec - [junit] Running org.jboss.test.remoting.locator.InvokerLocatorTestCase - [junit] Tests run: 11, Failures: 0, Errors: 0, Time elapsed: 0.038 sec - [junit] Running org.jboss.test.remoting.locator.MalformedLocatorTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.158 sec - [junit] Running org.jboss.test.remoting.marshall.compress.CompressingMarshallerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.209 sec - [junit] Running org.jboss.test.remoting.marshall.compress.NewCompressingMarshallerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 10.434 sec - [junit] Running org.jboss.test.remoting.marshall.compress.SocketCompressionStressTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.664 sec - [junit] Running org.jboss.test.remoting.marshall.config.BisocketConfigurationMapTestCase - [junit] Tests run: 12, Failures: 0, Errors: 0, Time elapsed: 0.784 sec - [junit] Running org.jboss.test.remoting.marshall.config.SocketConfigurationMapTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.418 sec - [junit] Running org.jboss.test.remoting.marshall.dynamic.local.MarshallerLoadingTestCase - [junit] 231 [UpHandler (STATE_TRANSFER)] ERROR org.jboss.jrunit.harness.ServerTestHarness - Got abort message. Killing process. - [junit] 2014-11-19 21:44:58,454 ERROR @UpHandler (STATE_TRANSFER) [ServerTestHarness] Got abort message. Killing process. - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.11 sec - [junit] Running org.jboss.test.remoting.marshall.preferredstream.BisocketPreferredStreamMarshallerTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.366 sec - [junit] Running org.jboss.test.remoting.marshall.preferredstream.SocketPreferredStreamMarshallerTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.345 sec - [junit] Running org.jboss.test.remoting.marshall.serializable.SerializableMarshallingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.155 sec - [junit] Running org.jboss.test.remoting.multihome.XmlMultihomeConfigTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.115 sec - [junit] Running org.jboss.test.remoting.oneway.OnewayInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 13.156 sec - [junit] Running org.jboss.test.remoting.oneway.OnewayThreadPoolTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 82.398 sec - [junit] Running org.jboss.test.remoting.registry.InvokerRegistryRaceTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.823 sec - [junit] Running org.jboss.test.remoting.registry.InvokerRegistryTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.211 sec - [junit] Running org.jboss.test.remoting.registry.InvokerRegistryUpdateTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.204 sec - [junit] Running org.jboss.test.remoting.regression.jbrem418.ObjectInputStreamWithClassLoaderTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.131 sec - [junit] Running org.jboss.test.remoting.security.CallbackErrorHandlerProxyTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.242 sec - [junit] Running org.jboss.test.remoting.security.CallbackStoreProxyTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.233 sec - [junit] Running org.jboss.test.remoting.security.NetworkRegistryProxyTestCase - [junit] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 2.166 sec - [junit] Running org.jboss.test.remoting.security.ServerInvokerHandlerProxyTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.2 sec - [junit] Running org.jboss.test.remoting.security.ServerSocketFactoryProxyTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.623 sec - [junit] Running org.jboss.test.remoting.serialization.invocations.java.JavaSerializationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.347 sec - [junit] Running org.jboss.test.remoting.serialization.java.JavaSerializationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 6.947 sec - [junit] Running org.jboss.test.remoting.shutdown.local.LocalShutdownTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.016 sec - [junit] Running org.jboss.test.remoting.socketfactory.ConfigurationMapChangeTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.193 sec - [junit] Running org.jboss.test.remoting.socketfactory.UseAllSocketFactoryParamsTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.203 sec - [junit] Running org.jboss.test.remoting.ssl.SSLSocketBuilderTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.237 sec - [junit] Running org.jboss.test.remoting.ssl.SSLSupportedTransportTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.145 sec - [junit] Running org.jboss.test.remoting.ssl.emptystore.EmptyStoreTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.278 sec - [junit] Running org.jboss.test.remoting.stream.Streaming2TestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.252 sec - [junit] Running org.jboss.test.remoting.stream.StreamingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.328 sec - [junit] Running org.jboss.test.remoting.stream.local.LocalStreamTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.135 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.BisocketControlConnectionReplacementTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 32.393 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.BisocketImmediateShutdownTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 40.214 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.BisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.324 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.BisocketTestCase - [junit] Tests run: 24, Failures: 0, Errors: 0, Time elapsed: 105.565 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.CallbackClientWithZeroTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.227 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.CallbackDisconnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.232 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.CloseControlSocketTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.268 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.SecondaryServerSocketTestCase - [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.233 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.SeparateControlSocketsTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.233 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ServerTimerReuseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.233 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.TimerReuseTestCase - [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 80.448 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.accept.SecondaryAcceptThreadPriorityTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.263 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.clientaddress.BisocketClientAddressTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 10.26 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.configuration.BisocketCallbackSocketConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.351 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.configuration.BisocketSocketConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.191 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.configuration.ConfigureByInvokerLocatorTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.183 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.configuration.FactoryConfigTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 2.876 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.connection.BisocketConnectionCheckTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 7.94 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.connection.BisocketConnectionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.545 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.connection.retry.BisocketRetryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.056 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.connectionfailure.BisocketCallbackConnectionFailureTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 116.352 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.connectionpool.BisocketConnectionPoolSizeTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.198 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.deadlock.BisocketShutdownDeadlockTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 10.262 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.dos.DosTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 12.316 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.listenerID.ListenerIDonStackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.227 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.load.BisocketPooledConnectionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 128.121 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.load.BisocketSocketLoadTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 120.13 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.multihome.BisocketMultihomeTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 48.476 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.restart.BisocketServerRestartTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.191 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.shutdown.BisocketShutdownTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 142.374 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.socketexception.BisocketSocketCreationExceptionTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 10.26 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.socketfactory.BisocketCreationListenerTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 8.862 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.socketfactory.SocketFactoryClassNameTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.205 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.socketpool.BisocketClientPoolWithSemaphoreTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 52.095 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.socketpool.BisocketPoolTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.589 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.SSLBisocketControlConnectionReplacementTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 33.602 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.basic.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.814 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.builder.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 31.867 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.clientaddress.SSLBisocketClientAddressTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 11.04 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.config.FactoryConfigTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 8.354 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.config.SSLBisocketSocketConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.68 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.connection_check.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 7.793 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.custom.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.153 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.handshake.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 8.24 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.multihome.SSLBisocketMultihomeTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 111.106 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.no_connection_check.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.839 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.restart.SSLBisocketServerRestartTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.791 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.serversocketrefresh.BisocketServerSocketRefreshTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 10.558 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.shutdown.SSLBisocketShutdownTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 143.912 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.socketfactory.SSLBisocketCreationListenerTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 9.864 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.socketfactory.SSLSocketFactoryClassNameTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.964 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.timeout.SSLBisocketDefaultTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.233 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.timeout.SSLBisocketPerInvocationTimeoutTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 25.994 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.timeout.SSLBisocketWriteTimeoutTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 58.232 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.threadpool.ServerThreadReuseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.236 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.BisocketDefaultTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.147 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.BisocketPerInvocationTimeoutTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 25.268 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.BisocketQuickDisconnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 97.325 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.BisocketTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 53.147 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.BisocketWriteTimeoutTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 57.265 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.idle.BisocketIdleTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 67.209 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timeout.idle.BisocketInactiveIdleTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 66.994 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.timertask.TimerTaskTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.274 sec - [junit] Running org.jboss.test.remoting.transport.config.POJOConfigurationTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 6.088 sec - [junit] Running org.jboss.test.remoting.transport.connector.ObjectNameWithZeroesAddressTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.127 sec - [junit] Running org.jboss.test.remoting.transport.connector.UnregisterServerInvokerObjectNameTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.124 sec - [junit] Running org.jboss.test.remoting.transport.coyote.SetAttributeTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.143 sec - [junit] Running org.jboss.test.remoting.transport.local.LocalInvocationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.212 sec - [junit] Running org.jboss.test.remoting.transport.local.LocalInvokerGeneralTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 25.155 sec - [junit] Running org.jboss.test.remoting.transport.local.LocalInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.108 sec - [junit] Running org.jboss.test.remoting.transport.local.transport.LocalInvokerTransportTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.078 sec - [junit] Running org.jboss.test.remoting.transport.socket.ErrorTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.193 sec - [junit] Running org.jboss.test.remoting.transport.socket.SocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.237 sec - [junit] Running org.jboss.test.remoting.transport.socket.accept.AcceptThreadPriorityTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.242 sec - [junit] Running org.jboss.test.remoting.transport.socket.clientaddress.SocketClientAddressTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 10.229 sec - [junit] Running org.jboss.test.remoting.transport.socket.configuration.FactoryConfigTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 2.822 sec - [junit] Running org.jboss.test.remoting.transport.socket.configuration.SocketRetryConfigTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.238 sec - [junit] Running org.jboss.test.remoting.transport.socket.configuration.SocketSocketConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.171 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.ConnectionWaitTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.176 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.SocketConnectionCheckTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 11.804 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.SocketConnectionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.509 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.retry.SocketRetryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 21.973 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.socketfactory.by_classname.SocketFactoryByClassnameTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.092 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.socketfactory.by_instance.SocketFactoryByInstanceTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.086 sec - [junit] Running org.jboss.test.remoting.transport.socket.connection.socketfactory.by_mbean.SocketFactoryByMBeanTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.091 sec - [junit] Running org.jboss.test.remoting.transport.socket.connectionfailure.SocketCallbackConnectionFailureTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 116.304 sec - [junit] Running org.jboss.test.remoting.transport.socket.connectionpool.ConnectionPoolRetryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 33.899 sec - [junit] Running org.jboss.test.remoting.transport.socket.connectionpool.ConnectionPoolSingleConnectionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.904 sec - [junit] Running org.jboss.test.remoting.transport.socket.connectionpool.ConnectionPoolSingleRetryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.914 sec - [junit] Running org.jboss.test.remoting.transport.socket.connectionpool.ConnectionPoolSizeTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.18 sec - [junit] Running org.jboss.test.remoting.transport.socket.connectionpools.ClearConnectionPoolsTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.171 sec - [junit] Running org.jboss.test.remoting.transport.socket.deadlock.ShutdownDeadlockTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 10.251 sec - [junit] Running org.jboss.test.remoting.transport.socket.idle.ThreadPoolStackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 24.751 sec - [junit] Running org.jboss.test.remoting.transport.socket.interrupt.InterruptedExceptionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 20.174 sec - [junit] Running org.jboss.test.remoting.transport.socket.interrupt.MockInvokerInterruptTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.314 sec - [junit] Running org.jboss.test.remoting.transport.socket.load.PooledConnectionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 128.107 sec - [junit] Running org.jboss.test.remoting.transport.socket.load.SocketLoadTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 120.112 sec - [junit] Running org.jboss.test.remoting.transport.socket.localaddress.LocalAddressTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.173 sec - [junit] Running org.jboss.test.remoting.transport.socket.multihome.SocketMultihomeTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 61.414 sec - [junit] Running org.jboss.test.remoting.transport.socket.oneway.OnewayConnectionManagerTestCase - [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 74.228 sec - [junit] Running org.jboss.test.remoting.transport.socket.oneway.OnewayInvocationTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.213 sec - [junit] Running org.jboss.test.remoting.transport.socket.raw.RawTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.121 sec - [junit] 0 [UpHandler (STATE_TRANSFER)] ERROR org.jboss.jrunit.harness.ServerTestHarness - Got abort message. Killing process. - [junit] 0 [UpHandler (STATE_TRANSFER)] ERROR org.jboss.jrunit.harness.ServerTestHarness - Got abort message. Killing process. - [junit] 2014-11-19 22:32:24,382 ERROR @UpHandler (STATE_TRANSFER) [ServerTestHarness] Got abort message. Killing process. - [junit] 2014-11-19 22:32:24,382 ERROR @UpHandler (STATE_TRANSFER) [ServerTestHarness] Got abort message. Killing process. - [junit] Running org.jboss.test.remoting.transport.socket.restart.SocketServerRestartTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.173 sec - [junit] Running org.jboss.test.remoting.transport.socket.retriable.SocketGeneralizedExceptionTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.216 sec - [junit] Running org.jboss.test.remoting.transport.socket.shutdown.ProcessInvocationShutdownTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 8.145 sec - [junit] Running org.jboss.test.remoting.transport.socket.shutdown.SocketImmediateShutdownTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 40.228 sec - [junit] Running org.jboss.test.remoting.transport.socket.shutdown.SocketShutdownTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 142.209 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketexception.GeneralizeSocketExceptionTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.239 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketexception.SocketCreationExceptionTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.232 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketfactory.SocketCreationListenerTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 8.758 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketfactory.SocketFactoryClassNameTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.187 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketpool.ConnectionPoolClearanceTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.173 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketpool.SocketClientPoolWithSemaphoreTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 52.111 sec - [junit] Running org.jboss.test.remoting.transport.socket.socketpool.SocketPoolTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.587 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.basic.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.931 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.basic.system.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.723 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.builder.SSLSocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.928 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.clientaddress.SSLSocketClientAddressTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 10.903 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.config.FactoryConfigTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 7.259 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.config.SSLSocketSocketConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.658 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.connection_check.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.882 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.custom.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.998 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.handshake.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 8.226 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.multihome.SSLSocketMultihomeTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 63.938 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.no_connection_check.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.771 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.restart.SSLSocketServerRestartTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.76 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.serversocketrefresh.ServerSocketRefreshTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 10.561 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.shutdown.SSLSocketShutdownTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 143.966 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.socketfactory.SSLSocketCreationListenerTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 9.687 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.socketfactory.SSLSocketFactoryClassNameTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.947 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.timeout.SSLSocketDefaultTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.228 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.timeout.SSLSocketPerInvocationTimeoutTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 26.019 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.timeout.SSLSocketWriteTimeoutTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 52.974 sec - [junit] Running org.jboss.test.remoting.transport.socket.threadpool.ThreadPoolEvictionTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 70.187 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.CallbackTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 69.207 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.SemaphoreGrowthTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 14.18 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.ServerThreadReuseAfterTimeoutTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 32.267 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.SocketDefaultTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.145 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.SocketPerInvocationTimeoutTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 25.202 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.SocketQuickDisconnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 139.347 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.SocketWriteTimeoutTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 52.243 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.TimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 55.16 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.idle.IdleTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 68.045 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.idle.InactiveIdleTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 66.985 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.idle.SafeIdleTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 10.173 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.oneway.java.TimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 20.11 sec - [junit] Running org.jboss.test.remoting.transport.socket.timeout.oneway.jboss.TimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 20.168 sec - [junit] Running org.jboss.test.remoting.transporter.TransporterTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.1 sec - [junit] Running org.jboss.test.remoting.transporter.multiInterface.TransporterTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.085 sec - [junit] Running org.jboss.test.remoting.transporter.proxy.TransporterProxyTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.148 sec - [junit] Running org.jboss.test.remoting.transporter.proxy.local.TransporterProxyLocalTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.262 sec - [junit] Running org.jboss.test.remoting.util.PortUtilRangeOnClientTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.044 sec - [junit] Running org.jboss.test.remoting.util.PortUtilRangeOnServerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.113 sec - [junit] Running org.jboss.test.remoting.util.PortUtilRangeOnServerWithServerConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.13 sec - [junit] Running org.jboss.test.remoting.util.PortUtilRangeOnServerWithXMLTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.124 sec - [junit] Running org.jboss.test.remoting.util.PortUtilTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 3.563 sec - [junit] Running org.jboss.test.remoting.util.TimerUtilTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 133.025 sec - [junit] Running org.jboss.test.remoting.version.BisocketConfigurableVersionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.194 sec - [junit] Running org.jboss.test.remoting.version.SocketConfigurableVersionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.204 sec - -tests.functional.main.security: - [echo] bisocket/rmi/socket (strict security): serializationtype=java - [junit] Running org.jboss.test.remoting.transport.bisocket.BisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.316 sec - [junit] Running org.jboss.test.remoting.transport.bisocket.ssl.custom.SSLBisocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 7.099 sec - [junit] Running org.jboss.test.remoting.transport.rmi.RMIInvokerSerializableMarshallerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 19.508 sec - [junit] Running org.jboss.test.remoting.transport.rmi.ssl.custom.RMIInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 7.918 sec - [junit] Running org.jboss.test.remoting.transport.socket.SocketInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.606 sec - [junit] Running org.jboss.test.remoting.transport.socket.ssl.custom.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.987 sec - -get-jvm: - -setbindaddress.sub: - -setbindaddress.true: - -setbindaddress.false: - [echo] bind.address: 127.0.0.1 - -setbindaddress: - -setmulticastaddress.sub: - -setmulticastaddress.isset: - -setmulticastaddress.jdk14: - -setmulticastaddress.jdk15: - -setmulticastaddress.jdk16: - [echo] multicast.address: 228.15.2.5 - -setmulticastaddress: - -setmulticastport.sub: - -setmulticastport.isset: - -setmulticastport.jdk14: - -setmulticastport.jdk15: - -setmulticastport.jdk16: - [echo] multicast.port: 45568 - -setmulticastport: - -setReceiveOnAllInterfaces.sub: - -setReceiveOnAllInterfaces.isset.true: - -setReceiveOnAllInterfaces.isset.false: - [echo] receiveOnAllInterfaces: false - -setReceiveOnAllInterfaces: - -setSendOnAllInterfaces.sub: - -setSendOnAllInterfaces.isset.true: - -setSendOnAllInterfaces.isset.false: - [echo] sendOnAllInterfaces: false - -setSendOnAllInterfaces: - -setSendInterfaces.sub: - -setSendInterfaces.isset.true: - -setSendInterfaces.isset.false: - [echo] sendInterfaces: none - -setSendInterfaces: - -configure.jrunit: - -configure: - -compile: - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/build.xml:435: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds - [javac] Compiling 1 source file to /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/output/classes - -manifest: - -jars: - -tests.compile: - [javac] /home/rsigal/workspace/Remoting-2.5.4.SP4-01241076/build.xml:526: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds - -tests.jars: - -tests.functional.invokerregistry.security: - [junit] Running org.jboss.test.remoting.security.InvokerRegistrySecurityTestCase - [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.135 sec - -tests.marshall: - [echo] remote marshalling tests: serializationtype=java - [junit] Running org.jboss.test.remoting.marshall.dynamic.remote.classloaders.InjectedClassloadersTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.212 sec - [junit] Running org.jboss.test.remoting.marshall.dynamic.remote.http.HTTPMarshallerLoadingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.121 sec - [junit] Running org.jboss.test.remoting.marshall.dynamic.remote.socket.SocketMarshallerLoadingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.11 sec - -tests.functional.serialization.java.http.core: - -tests.functional.http.jbossweb.core: - -tests.functional.main.http.core: - [echo] http with jbossweb: serializationtype=java - [junit] Running org.jboss.test.remoting.callback.asynch.HTTPAsynchCallbackTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 29.352 sec - [junit] Running org.jboss.test.remoting.callback.push.unidirectional.http.HTTPCallbackPollTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 9.2 sec - [junit] Running org.jboss.test.remoting.callback.push.unidirectional.http.HTTPCallbackPushTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.456 sec - [junit] Running org.jboss.test.remoting.callback.sslsocketfactory.HttpsSSLSocketFactoryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.634 sec - [junit] Running org.jboss.test.remoting.callback.timeout.HttpCallbackTimeoutTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.438 sec - [junit] Running org.jboss.test.remoting.classloader.race.http.HttpClassloaderRaceTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 2.447 sec - [junit] Running org.jboss.test.remoting.configuration.HTTPConfigurationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.323 sec - [junit] Running org.jboss.test.remoting.exception.cannotconnect.http.CannotConnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.081 sec - [junit] Running org.jboss.test.remoting.lease.http.HTTPLeaseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 32.991 sec - [junit] Running org.jboss.test.remoting.lease.http.multiple.HTTPLeaseTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 39.988 sec - [junit] Running org.jboss.test.remoting.marshall.compress.HttpCompressionStressTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.796 sec - [junit] Running org.jboss.test.remoting.marshall.compress.WrappedHttpUnMarshallerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.226 sec - [junit] Running org.jboss.test.remoting.marshall.config.HttpConfigurationMapTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.474 sec - [junit] Running org.jboss.test.remoting.transport.http.EmptyURITestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.208 sec - [junit] Running org.jboss.test.remoting.transport.http.HTTPInvokerSecurityTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.368 sec - [junit] Running org.jboss.test.remoting.transport.http.HTTPInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.461 sec - [junit] Running org.jboss.test.remoting.transport.http.IgnoreResponseMessageTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.134 sec - [junit] Running org.jboss.test.remoting.transport.http.NullInputStreamTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.121 sec - [junit] Running org.jboss.test.remoting.transport.http.authorization.BASICAuthorizationTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.227 sec - [junit] Running org.jboss.test.remoting.transport.http.clientaddress.HttpClientAddressTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 10.29 sec - [junit] Running org.jboss.test.remoting.transport.http.config.FactoryConfigTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 2.845 sec - [junit] Running org.jboss.test.remoting.transport.http.connection.socketfactory.by_classname.SocketFactoryByClassnameTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 6.096 sec - [junit] Running org.jboss.test.remoting.transport.http.connection.socketfactory.by_instance.SocketFactoryByInstanceTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.089 sec - [junit] Running org.jboss.test.remoting.transport.http.connection.socketfactory.by_mbean.SocketFactoryByMBeanTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.663 sec - [junit] Running org.jboss.test.remoting.transport.http.connectionfailure.HttpCallbackConnectionFailureTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 116.426 sec - [junit] Running org.jboss.test.remoting.transport.http.contenttype.ContentTypeTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.22 sec - [junit] Running org.jboss.test.remoting.transport.http.errors.ErrorHTTPInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.133 sec - [junit] Running org.jboss.test.remoting.transport.http.errors.NoThrowOnErrorTestCase - [junit] Tests run: 8, Failures: 0, Errors: 0, Time elapsed: 0.327 sec - [junit] Running org.jboss.test.remoting.transport.http.headers.ResponseCodeTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.214 sec - [junit] Running org.jboss.test.remoting.transport.http.keep_alive.NoKeepAliveHTTPInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.481 sec - [junit] Running org.jboss.test.remoting.transport.http.keep_alive.StressHTTPInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 233.418 sec - [junit] Running org.jboss.test.remoting.transport.http.lines.HttpLinePreservationTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.267 sec - [junit] Running org.jboss.test.remoting.transport.http.marshal.ContentTypePrefixTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.269 sec - [junit] Running org.jboss.test.remoting.transport.http.marshal.HttpContentTypeTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.349 sec - [junit] Running org.jboss.test.remoting.transport.http.method.HTTPMethodInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.201 sec - [junit] Running org.jboss.test.remoting.transport.http.multihome.HttpMultihomeTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 49.41 sec - [junit] Running org.jboss.test.remoting.transport.http.query.URLQueryTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.247 sec - [junit] Running org.jboss.test.remoting.transport.http.raw.HTTPInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.143 sec - [junit] Running org.jboss.test.remoting.transport.http.retry.ConnectionRetryTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 48.37 sec - [junit] Running org.jboss.test.remoting.transport.http.shutdown.HTTPShutdownTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 101.622 sec - [junit] Running org.jboss.test.remoting.transport.http.socketfactory.SocketFactoryClassNameTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.246 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.StaticLoggerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.092 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.basic.HTTPSInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.827 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.builder.HTTPSInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 12.836 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.clientaddress.HttpsClientAddressTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 10.703 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.config.FactoryConfigTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 5.623 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.config.HostnameVerifierTestCase - [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.604 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.custom.HTTPSInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.917 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.handshake.InvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 6.203 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.lines.HttpsLinePreservationTestCase - [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.763 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.marshal.HttpsContentTypeTestCase - [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.779 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.multihome.SSLHttpMultihomeTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 34.708 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.shutdown.HTTPSShutdownTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 103.332 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.socketfactory.DefaultSocketFactoryTestCase - [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.621 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.socketfactory.HttpsCreationListenerTestCase - [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 9.2 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.socketfactory.SSLSocketFactoryClassNameTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.607 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.timeout.HttpsPerInvocationTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 17.614 sec - [junit] Running org.jboss.test.remoting.transport.http.timeout.ConnectionTimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.191 sec - [junit] Running org.jboss.test.remoting.transport.http.timeout.HttpPerInvocationTimeoutTestCase - [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 18.563 sec - [junit] Running org.jboss.test.remoting.transport.http.timeout.HttpQuickDisconnectTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 139.384 sec - [junit] Running org.jboss.test.remoting.transport.http.timeout.ReusedHttpURLConnectionsTestCase - [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 26.295 sec - [junit] Running org.jboss.test.remoting.transport.http.timeout.TimeoutTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 15.163 sec - [junit] Running org.jboss.test.remoting.version.HttpConfigurableVersionTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.246 sec - -tests.functional.main.http.isJDK5.core: - [junit] Running org.jboss.test.remoting.transport.http.chunked.Chunked2TestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 53.414 sec - [junit] Running org.jboss.test.remoting.transport.http.chunked.ChunkedTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 51.067 sec - [junit] Running org.jboss.test.remoting.transport.http.chunked.ChunkedUnmarshallingTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.253 sec - -tests.functional.main.http.security: - [echo] http (strict security) with jbossweb: serializationtype=java - [junit] Running org.jboss.test.remoting.transport.http.HTTPInvokerSecurityTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 22.317 sec - [junit] Running org.jboss.test.remoting.transport.http.ssl.custom.HTTPSInvokerTestCase - [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.783 sec - -BUILD SUCCESSFUL -Total time: 141 minutes 48 seconds