On Mon, 2010-02-08 at 02:15 -0800, mleiria wrote:
> Hello,
> I'm facing the next problem: 
> I'm trying to consume a web service kerberized from iis. The problem is that
> the iis administrators don't want the mechanism fall back to ntlm so de
> "disabled" ntlm, which means that the authentication header is returning
> "kerberos" instead of "Negotiate". and the http client is not working. Does
> anyone developed some solution like this?
> 
> thanks in advance,
> mleiria

Try registering NegotiateSchemeFactory for 'kerberos' auth scheme and
see if you get lucky

DefaultHttpClient httplclient = new DefaultHttpClient();
httplclient.getAuthSchemes().register("kerberos", new
NegotiateSchemeFactory());

Oleg


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to