I am currently using a HTTP method for invoking some URL which will create a JIRA issue.
Now I want to use Apache Camel, how can I use that?
I need to invoke
You could easily use the CXFRS Component; if you need to do it using the HTTP Component for some reason you could easily use that as well:
http://localhost:8080/rest/api/2/project/${header.myKey}/components
And of course you will need to enrich your message with the myKey
header before getting to this part of the route.