Return-Path: X-Original-To: apmail-camel-dev-archive@www.apache.org Delivered-To: apmail-camel-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E11B26E8D for ; Wed, 22 Jun 2011 15:19:10 +0000 (UTC) Received: (qmail 40702 invoked by uid 500); 22 Jun 2011 15:19:10 -0000 Delivered-To: apmail-camel-dev-archive@camel.apache.org Received: (qmail 40664 invoked by uid 500); 22 Jun 2011 15:19:10 -0000 Mailing-List: contact dev-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list dev@camel.apache.org Received: (qmail 40651 invoked by uid 99); 22 Jun 2011 15:19:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jun 2011 15:19:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jun 2011 15:19:09 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 2721C428811 for ; Wed, 22 Jun 2011 15:18:49 +0000 (UTC) Date: Wed, 22 Jun 2011 15:18:49 +0000 (UTC) From: "Daniel Kulp (JIRA)" To: dev@camel.apache.org Message-ID: <764321648.29670.1308755929157.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Created] (CAMEL-4139) Unify blueprint and spring namespace parsing in camel-cxf MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Unify blueprint and spring namespace parsing in camel-cxf --------------------------------------------------------- Key: CAMEL-4139 URL: https://issues.apache.org/jira/browse/CAMEL-4139 Project: Camel Issue Type: Improvement Components: camel-cxf Reporter: Daniel Kulp Assignee: Daniel Kulp Fix For: 2.8.0 Currently, spring parses into a CxfEndpointBean whereas blueprint parses into a CxfEndpoint directly. This mismatch then requires extra casting in the CxfComponent. Also, it means there are features supported by Spring that are not supported yet by blueprint (like configuring interceptors). I'm attaching a patch that removes the spring specific CxfEndpointBean stuff and allows both spring and blueprint to parse directly into the CxfEndpoint (well, subclasses of) so the two approaches can be maintained together. It also reduces the usage of "Strings" for properties in CxfEndpoint and uses QNames where appropriate (added a Converter for that) and Class for the service class. That will allow OSGi to provide the Class directly instead of having to Class.forName the thing. (still need to do that, but this is a start) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira