Reputation: 323
The camel http component allows you to set proxy at the route level as options, or also at the context level.
getContext().globalOptions().put("http.proxyHost", "172.168.18.9");
getContext().globalOptions().put("http.proxyPort" "8080");
The camel azure blob component also internally makes an https call. But there is no way to set proxy at URI level like the http component. Setting the proxy in system properties works. But we were wondering, if it would be feasible to support this as the component options.
Upvotes: 0
Views: 148
Reputation: 1656
Actually it's not possible: https://github.com/apache/camel/blob/master/components/camel-azure/src/main/docs/azure-blob-component.adoc
We can think about adding option like this one.
Upvotes: 2