Return-Path: X-Original-To: apmail-camel-users-archive@www.apache.org Delivered-To: apmail-camel-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 C01C9186CD for ; Fri, 25 Sep 2015 09:37:11 +0000 (UTC) Received: (qmail 76329 invoked by uid 500); 25 Sep 2015 09:37:11 -0000 Delivered-To: apmail-camel-users-archive@camel.apache.org Received: (qmail 76281 invoked by uid 500); 25 Sep 2015 09:37:11 -0000 Mailing-List: contact users-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@camel.apache.org Delivered-To: mailing list users@camel.apache.org Received: (qmail 76269 invoked by uid 99); 25 Sep 2015 09:37:10 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Sep 2015 09:37:10 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 49974C278C for ; Fri, 25 Sep 2015 09:37:10 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-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: spamd1-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id So6rDge1LrHh for ; Fri, 25 Sep 2015 09:37:09 +0000 (UTC) Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTPS id 65B3B439B3 for ; Fri, 25 Sep 2015 09:37:09 +0000 (UTC) Received: by wiclk2 with SMTP id lk2so11881699wic.1 for ; Fri, 25 Sep 2015 02:37:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to; bh=FH1NZDM6mzaMSaDxwU5y8b7+Cb1n5azhmgXsM5+GIoE=; b=ymc6tRegG3ZNzccobSsI6BQ23vMnbP4L9zfbSznNC7CCiAhttEMIYCRhhFTCMY2i6u W8QZVoS61qMcxG84ifN8gVADeBjeu7R+A2Mn6P6YeWU0z0uIlbqUefYSKtsFwc5jX1V7 79yz4ztHT23GJ5PmTZ1e5Tt97fEAWuLJJLhE9LRM2LVpwqPB3RGhV6/gkZYFPyu73Gv6 rke7uClOZhbKgezP1+7IEM3oXZAjUhwpID4NZc3E3xSKxArDeBQRuYQn4qw0SmZ+Q8QL tyW2lJCBZjOCZHWNt5vLHSChLbiEV6LOqJVRZdHqVLdPHyKwLThO9STLy1mYvAZp0xn0 SW4g== X-Received: by 10.194.246.161 with SMTP id xx1mr5024036wjc.26.1443173828584; Fri, 25 Sep 2015 02:37:08 -0700 (PDT) Received: from frej.thoughtcrime.dk ([188.114.173.51]) by smtp.gmail.com with ESMTPSA id pl7sm2351283wic.4.2015.09.25.02.37.07 for (version=TLS1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 25 Sep 2015 02:37:08 -0700 (PDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.0 \(3094\)) Subject: Re: Custom endpoint configuration and Spring Boot From: Jimmy Selgen Nielsen In-Reply-To: Date: Fri, 25 Sep 2015 11:37:07 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: <35B61A5B-77FA-469B-9FD0-CD51930CB53D@gmail.com> References: To: users@camel.apache.org X-Mailer: Apple Mail (2.3094) > On 25. sep. 2015, at 11.28, Henryk Konsek wrote: >=20 > from("jms:myqueue?destinationResolver=3D#myCustomDestinationResolver > ").to(...); This would of course solve the problem, but I=E2=80=99m trying to = simplify things a bit for my end users, so instead of the above, they = can simply use from(=E2=80=9Cwmq:queue=E2=80=9D)=E2=80=A6. The mainframe i=E2=80=99m talking to on the other end has some specific = =E2=80=9Cdemands=E2=80=9D on how things should be configured, and the = =E2=80=9Cwmq=E2=80=9D endpoint sets things like targetClient, CCSID, = Encoding, Expiry, etc. It=E2=80=99s working, i just need to add it to my context at = initialization time so that the wmq endpoint is available at route = configuration time, as opposed to right before starting the routes. /J=