Return-Path: X-Original-To: apmail-qpid-users-archive@www.apache.org Delivered-To: apmail-qpid-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5BE33182F4 for ; Thu, 3 Dec 2015 12:02:53 +0000 (UTC) Received: (qmail 53695 invoked by uid 500); 3 Dec 2015 12:02:53 -0000 Delivered-To: apmail-qpid-users-archive@qpid.apache.org Received: (qmail 53662 invoked by uid 500); 3 Dec 2015 12:02:53 -0000 Mailing-List: contact users-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@qpid.apache.org Delivered-To: mailing list users@qpid.apache.org Received: (qmail 53650 invoked by uid 99); 3 Dec 2015 12:02:52 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2015 12:02:52 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 76D031A2DD1 for ; Thu, 3 Dec 2015 12:02:52 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.121 X-Spam-Level: X-Spam-Status: No, score=-0.121 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] autolearn=disabled Authentication-Results: spamd2-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id vdEQNelrvgys for ; Thu, 3 Dec 2015 12:02:51 +0000 (UTC) Received: from mail-lf0-f45.google.com (mail-lf0-f45.google.com [209.85.215.45]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTPS id 1CACE21624 for ; Thu, 3 Dec 2015 12:02:51 +0000 (UTC) Received: by lffu14 with SMTP id u14so88810281lff.1 for ; Thu, 03 Dec 2015 04:02:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=jyMGS4q/pr23HbVubYTQT6QvYcGUglRM1VgWv2xLlxI=; b=dhb4KOkf1hAmL9jS8CcUaE/iPiFjCyowVQRl94zrwGyzGrgY4abxmU5mu4wxISUHMW WIcJDYz+tky/3hFK9dEgObcFAi2kFMaaIIJI7K+odocDwRz9FAH4fOQfmy2UY0a6tKNJ Y3AWnbyG+buuSrYdh2bA0DeXbHWD4ZsWtzfBix1wU1c1M8Co2unx0TPR7kEUSQfmz3/g egkZJGmpQLMBqFTWYkL6kOiRKnOd6zFLNtFoHJgfsjd/mBjk5QOMtpdPxDuMjkZf2nMj QFqrUTbwZzgBHCc3+dksRA3aOzKFi05+m3soPbm5uFu7x8f+jShPg8C13sGsmkn/p0Jz uIQA== MIME-Version: 1.0 X-Received: by 10.25.5.201 with SMTP id 192mr4778609lff.82.1449144169277; Thu, 03 Dec 2015 04:02:49 -0800 (PST) Received: by 10.25.166.147 with HTTP; Thu, 3 Dec 2015 04:02:49 -0800 (PST) In-Reply-To: References: <565F5866.9010505@redhat.com> <56601356.5010704@redhat.com> Date: Thu, 3 Dec 2015 12:02:49 +0000 Message-ID: Subject: Re: [VOTE] Release Qpid Java Components 6.0.0 From: Oleksandr Rudyy To: users@qpid.apache.org Content-Type: text/plain; charset=UTF-8 Hi all, I am canceling this voting as we decided to build RC5 to include fixes for QPID-6926 and QPID-6928. Thanks a lot for testing and reporting issues with the RC4. Kind Regards, Alex On 3 December 2015 at 11:06, Rob Godfrey wrote: > Does the broker put the full stack trace of the NullPointerException in its > logs? > > I'll try to fix this (as well as the out of order detach) if I can locate > it. > > Cheers, > Rob > > On 3 December 2015 at 10:03, Gordon Sim wrote: > >> On 12/02/2015 09:45 PM, Rob Godfrey wrote: >> >>> On 2 December 2015 at 21:45, Gordon Sim wrote: >>> >>>> From the proton python examples, I was unable to connect as that client >>>> populates the hostname with a host and port combination, which was >>>> causing >>>> the broker to close the connection: >>>> >>> [...] >> >>> In its default configuration the Java Broker will accept any valid >>> hostname >>> or IP address as the "hostname", or the empty string, or "default". It >>> will not match anything containing the port number, nor will it match to >>> 0.0.0.0. To get the Python client to work you could add the following >>> entry: >>> >>> { >>> "name" : "pattern", >>> "virtualHostNode" : "default", >>> "type" : "patternMatchingAlias", >>> "pattern" : ".*" >>> } >>> >>> into the list of virtualhostaliases within the AMQP port entry within the >>> config.json file. This will match any hostname in the open frame to the >>> virtual host named "default". >>> >> >> Yes indeed, that works perfectly, thanks! With that in place most of the >> python examples work as expected. The one exception is those involving the >> server, which creates a sending link with no address in the target (the so >> called 'anonymous-relay' behaviour I believe?). The java broker responds >> with: >> >> [0x8c9450]:0 <- @close(24) [error=@error(29) >>> [condition=:"amqp:connection:forced", >>> description="java.lang.NullPointerException"]] >>> >> >> That of course isn't an issue per-se as the behaviour in question isn't in >> any way official, its just a useful convention. I mention it here only in >> case it is expected to work and there is some minor interop issue we can >> fix (and also for future reference if anyone else hits it). >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org >> For additional commands, e-mail: users-help@qpid.apache.org >> >> --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org For additional commands, e-mail: users-help@qpid.apache.org