-
Type:
Bug
-
Status: Resolved
-
Priority:
Minor
-
Resolution: Abandoned
-
Affects Version/s: 3.0.1
-
Fix Version/s: None
-
Component/s: camel-http, karaf
-
Labels:None
-
Estimated Complexity:Unknown
See below a route that calls an endpoint with NTLM auth.
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 https://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd" xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0"> <camelContext xmlns="http://camel.apache.org/schema/blueprint"> <route> <from uri="timer:default?period=0&repeatCount=1" /> <setHeader name="CamelHttpMethod"> <constant>GET</constant> </setHeader> <to uri="http://host?authMethod=NTLM&authDomain=xxx&authHost=xxx&authUsername=xxx&authPassword=xxx&throwExceptionOnFailure=false" /> </route> </camelContext> </blueprint>
When starting the route than I'm getting an error (Camel WARN)
2020-04-23T22:36:31,980 | WARN | qtp711860658-153 | HttpAuthenticator | 164 - org.apache.httpcomponents.httpclient - 4.5.10 | NEGOTIATE authentication error: Invalid name provided (Mechanism level: KrbException: Cannot locate default realm)