Remember Camel run as a war is just a servlet so any of the standard means for securing a servlet will also be applicable to the camel servlet. Most of these involve changes to the web.xml. When it comes to running it in Karaf or ServiceMix, again the configurations of those host platforms are where you would specify things like security constraints and so on. Authorization is another matter, you can, of course, secure authorization at a servlet URL level using the standard mechanisms but if you need to apply those constraints within the route rather than at API level then you may have to pick up headers from incoming requests and deal with them in the route.
*Robert Simmons Jr. MSc. - Lead Java Architect @ EA* *Author of: Maintainable Java (Kindle <http://www.amazon.com/Maintainable-Java-Robert-Simmons-Jr-ebook/dp/B00AKHI69K>)(iTunes <https://itunes.apple.com/us/book/maintainable-java/id585666097?mt=11>)* *LinkedIn: **http://www.linkedin.com/pub/robert-simmons/40/852/a39 <http://www.linkedin.com/pub/robert-simmons/40/852/a39>* On Thu, Jun 26, 2014 at 10:12 AM, Christian Müller < [email protected]> wrote: > HTTPS, HTTP BASIC AUTH, WS-SECURITY, ... > You has multiple possibilities. > > Best, > Christian > Am 26.06.2014 12:45 schrieb "Royamit" <[email protected]>: > > > Hi all, > > > > I am new to camel and right now i am working on proxy creation using > Apache > > Camel. Now i want to secure this proxy service of mine. but i can't find > > anything on it. Please help me on this. Looking forward to your > solutions. > > Thanks in advance > > > > > > > > -- > > View this message in context: > > > http://camel.465427.n5.nabble.com/How-to-secure-camel-proxy-project-tp5752845.html > > Sent from the Camel - Users mailing list archive at Nabble.com. > > >
