我正在使用 Apache Camel 2.19,并且在使用开箱即用的支持 NTLMv1 的 camel-http 模块调用我的端点时可以使用 NTLMv1:
from("activemq:{{queue.feedback}}")
.to("http://localhost:8888/ntlm/secured?authMethodPriority=NTLM
&authMethod=NTLM&authUsername=Zaphod
&authPassword=Beeblebrox&authDomain=Minor
&authHost=LightCity")
问题是我不知道如何使用 NTLMv2 发出请求。官方文档指出:
注意:camel-http 基于 HttpClient v3.x,因此对 NTLMv1(NTLM 协议的早期版本)的支持有限。它根本不支持 NTLMv2。camel-http4 支持 NTLMv2。
当我尝试使用 camel-http4 时,它什么也不做:
from("activemq:{{queue.feedback}}")
.to("http4://localhost:8888/ntlm/secured?authMethodPriority=NTLM
&authMethod=NTLM&authUsername=Zaphod
&authPassword=Beeblebrox&authDomain=Minor
&authHost=LightCity")
似乎骆驼http4根本不知道NTLM。我试图在 GitHub 上调查 camel-http4 存储库,除了文档之外我找不到任何与 NTLM 相关的内容。
关于如何在 Camel 2.19 中使用 NTLMv2 的任何想法(其他版本的 Camel 可能也很合适)?