I have to call to a service with NTLM authentication (I think is the same as Kerberos) with Spring RestTemplate services. Someone knows how I could do that?
P.D: Sorry for my english.
Thanks...
I have to call to a service with NTLM authentication (I think is the same as Kerberos) with Spring RestTemplate services. Someone knows how I could do that?
P.D: Sorry for my english.
Thanks...
Copyright © 2021 Jogjafile Inc.
While
RestTemplate
can be configured to use Apache HttpClient it uses thejava.net
classes by default (e.g.URLConnection
).The following code is untested but "should work"