Hi,
I'm trying to intercept the following https endpoint using the
camel:interceptSendToEndpoint component :
<camel:to
uri="https4://endpoint?sslContextParametersRef=sslContextParameters&throwExceptionOnFailure=false&proxyAuthScheme={{app.proxy.authScheme}}&proxyAuthHost={{app.proxy.authHost}}&proxyAuthPort={{app.proxy.authPort}}&proxyAuthUsername={{app.proxy.authUsername}}&proxyAuthDomain={{app.proxy.authDomain}}&proxyAuthPassword={{app.proxy.authPassword}}&proxyAuthNtHost={{app.proxy.authNtHost}}"
/>
(the app.proxy things are being fetched from a properties file and they work
fine when not intercepted).
Unfortunately, intercepting this endpoint doesn't work. If I remove the
proxy parameters from the endpoint and change it to this :
<camel:to
uri="https4://endpoint?sslContextParametersRef=sslContextParameters&throwExceptionOnFailure=false"
/>
I am able to intercept it just fine using the camel:interceptSendToEndpoint.
--
View this message in context:
http://camel.465427.n5.nabble.com/Intercepting-https-endpoints-with-proxy-config-not-working-tp5727571.html
Sent from the Camel - Users mailing list archive at Nabble.com.