[JBoss JIRA] Updated: (JBAS-2617) ej3.deployer contains too many jars
by Carlo de Wolf (JIRA)
[ http://jira.jboss.com/jira/browse/JBAS-2617?page=all ]
Carlo de Wolf updated JBAS-2617:
--------------------------------
Fix Version/s: JBossAS-4.2.0.CR1
> ej3.deployer contains too many jars
> -----------------------------------
>
> Key: JBAS-2617
> URL: http://jira.jboss.com/jira/browse/JBAS-2617
> Project: JBoss Application Server
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: EJB3
> Reporter: Scott M Stark
> Assigned To: Carlo de Wolf
> Fix For: JBossAS-4.2.0.CR1
>
>
> There are numerous duplicate and seemingly unused jars in the current ejb3.deployer:
> [starksm@banshee9100 jboss-4.0]$ ls build/output/jboss-4.0.4beta/server/default
> /deploy/ejb3.deployer/
> META-INF/ commons-lang-1.0.jar*
> antlr-2.7.5H3.jar* commons-logging.jar*
> asm-attrs.jar* commons-pool.jar*
> asm.jar* dom4j.jar*
> cglib-2.1.1.jar* ejb3-persistence.jar*
> commons-beanutils.jar* hibernate-annotations.jar*
> commons-codec-1.2.jar* hibernate-entitymanager.jar*
> commons-collections.jar* hibernate3.jar*
> commons-digester-1.6.jar* jaxen-1.1-beta-4.jar*
> commons-discovery.jar* jboss-annotations-ejb3.jar*
> commons-fileupload.jar* jboss-ejb3.jar*
> commons-httpclient.jar* jboss-ejb3x.jar*
> Why all these are needed and which ones should be factored out into the server lib directory need to be defined. There needs to be a distinction between the ejb3.deployer bundled in the app server vs a standalone bundle for installing into earlier releases.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 2 months
[JBoss JIRA] Created: (JBPM-844) Web console will not take transition unless it is named "End task"
by Matt Cumberlidge (JIRA)
Web console will not take transition unless it is named "End task"
------------------------------------------------------------------
Key: JBPM-844
URL: http://jira.jboss.com/jira/browse/JBPM-844
Project: JBoss jBPM
Issue Type: Bug
Components: Web Interface
Affects Versions: jBPM jPDL 3.2 beta 2
Environment: Windows XP Service Pack 2, JBoss 4
Reporter: Matt Cumberlidge
Assigned To: Tom Baeyens
I have a process definition which I've created using the Eclipse Designer. It is quite simple and doesn't do much. When I deploy it to the server and try to go through it in the web console I get stuck at the very first transition, with the web console telling me that there is no transition called "End task". My transition is unnamed and I anticipated that the web console should take that transition even though it is does not have the same name as the "End task" button. The relevant part of the process definition is as follows:
<task name="Hold auditions" swimlane="Talent scout">
<controller>
<variable name="audDate" access="read,write,required" mapped-name="Audition date"></variable>
<variable name="audLocation" access="read,write,required" mapped-name="Audition location"></variable>
</controller>
</task>
<transition name="" to="Select band members"></transition>
</start-state>
<task-node name="Select band members">
<task name="Select band members" swimlane="Talent scout">
<controller>
<variable name="bm1" access="read,write,required" mapped-name="Band member 1"></variable>
<variable name="bm2" access="read,write,required" mapped-name="Band member 2"></variable>
<variable name="bm3" access="read,write,required" mapped-name="Band member 3"></variable>
<variable name="bm4" mapped-name="Band member 4"></variable>
<variable name="bm5" mapped-name="Band member 5"></variable>
<variable name="bm6" mapped-name="Band member 6"></variable>
</controller>
</task>
<transition name="" to="Contract band members"></transition>
</task-node>
It won't take that first transition. Note that I the Eclipse Designer puts in the name="" by default.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 2 months
[JBoss JIRA] Created: (JBAS-4116) JRMPInvokerHA fails with a NPE when no JRMPInvoker is setup on the server
by Andreas Schaefer (JIRA)
JRMPInvokerHA fails with a NPE when no JRMPInvoker is setup on the server
-------------------------------------------------------------------------
Key: JBAS-4116
URL: http://jira.jboss.com/jira/browse/JBAS-4116
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Clustering
Affects Versions: JBossAS-4.0.5.GA, JBossAS-4.0.5.CR1, JBossAS-4.0.4.GA
Environment: SuSE Linux 10.2 XEN Instance, AMD64 Dual Core 5000+, 1GB Memory
Reporter: Andreas Schaefer
Assigned To: Brian Stansberry
Priority: Minor
When JRMPInvokerHA is used but instead of the JRMPInvoker another Invoker like the Pooled is used then the JRMPInvokerHA will fail with a NPE on the invoke() method of the JRMPInvokerHA accessing the importTPC() method of the JRMPInvoker:
Caused by: java.lang.NullPointerException
at org.jboss.invocation.jrmp.server.JRMPInvoker.importTPC(JRMPInvoker.java:595)
at org.jboss.invocation.jrmp.server.JRMPInvokerHA.invoke(JRMPInvokerHA.java:151)
The problem was dormant until now because the variable called 'tcpImporter' is static and so any instance of JRMPInvoker will set it. Unfortunately the variable is not set by the JRMPInvokerHA by itself because the method startService() is overwriten and does not call the super method.
I fixed that issue this way:
1) Extract the setting of the tcpImporter in the JRMPInvoker in its own, protected method:
protected void createTPCInvoker() {
// FIXME marcf: This should not be here
// and the transaction propagation context importer
tpcImporter = TransactionPropagationContextUtil.getTPCImporter();
}
2). Call this method from within the startService() method of the JRMPInvoker (a) and the JRMPInvokerHA (b):
a)
protected void startService() throws Exception
{
loadCustomSocketFactories();
if (log.isDebugEnabled())
{
log.debug("RMI Port='" +
(rmiPort == ANONYMOUS_PORT ? "Anonymous" :
Integer.toString(rmiPort)) + "'");
log.debug("Client SocketFactory='" +
(clientSocketFactory == null ? "Default" :
clientSocketFactory.toString()) + "'");
log.debug("Server SocketFactory='" +
(serverSocketFactory == null ? "Default" :
serverSocketFactory.toString()) + "'");
log.debug("Server SocketAddr='" +
(serverAddress == null ? "Default" :
serverAddress) + "'");
log.debug("SecurityDomain='" +
(sslDomain == null ? "Default" :
sslDomain) + "'");
}
InitialContext ctx = new InitialContext();
createTPCInvoker();
// Set the transaction manager and transaction propagation
// context factory of the GenericProxy class
Invoker delegateInvoker = createDelegateInvoker();
// Make the remote invoker proxy available for use by the proxy factory
Registry.bind(support.getServiceName(), delegateInvoker);
// Export CI
exportCI();
log.debug("Bound JRMP invoker for JMX node");
ctx.close();
}
b)
protected void startService() throws Exception
{
loadCustomSocketFactories();
if (log.isDebugEnabled())
{
log.debug("RMI Port='" + (rmiPort == ANONYMOUS_PORT ?
"Anonymous" : Integer.toString(rmiPort)+"'"));
log.debug("Client SocketFactory='" + (clientSocketFactory == null ?
"Default" : clientSocketFactory.toString()+"'"));
log.debug("Server SocketFactory='" + (serverSocketFactory == null ?
"Default" : serverSocketFactory.toString()+"'"));
log.debug("Server SocketAddr='" + (serverAddress == null ?
"Default" : serverAddress+"'"));
log.debug("SecurityDomain='" + (sslDomain == null ?
"None" : sslDomain+"'"));
}
createTPCInvoker();
exportCI();
Registry.bind(support.getServiceName(), this);
}
I also don't think that the tcpInvoker should be static and I tested it without being static and it worked for me but that is another story.
-Andy
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 2 months
[JBoss JIRA] Created: (JBMESSAGING-869) Clustering tests seem to be using the HTTP transport
by Tim Fox (JIRA)
Clustering tests seem to be using the HTTP transport
----------------------------------------------------
Key: JBMESSAGING-869
URL: http://jira.jboss.com/jira/browse/JBMESSAGING-869
Project: JBoss Messaging
Issue Type: Bug
Affects Versions: 1.2.0.CR1
Reporter: Tim Fox
Priority: Critical
Fix For: 1.2.0.GA
They should be using the bisocket transport.
Something very strange
Try running ant clustering-tests on linux (maybe it does the same on windows - I don't know).
When the second test runs a stack trace appears when the server is killed - check out the output:
Notice the output says "@Thread-26 18:01:46,745 INFO BisocketServerInvoker] got listener: null" - implying that the bisocket transport is being used.
But the stack clearly shows the HTTP transport poller in action!!
[tim@nutter tests]$ ant clustering-tests
Buildfile: build.xml
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
compile:
[rmic] RMI Compiling 2 classes to /home/tim/trunk/tests/output/classes
tests-jar:
[jar] Building jar: /home/tim/trunk/tests/output/lib/jboss-messaging-tests.jar
prepare-testdirs:
clear-test-logs:
[echo] Cleaning test logs /home/tim/trunk/tests/output/logs/*.log
[delete] Deleting 6 files from /home/tim/trunk/tests/output/logs
clustering-tests:
start-clustering:
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
stop-rmi-server-clustering:
[java] @main 18:00:06,491 INFO [StopRMIServer] Stopping //localhost:33777/messaging_rmi_server_3
[java] @main 18:00:06,516 INFO [StopRMIServer] Cannot contact the registry, the server is probably shut down already
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
stop-rmi-server-clustering:
[java] @main 18:00:08,265 INFO [StopRMIServer] Stopping //localhost:33777/messaging_rmi_server_2
[java] @main 18:00:08,268 INFO [StopRMIServer] Cannot contact the registry, the server is probably shut down already
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
stop-rmi-server-clustering:
[java] @main 18:00:09,830 INFO [StopRMIServer] Stopping //localhost:33777/messaging_rmi_server_1
[java] @main 18:00:09,833 INFO [StopRMIServer] Cannot contact the registry, the server is probably shut down already
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
stop-rmi-server-clustering:
[java] @main 18:00:11,308 INFO [StopRMIServer] Stopping //localhost:33777/messaging_rmi_server_0
[java] @main 18:00:11,310 INFO [StopRMIServer] Cannot contact the registry, the server is probably shut down already
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
start-rmi-server-clustering:
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
start-rmi-server-clustering:
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
start-rmi-server-clustering:
detect-availability:
use-local-remoting:
use-repository-remoting:
use-local-serialization:
use-repository-serialization:
resolve-local-dependencies:
init:
start-rmi-server-clustering:
[echo] Running clustering tests, fork=true, junit.batchtest.fork=true
[junit] Running org.jboss.test.messaging.jms.clustering.ClusterViewUpdateTest
[junit] @main 18:00:17,567 INFO [ClusterViewUpdateTest] ####################################################### Start REMOTE test: testUpdateConnectionFactory
[junit] @main 18:00:17,983 INFO [ServerManagement] starting server 0
[junit] @main 18:00:25,096 INFO [ServerManagement] server 0 started
[junit] @main 18:00:25,283 INFO [ServerManagement] starting server 1
[junit] @main 18:00:32,471 INFO [ServerManagement] server 1 started
[junit] @main 18:00:32,682 INFO [ServerManagement] starting server 2
[junit] @main 18:00:40,039 INFO [ServerManagement] server 2 started
[junit] @main 18:00:41,501 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:00:42,072 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:00:42,350 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:00:46,728 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:00:46,821 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:00:46,924 INFO [ServerManagement] server 1 killed
[junit] @main 18:00:47,721 INFO [ClusterViewUpdateTest] sleeping 5 secs ...
[junit] @Thread-13 18:00:48,887 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:00:52,735 INFO [ClusterViewUpdateTest] sleeping 25 secs ...
[junit] @main 18:01:17,741 INFO [ClusterViewUpdateTest] ServerId=2
[junit] @main 18:01:18,971 INFO [ServerManagement] server 0 stopped
[junit] @main 18:01:20,234 INFO [ServerManagement] server 2 stopped
[junit] @main 18:01:20,234 INFO [ClusterViewUpdateTest] ####################################################### Stop REMOTE test: testUpdateConnectionFactory
[junit] @main 18:01:20,240 INFO [ClusterViewUpdateTest] ####################################################### Start REMOTE test: testUpdateMixedConnectionFactory
[junit] @main 18:01:20,241 INFO [ServerManagement] starting server 0
[junit] @main 18:01:25,168 INFO [ServerManagement] server 0 started
[junit] @main 18:01:26,319 INFO [ServerManagement] spawned server 1, waiting for it to come online
[junit] @main 18:01:27,861 INFO [ServerManagement] server 1 online
[junit] @main 18:01:27,861 INFO [ServerManagement] starting server 1
[junit] @main 18:01:35,532 INFO [ServerManagement] server 1 started
[junit] @main 18:01:35,680 INFO [ServerManagement] starting server 2
[junit] @main 18:01:40,607 INFO [ServerManagement] server 2 started
[junit] @main 18:01:40,739 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:01:40,842 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:01:41,047 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:01:44,478 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:01:44,613 INFO [ClusterViewUpdateTest] ValidateCFs:
[junit] @main 18:01:44,613 INFO [ClusterViewUpdateTest] DelegateSocket[0]=bisocket://192.168.1.10:3347/?NumberOfCallRetries=2&NumberOfRetries=1&callbackErrorsAllowed=1&callbackStore=org.jboss.remoting.callback.BlockingCallbackStore&clientLeasePeriod=20000&clientSocketClass=org.jboss.jms.client.remoting.ClientSocketWrapper&dataType=jms&marshaller=org.jboss.jms.server.remoting.JMSWireFormat&serializationtype=jms&serverSocketClass=org.jboss.jms.server.remoting.ServerSocketWrapper&socket.check_connection=false&timeout=0&unmarshaller=org.jboss.jms.server.remoting.JMSWireFormat
[junit] @main 18:01:44,613 INFO [ClusterViewUpdateTest] DelegateHttp[0]=http://192.168.1.10:3349/?NumberOfCallRetries=2&NumberOfRetries=1&callbackErrorsAllowed=1&callbackPollPeriod=102&callbackStore=org.jboss.remoting.callback.BlockingCallbackStore&clientLeasePeriod=20000&clientSocketClass=org.jboss.jms.client.remoting.ClientSocketWrapper&dataType=jms&marshaller=org.jboss.jms.server.remoting.JMSWireFormat&serializationtype=jms&serverSocketClass=org.jboss.jms.server.remoting.ServerSocketWrapper&socket.check_connection=false&unmarshaller=org.jboss.jms.server.remoting.JMSWireFormat
[junit] @main 18:01:44,614 INFO [ClusterViewUpdateTest] DelegateSocket[1]=bisocket://localhost:2827/?NumberOfCallRetries=2&NumberOfRetries=1&callbackErrorsAllowed=1&callbackStore=org.jboss.remoting.callback.BlockingCallbackStore&clientLeasePeriod=20000&clientSocketClass=org.jboss.jms.client.remoting.ClientSocketWrapper&dataType=jms&marshaller=org.jboss.jms.server.remoting.JMSWireFormat&serializationtype=jms&serverSocketClass=org.jboss.jms.server.remoting.ServerSocketWrapper&socket.check_connection=false&timeout=0&unmarshaller=org.jboss.jms.server.remoting.JMSWireFormat
[junit] @main 18:01:44,614 INFO [ClusterViewUpdateTest] DelegateHttp[1]=http://localhost:2829/?NumberOfCallRetries=2&NumberOfRetries=1&callbackErrorsAllowed=1&callbackPollPeriod=102&callbackStore=org.jboss.remoting.callback.BlockingCallbackStore&clientLeasePeriod=20000&clientSocketClass=org.jboss.jms.client.remoting.ClientSocketWrapper&dataType=jms&marshaller=org.jboss.jms.server.remoting.JMSWireFormat&serializationtype=jms&serverSocketClass=org.jboss.jms.server.remoting.ServerSocketWrapper&socket.check_connection=false&unmarshaller=org.jboss.jms.server.remoting.JMSWireFormat
[junit] @main 18:01:44,614 INFO [ClusterViewUpdateTest] DelegateSocket[2]=bisocket://192.168.1.10:3714/?NumberOfCallRetries=2&NumberOfRetries=1&callbackErrorsAllowed=1&callbackStore=org.jboss.remoting.callback.BlockingCallbackStore&clientLeasePeriod=20000&clientSocketClass=org.jboss.jms.client.remoting.ClientSocketWrapper&dataType=jms&marshaller=org.jboss.jms.server.remoting.JMSWireFormat&serializationtype=jms&serverSocketClass=org.jboss.jms.server.remoting.ServerSocketWrapper&socket.check_connection=false&timeout=0&unmarshaller=org.jboss.jms.server.remoting.JMSWireFormat
[junit] @main 18:01:44,614 INFO [ClusterViewUpdateTest] DelegateHttp[2]=http://192.168.1.10:3716/?NumberOfCallRetries=2&NumberOfRetries=1&callbackErrorsAllowed=1&callbackPollPeriod=102&callbackStore=org.jboss.remoting.callback.BlockingCallbackStore&clientLeasePeriod=20000&clientSocketClass=org.jboss.jms.client.remoting.ClientSocketWrapper&dataType=jms&marshaller=org.jboss.jms.server.remoting.JMSWireFormat&serializationtype=jms&serverSocketClass=org.jboss.jms.server.remoting.ServerSocketWrapper&socket.check_connection=false&unmarshaller=org.jboss.jms.server.remoting.JMSWireFormat
[junit] @main 18:01:44,645 INFO [BisocketServerInvoker] got listener: null
[junit] @main 18:01:44,760 INFO [ServerManagement] server 1 killed
[junit] @main 18:01:45,585 INFO [ClusterViewUpdateTest] sleeping 5 secs ...
[junit] @Timer-5 18:01:45,589 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:565)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:939)
[junit] at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:367)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:195)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,593 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,595 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,599 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,610 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,668 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,773 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,876 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:45,972 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,076 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,176 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,280 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,380 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,484 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,584 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Timer-5 18:01:46,692 ERROR [CallbackPoller] Error getting callbacks from server.
[junit] org.jboss.remoting.CannotConnectException: Can not connect http client invoker.
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:248)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:95)
[junit] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
[junit] at org.jboss.remoting.Client.invoke(Client.java:1414)
[junit] at org.jboss.remoting.Client.invoke(Client.java:511)
[junit] at org.jboss.remoting.Client.getCallbacks(Client.java:958)
[junit] at org.jboss.remoting.callback.CallbackPoller.run(CallbackPoller.java:190)
[junit] at java.util.TimerThread.mainLoop(Timer.java:512)
[junit] at java.util.TimerThread.run(Timer.java:462)
[junit] Caused by: java.net.ConnectException: Connection refused
[junit] at java.net.PlainSocketImpl.socketConnect(Native Method)
[junit] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
[junit] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
[junit] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
[junit] at java.net.Socket.connect(Socket.java:516)
[junit] at java.net.Socket.connect(Socket.java:466)
[junit] at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
[junit] at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
[junit] at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:287)
[junit] at sun.net.www.http.HttpClient.New(HttpClient.java:299)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:795)
[junit] at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:747)
[junit] at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:672)
[junit] at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:839)
[junit] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:193)
[junit] ... 8 more
[junit] @Thread-26 18:01:46,745 INFO [BisocketServerInvoker] got listener: null
[tim@nutter tests]$
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 2 months