Return-Path: Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: (qmail 81160 invoked from network); 5 Apr 2007 15:45:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Apr 2007 15:45:55 -0000 Received: (qmail 84221 invoked by uid 500); 5 Apr 2007 15:46:02 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 84196 invoked by uid 500); 5 Apr 2007 15:46:02 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 84183 invoked by uid 99); 5 Apr 2007 15:46:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Apr 2007 08:46:02 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Apr 2007 08:45:54 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 79A74714048 for ; Thu, 5 Apr 2007 08:45:34 -0700 (PDT) Message-ID: <9963530.1175787934471.JavaMail.jira@brutus> Date: Thu, 5 Apr 2007 08:45:34 -0700 (PDT) From: "Howard Freeman (JIRA)" To: dev@activemq.apache.org Subject: [jira] Created: (AMQ-1220) 2007-04-05 08:46:47,241 [ActiveMQ Transport: tcp://mymachinename:61616] WARN org.apache.activemq.ActiveMQConnection - Async exception with no exception listener: java.io.EOFException MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org 2007-04-05 08:46:47,241 [ActiveMQ Transport: tcp://mymachinename:61616] WARN org.apache.activemq.ActiveMQConnection - Async exception with no exception listener: java.io.EOFException --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Key: AMQ-1220 URL: https://issues.apache.org/activemq/browse/AMQ-1220 Project: ActiveMQ Issue Type: Bug Components: Transport Affects Versions: 4.1.0 Environment: Windows XP SP2, Eclipse IDE, Java 1.6/1.5_10/ ActiveMQ 4.1.1/Spring 2.0.2 (jmsTemplate) Reporter: Howard Freeman 2007-04-05 08:46:47,241 [ActiveMQ Transport: tcp://mymachinename:61616] WARN org.apache.activemq.ActiveMQConnection - Async exception with no exception listener: java.io.EOFException java.io.EOFException at java.io.DataInputStream.readInt(Unknown Source) at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:267) at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:156) at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:136) at java.lang.Thread.run(Unknown Source) This error occurs after the synchronous messaging is complete and successful. It occurs after about 5 minutes of the application finishing the receive. The error is not seen when the same send/receive methods are looped continuously. The application is a very simple send and receive application that uses Serialization methods for send and receive of objects. // Sample send/receive client.send(Request); response = (Response) client.receive(); Spring code used for send: // Send Request jmsTemplate.convertAndSend(requestQueue, req, new MessagePostProcessor() { public Message postProcessMessage(Message message) throws JMSException { message.setJMSCorrelationID(myMessageID); return message; } }); Spring code used for receive: // Wait for Synchronous Response // Use a Message Selector to only receive responses to the request you // sent String resSelectorId = "JMSCorrelationID='" + getCurrentJMSMessageID() + "'"; Response resp = (Response) jmsTemplate.receiveSelectedAndConvert(responseQueue, resSelectorId); Here is the shared-context.xml for the connectionFactory: I am sure that it is something I have failed to configure correctly since I am very new the activeMQ product. Thanks for your time and effort! -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.