I've been searching for a solution to this problem for a while, however I could not find something that actually worked anywhere on these forums.
Basically the error I'm getting is: 2011-09-05 13:15:08,114 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler It seems to work fine for a while, then after 10 minutes or so (approximately 100 records) I receive lots of those error messages. I've made 1 queue, with a single consumer and multiple senders. Both are implemented in c# .NET using the Apache.NMS.ActiveMQ namespace. All connect to the queue using: tcp://localhost:61616?wireFormat.maxInactivityDuration=0 I was thinking it could have been memory issues, because I was receiving the following message from the c# client when trying to send new messages: Could not connect to broker URL: tcp://localhost:61616/?wireformat.maxinactivityduration=0. Reason: Exception of type 'System.OutOfMemoryException' was thrown. at Apache.NMS.ActiveMQ.ConnectionFactory.CreateActiveMQConnection(String userName, String password) at Apache.NMS.ActiveMQ.ConnectionFactory.CreateActiveMQConnection() I was also receiving this sometimes too: Channel was inactive for too long: tcp://localhost:61616/?wireformat.maxinactivityduration=0 at Apache.NMS.ActiveMQ.Connection.SyncRequest(Command command) at Apache.NMS.ActiveMQ.Connection.CheckConnected() at Apache.NMS.ActiveMQ.Connection.Start() However, I've increased the settings in the apache.xml file (see below) and I also tried using the maxinactivityduration setting... Any help would be greatly appreciated!! The relevant log entries (I think?): 2011-09-05 13:01:33,429 | INFO | Refreshing org.apache.activemq.xbean.XBeanBrokerFactory$1@e49d67c: startup date [Mon Sep 05 13:01:33 EST 2011]; root of context hierarchy | org.apache.activemq.xbean.XBeanBrokerFactory$1 | main 2011-09-05 13:01:34,390 | WARN | destroyApplicationContextOnStop parameter is deprecated, please use shutdown hooks instead | org.apache.activemq.xbean.XBeanBrokerService | main 2011-09-05 13:01:34,394 | INFO | PListStore:C:\Program Files (x86)\apache-activemq-5.5.0\bin\..\data\localhost\tmp_storage started | org.apache.activemq.store.kahadb.plist.PListStore | main 2011-09-05 13:01:34,424 | INFO | Using Persistence Adapter: KahaDBPersistenceAdapter[C:\Program Files (x86)\apache-activemq-5.5.0\bin\..\data\kahadb] | org.apache.activemq.broker.BrokerService | main 2011-09-05 13:01:34,825 | INFO | KahaDB is version 3 | org.apache.activemq.store.kahadb.MessageDatabase | main 2011-09-05 13:01:34,872 | INFO | Recovering from the journal ... | org.apache.activemq.store.kahadb.MessageDatabase | main 2011-09-05 13:01:34,873 | INFO | Recovery replayed 1 operations from the journal in 0.034 seconds. | org.apache.activemq.store.kahadb.MessageDatabase | main 2011-09-05 13:01:34,883 | INFO | ActiveMQ 5.5.0 JMS Message Broker (localhost) is starting | org.apache.activemq.broker.BrokerService | main 2011-09-05 13:01:34,883 | INFO | For help or more information please see: http://activemq.apache.org/ | org.apache.activemq.broker.BrokerService | main 2011-09-05 13:01:35,160 | INFO | Listening for connections at: tcp://LEOPARDWOOD:61616 | org.apache.activemq.transport.TransportServerThreadSupport | main 2011-09-05 13:01:35,161 | INFO | Connector openwire Started | org.apache.activemq.broker.TransportConnector | main 2011-09-05 13:01:35,164 | INFO | ActiveMQ JMS Message Broker (localhost, ID:LEOPARDWOOD-65119-1315191694916-0:1) started | org.apache.activemq.broker.BrokerService | main 2011-09-05 13:01:35,211 | INFO | jetty-7.1.6.v20100715 | org.eclipse.jetty.util.log | main 2011-09-05 13:01:35,398 | INFO | ActiveMQ WebConsole initialized. | org.apache.activemq.web.WebConsoleStarter | main 2011-09-05 13:01:35,479 | INFO | Initializing Spring FrameworkServlet 'dispatcher' | /admin | main 2011-09-05 13:01:35,588 | INFO | ActiveMQ Console at http://0.0.0.0:8161/admin | org.eclipse.jetty.util.log | main 2011-09-05 13:01:35,765 | INFO | Initializing Spring root WebApplicationContext | /camel | main 2011-09-05 13:01:35,952 | INFO | OSGi environment not detected. | org.apache.camel.spring.handler.CamelNamespaceHandler | main 2011-09-05 13:01:36,785 | INFO | Apache Camel 2.7.0 (CamelContext: camel) is starting | org.apache.camel.spring.SpringCamelContext | main 2011-09-05 13:01:36,785 | INFO | JMX enabled. Using ManagedManagementStrategy. | org.apache.camel.spring.SpringCamelContext | main 2011-09-05 13:01:37,370 | INFO | Found 5 packages with 16 @Converter classes to load | org.apache.camel.impl.converter.AnnotationTypeConverterLoader | main 2011-09-05 13:01:37,437 | INFO | Loaded 152 type converters in 0.550 seconds | org.apache.camel.impl.converter.DefaultTypeConverter | main 2011-09-05 13:01:37,954 | INFO | Connector vm://localhost Started | org.apache.activemq.broker.TransportConnector | main 2011-09-05 13:01:37,994 | INFO | Route: route1 started and consuming from: Endpoint[activemq://example.A] | org.apache.camel.spring.SpringCamelContext | main 2011-09-05 13:01:38,002 | INFO | Total 1 routes, of which 1 is started. | org.apache.camel.spring.SpringCamelContext | main 2011-09-05 13:01:38,015 | INFO | Apache Camel 2.7.0 (CamelContext: camel) started in 1.218 seconds | org.apache.camel.spring.SpringCamelContext | main 2011-09-05 13:01:39,147 | INFO | Camel Console at http://0.0.0.0:8161/camel | org.eclipse.jetty.util.log | main 2011-09-05 13:01:39,318 | INFO | ActiveMQ Web Demos at http://0.0.0.0:8161/demo | org.eclipse.jetty.util.log | main 2011-09-05 13:01:39,384 | INFO | RESTful file access application at http://0.0.0.0:8161/fileserver | org.eclipse.jetty.util.log | main 2011-09-05 13:01:39,399 | INFO | Started SelectChannelConnector@0.0.0.0:8161 | org.eclipse.jetty.util.log | main 2011-09-05 13:11:31,532 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55499 2011-09-05 13:11:41,818 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:11:44,988 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55633 2011-09-05 13:11:45,118 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:11:47,404 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55644 2011-09-05 13:11:55,399 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:11:58,156 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:11:58,717 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:06,355 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55708 2011-09-05 13:12:08,159 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:12,264 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:15,105 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:16,529 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:19,720 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55766 2011-09-05 13:12:21,955 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55768 2011-09-05 13:12:25,249 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:29,856 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:32,185 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:32,744 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55808 2011-09-05 13:12:33,593 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:40,476 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55838 2011-09-05 13:12:42,974 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:46,782 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:49,618 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:51,175 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:12:53,589 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55886 2011-09-05 13:12:59,784 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:04,307 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:06,495 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:08,025 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:11,150 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:55933 2011-09-05 13:13:17,215 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:18,536 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:21,313 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:24,887 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:34,096 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:35,394 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:38,193 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:41,688 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56014 2011-09-05 13:13:41,689 | INFO | Transport failed: org.apache.activemq.transport.InactivityIOException: Cannot send, channel has already failed: /0:0:0:0:0:0:0:1:56014 | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:42,273 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:42,331 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56020 2011-09-05 13:13:42,478 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56022 2011-09-05 13:13:45,809 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56035 2011-09-05 13:13:45,985 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56036 2011-09-05 13:13:51,847 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:53,736 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:56,251 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:13:59,120 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:08,727 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:13,250 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:15,561 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56120 2011-09-05 13:14:16,249 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:16,757 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:20,670 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56139 2011-09-05 13:14:25,755 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:30,835 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:33,665 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:33,798 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:41,471 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:47,658 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:48,314 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56220 2011-09-05 13:14:50,751 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:51,244 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:14:55,077 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56243 2011-09-05 13:14:58,438 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:02,042 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:05,234 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:08,114 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:15,269 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:19,459 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:22,228 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:22,813 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56322 2011-09-05 13:15:24,948 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:26,468 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56325 2011-09-05 13:15:26,611 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56326 2011-09-05 13:15:29,725 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56345 2011-09-05 13:15:32,970 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:36,785 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:40,025 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:42,340 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:49,844 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:54,226 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:56,916 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:15:57,415 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56411 2011-09-05 13:15:59,199 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:01,085 | INFO | Transport failed: java.io.EOFException | org.apache.activemq.broker.TransportConnection.Transport | ActiveMQ Transport: tcp:///0:0:0:0:0:0:0:1:56413 2011-09-05 13:16:07,580 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:11,234 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:13,800 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:16,607 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:24,504 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:28,759 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:31,272 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:33,440 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:41,928 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:45,718 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:48,349 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:50,420 | INFO | Transport failed: java.io.IOException: Wire format negotiation timeout: peer did not send his wire format. | org.apache.activemq.broker.TransportConnection.Transport | Async Exception Handler 2011-09-05 13:16:57,519 | INFO | ActiveMQ Message Broker (localhost, ID:LEOPARDWOOD-65119-1315191694916-0:1) is shutting down | org.apache.activemq.broker.BrokerService | Thread-21 2011-09-05 13:16:57,519 | INFO | ActiveMQ Message Broker (localhost, ID:LEOPARDWOOD-65119-1315191694916-0:1) is shutting down | org.apache.activemq.broker.BrokerService | ActiveMQ ShutdownHook 2011-09-05 13:16:57,543 | INFO | Connector openwire Stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook 2011-09-05 13:16:57,728 | INFO | Connector vm://localhost Stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook 2011-09-05 13:16:57,731 | INFO | PListStore:C:\Program Files (x86)\apache-activemq-5.5.0\bin\..\data\localhost\tmp_storage stopped | org.apache.activemq.store.kahadb.plist.PListStore | ActiveMQ ShutdownHook 2011-09-05 13:16:57,731 | INFO | Stopping async queue tasks | org.apache.activemq.store.kahadb.KahaDBStore | ActiveMQ ShutdownHook 2011-09-05 13:16:57,732 | INFO | Stopping async topic tasks | org.apache.activemq.store.kahadb.KahaDBStore | ActiveMQ ShutdownHook 2011-09-05 13:16:57,732 | INFO | Stopped KahaDB | org.apache.activemq.store.kahadb.KahaDBStore | ActiveMQ ShutdownHook 2011-09-05 13:16:57,986 | INFO | Connector openwire Stopped | org.apache.activemq.broker.TransportConnector | Thread-21 2011-09-05 13:16:57,990 | INFO | ActiveMQ JMS Message Broker (localhost, ID:LEOPARDWOOD-65119-1315191694916-0:1) stopped | org.apache.activemq.broker.BrokerService | Thread-21 2011-09-05 13:16:58,456 | INFO | ActiveMQ JMS Message Broker (localhost, ID:LEOPARDWOOD-65119-1315191694916-0:1) stopped | org.apache.activemq.broker.BrokerService | ActiveMQ ShutdownHook And my activemq.xml file: <beans xmlns="http://www.springframework.org/schema/beans" xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd"> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <value>file:${activemq.base}/conf/credentials.properties</value> </property> </bean> <broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.base}/data" destroyApplicationContextOnStop="true"> <destinationPolicy> <policyMap> <policyEntries> <policyEntry topic=">" producerFlowControl="true" memoryLimit="1000mb"> <pendingSubscriberPolicy> <vmCursor /> </pendingSubscriberPolicy> </policyEntry> <policyEntry queue=">" producerFlowControl="true" memoryLimit="1000mb"> </policyEntry> </policyEntries> </policyMap> </destinationPolicy> <managementContext> <managementContext createConnector="false"/> </managementContext> <persistenceAdapter> <kahaDB directory="${activemq.base}/data/kahadb"/> </persistenceAdapter> <transportConnectors> <transportConnector name="openwire" uri="tcp://0.0.0.0:61616"/> </transportConnectors> </broker> <import resource="jetty.xml"/> </beans> -- View this message in context: http://activemq.2283324.n4.nabble.com/Wire-format-negotiation-timeout-peer-did-not-send-his-wire-format-tp3790325p3790325.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.