You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2013/10/07 12:45:28 UTC

[2/3] git commit: CAMEL-6790: Fixed camel-blueprint and camel-spring refresh issue can cause namespace handler to not trigger.

CAMEL-6790: Fixed camel-blueprint and camel-spring refresh issue can cause namespace handler to not trigger.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/63423cc9
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/63423cc9
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/63423cc9

Branch: refs/heads/camel-2.12.x
Commit: 63423cc938d0863b749e66cac66fd05cd66d9bb6
Parents: be939d0
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Oct 7 12:44:19 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Oct 7 12:44:41 2013 +0200

----------------------------------------------------------------------
 .../org/apache/camel/blueprint/handler/CamelNamespaceHandler.java  | 2 +-
 .../org/apache/camel/spring/handler/CamelNamespaceHandler.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/63423cc9/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java
----------------------------------------------------------------------
diff --git a/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java b/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java
index fe726e8..2f0e44b 100644
--- a/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java
+++ b/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java
@@ -181,7 +181,7 @@ public class CamelNamespaceHandler implements NamespaceHandler {
             // if no explicit id was set then use a default auto generated name
             CamelContextNameStrategy strategy = new DefaultCamelContextNameStrategy();
             contextId = strategy.getName();
-            element.setAttribute("id", contextId);
+            element.setAttributeNS(null, "id", contextId);
             implicitId = true;
         }
 

http://git-wip-us.apache.org/repos/asf/camel/blob/63423cc9/components/camel-spring/src/main/java/org/apache/camel/spring/handler/CamelNamespaceHandler.java
----------------------------------------------------------------------
diff --git a/components/camel-spring/src/main/java/org/apache/camel/spring/handler/CamelNamespaceHandler.java b/components/camel-spring/src/main/java/org/apache/camel/spring/handler/CamelNamespaceHandler.java
index 5c25414..957c792 100644
--- a/components/camel-spring/src/main/java/org/apache/camel/spring/handler/CamelNamespaceHandler.java
+++ b/components/camel-spring/src/main/java/org/apache/camel/spring/handler/CamelNamespaceHandler.java
@@ -293,7 +293,7 @@ public class CamelNamespaceHandler extends NamespaceHandlerSupport {
                 // if no explicit id was set then use a default auto generated name
                 CamelContextNameStrategy strategy = new DefaultCamelContextNameStrategy();
                 contextId = strategy.getName();
-                element.setAttribute("id", contextId);
+                element.setAttributeNS(null, "id", contextId);
                 implicitId = true;
             }