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/06/26 13:34:48 UTC

git commit: CAMEL-6488: camel-netty-http. Added example for blueprint.

Updated Branches:
  refs/heads/master a70a94fd1 -> 568f008b4


CAMEL-6488: camel-netty-http. Added example for blueprint.


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

Branch: refs/heads/master
Commit: 568f008b4f614a7bb79fcb6cec6762d337805e64
Parents: a70a94f
Author: Claus Ibsen <da...@apache.org>
Authored: Wed Jun 26 13:34:41 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Wed Jun 26 13:34:41 2013 +0200

----------------------------------------------------------------------
 .../myapp-one/src/main/resources/OSGI-INF/blueprint/camel-one.xml  | 2 +-
 .../myapp-two/src/main/resources/OSGI-INF/blueprint/camel-two.xml  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/568f008b/examples/camel-example-netty-http/myapp-one/src/main/resources/OSGI-INF/blueprint/camel-one.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-netty-http/myapp-one/src/main/resources/OSGI-INF/blueprint/camel-one.xml b/examples/camel-example-netty-http/myapp-one/src/main/resources/OSGI-INF/blueprint/camel-one.xml
index a1ce86f..1f187af 100644
--- a/examples/camel-example-netty-http/myapp-one/src/main/resources/OSGI-INF/blueprint/camel-one.xml
+++ b/examples/camel-example-netty-http/myapp-one/src/main/resources/OSGI-INF/blueprint/camel-one.xml
@@ -29,7 +29,7 @@
     <route id="http-route-one">
       <from uri="netty-http:http://localhost/one?matchOnUriPrefix=true&amp;nettySharedHttpServer=#sharedNettyHttpServer"/>
       <transform>
-        <simple>Response from Camel one using thread: ${threadName}</simple>
+        <simple>Response from Camel one on route ${routeId} using thread: ${threadName}</simple>
       </transform>
     </route>
 

http://git-wip-us.apache.org/repos/asf/camel/blob/568f008b/examples/camel-example-netty-http/myapp-two/src/main/resources/OSGI-INF/blueprint/camel-two.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-netty-http/myapp-two/src/main/resources/OSGI-INF/blueprint/camel-two.xml b/examples/camel-example-netty-http/myapp-two/src/main/resources/OSGI-INF/blueprint/camel-two.xml
index c83b6eb..d951388 100644
--- a/examples/camel-example-netty-http/myapp-two/src/main/resources/OSGI-INF/blueprint/camel-two.xml
+++ b/examples/camel-example-netty-http/myapp-two/src/main/resources/OSGI-INF/blueprint/camel-two.xml
@@ -29,7 +29,7 @@
     <route id="http-route-two">
       <from uri="netty-http:http://localhost/two?matchOnUriPrefix=true&amp;nettySharedHttpServer=#sharedNettyHttpServer"/>
       <transform>
-        <simple>Response from Camel one using thread: ${threadName}</simple>
+        <simple>Response from Camel two on route ${routeId} using thread: ${threadName}</simple>
       </transform>
     </route>