Return-Path: Delivered-To: apmail-activemq-users-archive@www.apache.org Received: (qmail 35446 invoked from network); 29 Aug 2008 16:31:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Aug 2008 16:31:52 -0000 Received: (qmail 14064 invoked by uid 500); 29 Aug 2008 16:31:51 -0000 Delivered-To: apmail-activemq-users-archive@activemq.apache.org Received: (qmail 13677 invoked by uid 500); 29 Aug 2008 16:31:50 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Received: (qmail 13662 invoked by uid 99); 29 Aug 2008 16:31:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Aug 2008 09:31:50 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of kot.begemot@gmail.com designates 64.233.166.182 as permitted sender) Received: from [64.233.166.182] (HELO py-out-1112.google.com) (64.233.166.182) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Aug 2008 16:30:51 +0000 Received: by py-out-1112.google.com with SMTP id f47so579188pye.6 for ; Fri, 29 Aug 2008 09:31:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=ur5fJydrfa5PQL6KQxHTmmpB1qeGaIPllwPJWVR7tc0=; b=VGNoyJQmNn3wTpmLtGAGWjGZSfRcQCNBYMEHDHx0E2DuSdOqHOoW+nriSywPEhqHnz nt6c5o42Ejrm7t38wQOEY5aokKJm38xmTXuysE7qFa/Dc88dt5pWxka0ztRtieJA/62u PKiEgpqxaA55ql5hqNWvEUs4Irp36IQcpRHTI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Xksgpv7KPjhel8nvLof5bgYtvCnArPrkjbQCMdO3668Gy2K88qeUMHGm59HQU09Tcd 8nnjWXbTrXhsCF03QiJsYEw2j582fEIPq28tOC3vh9VM1DjRHx2lAwIuXcVAn9Y6oUcZ 9vcElxx8OYCuDzj+J4iow+w9CQGugd67PxgXg= Received: by 10.114.185.8 with SMTP id i8mr2889341waf.28.1220027464133; Fri, 29 Aug 2008 09:31:04 -0700 (PDT) Received: by 10.114.178.7 with HTTP; Fri, 29 Aug 2008 09:31:04 -0700 (PDT) Message-ID: <6e8974e40808290931u2199986eydd18163a9398ff1c@mail.gmail.com> Date: Fri, 29 Aug 2008 09:31:04 -0700 From: "Vadim Chekan" To: users@activemq.apache.org Subject: Re: Exceptions in ActiveMQ console In-Reply-To: <19221712.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <19221712.post@talk.nabble.com> X-Virus-Checked: Checked by ClamAV on apache.org I had something similar recently. My exception though was at the client side. What this exception says is that some operation was requested by the client which involves connection (as in JMS Connection) which is not currently registered with activemq. So I'd take look first at the client and profile which connections are open and when they are closed to understand why activemq lacks it. Vadim. On Fri, Aug 29, 2008 at 8:06 AM, krv wrote: > > Hi, > > I am getting the following exceptions in my ActiveMQ console: > > ERROR Service - Async error occurred: > java.lang.IllegalStateException: Cannot lookup a connection that had not > been registered: ID:om3-1128-1219997369375-0:1 > java.lang.IllegalStateException: Cannot lookup a connection that had not > been registered: ID:om3-1128-1219997369375-0:1 > at > org.apache.activemq.broker.SingleTransportConnectionStateRegister.lookupConnectionState(SingleTransportConnectionStateRegister.java:113) > at > org.apache.activemq.broker.TransportConnection.lookupConnectionState(TransportConnection.java:1313) > at > org.apache.activemq.broker.TransportConnection.processRemoveSession(TransportConnection.java:572) > at org.apache.activemq.command.RemoveInfo.visit(RemoveInfo.java:62) > at > org.apache.activemq.broker.TransportConnection.service(TransportConnection.java:281) > at > org.apache.activemq.broker.TransportConnection$1.onCommand(TransportConnection.java:178) > at > org.apache.activemq.transport.TransportFilter.onCommand(TransportFilter.java:67) > at > org.apache.activemq.transport.WireFormatNegotiator.onCommand(WireFormatNegotiator.java:134) > at > org.apache.activemq.transport.InactivityMonitor.onCommand(InactivityMonitor.java:138) > at > org.apache.activemq.transport.TransportSupport.doConsume(TransportSupport.java:83) > at > org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:185) > at > org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:172) > at java.lang.Thread.run(Thread.java:595) > > > I am not sure why this exception occurred. My other application is just > trying to dequeue messages from a queue and for this I'm using Mule. > > If would be of great helf if anybody post any relevant information. > > Thanks in advance, > Vivek > -- > View this message in context: http://www.nabble.com/Exceptions-in-ActiveMQ-console-tp19221712p19221712.html > Sent from the ActiveMQ - User mailing list archive at Nabble.com. > > -- >From RFC 2631: In ASN.1, EXPLICIT tagging is implicit unless IMPLICIT is explicitly specified