how to route in SpringRouteBuilder to a dynamic uri contained in Camelhttpquery?
I am pretty new at Apache Camel and do not find an elegant way to solve my problem.
I am getting an incoming request as follows:
servlet:/services?http:///services?param1=value1¶m2=value2…
I want to dynamically route to
http:///services?param1=value1¶m2=value2…
When the uri servlet:/services is "detected" (from)
I can extract the endrequest from header("CamelHttpQuery") but I don't figure out how to use it for the forwarding. Here is the implementation I tried but it doesn't work:
public class Routes extends SpringRouteBuilder {
@Override
public void configure() throws Exception {
this.from("servlet://{{path.directory.service}}?matchOnUriPrefix=true").beanRef("filterPolicy", "canAccess")
.recipientList(this.header("CamelHttpQuery")).removeHeaders("CamelHttp*")
}
}
dynamic apache-camel uri
add a comment |
I am pretty new at Apache Camel and do not find an elegant way to solve my problem.
I am getting an incoming request as follows:
servlet:/services?http:///services?param1=value1¶m2=value2…
I want to dynamically route to
http:///services?param1=value1¶m2=value2…
When the uri servlet:/services is "detected" (from)
I can extract the endrequest from header("CamelHttpQuery") but I don't figure out how to use it for the forwarding. Here is the implementation I tried but it doesn't work:
public class Routes extends SpringRouteBuilder {
@Override
public void configure() throws Exception {
this.from("servlet://{{path.directory.service}}?matchOnUriPrefix=true").beanRef("filterPolicy", "canAccess")
.recipientList(this.header("CamelHttpQuery")).removeHeaders("CamelHttp*")
}
}
dynamic apache-camel uri
add a comment |
I am pretty new at Apache Camel and do not find an elegant way to solve my problem.
I am getting an incoming request as follows:
servlet:/services?http:///services?param1=value1¶m2=value2…
I want to dynamically route to
http:///services?param1=value1¶m2=value2…
When the uri servlet:/services is "detected" (from)
I can extract the endrequest from header("CamelHttpQuery") but I don't figure out how to use it for the forwarding. Here is the implementation I tried but it doesn't work:
public class Routes extends SpringRouteBuilder {
@Override
public void configure() throws Exception {
this.from("servlet://{{path.directory.service}}?matchOnUriPrefix=true").beanRef("filterPolicy", "canAccess")
.recipientList(this.header("CamelHttpQuery")).removeHeaders("CamelHttp*")
}
}
dynamic apache-camel uri
I am pretty new at Apache Camel and do not find an elegant way to solve my problem.
I am getting an incoming request as follows:
servlet:/services?http:///services?param1=value1¶m2=value2…
I want to dynamically route to
http:///services?param1=value1¶m2=value2…
When the uri servlet:/services is "detected" (from)
I can extract the endrequest from header("CamelHttpQuery") but I don't figure out how to use it for the forwarding. Here is the implementation I tried but it doesn't work:
public class Routes extends SpringRouteBuilder {
@Override
public void configure() throws Exception {
this.from("servlet://{{path.directory.service}}?matchOnUriPrefix=true").beanRef("filterPolicy", "canAccess")
.recipientList(this.header("CamelHttpQuery")).removeHeaders("CamelHttp*")
}
}
dynamic apache-camel uri
dynamic apache-camel uri
edited Jan 1 at 23:12
dferenc
4,711122231
4,711122231
asked Jan 1 at 20:59
user3232312user3232312
62
62
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There is toD method for dynamic endpoint
http://camel.apache.org/message-endpoint.html
F.e. I have this working code for dynamic uri
<setHeader headerName="customerId">
<ognl>request.body.customerId</ognl>
</setHeader>
<setBody><constant></constant></setBody>
<setHeader headerName="CamelHttpMethod">
<constant>GET</constant>
</setHeader>
<toD uri="http4://localhost:9292/score/customer/${header.customerId}?bridgeEndpoint=true"/>
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53998893%2fhow-to-route-in-springroutebuilder-to-a-dynamic-uri-contained-in-camelhttpquery%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is toD method for dynamic endpoint
http://camel.apache.org/message-endpoint.html
F.e. I have this working code for dynamic uri
<setHeader headerName="customerId">
<ognl>request.body.customerId</ognl>
</setHeader>
<setBody><constant></constant></setBody>
<setHeader headerName="CamelHttpMethod">
<constant>GET</constant>
</setHeader>
<toD uri="http4://localhost:9292/score/customer/${header.customerId}?bridgeEndpoint=true"/>
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
add a comment |
There is toD method for dynamic endpoint
http://camel.apache.org/message-endpoint.html
F.e. I have this working code for dynamic uri
<setHeader headerName="customerId">
<ognl>request.body.customerId</ognl>
</setHeader>
<setBody><constant></constant></setBody>
<setHeader headerName="CamelHttpMethod">
<constant>GET</constant>
</setHeader>
<toD uri="http4://localhost:9292/score/customer/${header.customerId}?bridgeEndpoint=true"/>
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
add a comment |
There is toD method for dynamic endpoint
http://camel.apache.org/message-endpoint.html
F.e. I have this working code for dynamic uri
<setHeader headerName="customerId">
<ognl>request.body.customerId</ognl>
</setHeader>
<setBody><constant></constant></setBody>
<setHeader headerName="CamelHttpMethod">
<constant>GET</constant>
</setHeader>
<toD uri="http4://localhost:9292/score/customer/${header.customerId}?bridgeEndpoint=true"/>
There is toD method for dynamic endpoint
http://camel.apache.org/message-endpoint.html
F.e. I have this working code for dynamic uri
<setHeader headerName="customerId">
<ognl>request.body.customerId</ognl>
</setHeader>
<setBody><constant></constant></setBody>
<setHeader headerName="CamelHttpMethod">
<constant>GET</constant>
</setHeader>
<toD uri="http4://localhost:9292/score/customer/${header.customerId}?bridgeEndpoint=true"/>
answered Jan 2 at 9:38
kolchanovkolchanov
1,54421129
1,54421129
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
add a comment |
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
thanks for your reply. it was someting i was considering but i am having problem using it with Java DSL. if you have any idea how to implement it. the point is that the uri i want to forward to is contained in CamelHttQuery. i would really appreciate any help. thanks in advance.
– user3232312
Jan 3 at 21:27
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53998893%2fhow-to-route-in-springroutebuilder-to-a-dynamic-uri-contained-in-camelhttpquery%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown