I am using WCF webservice in android... i\'ve to authenticate the user with windows authentication Here\'s my java code
public void test3()
{
try
(The OP answered by posting a web link. Converted to a Community Wiki Answer; Question with no answers, but issue solved in the comments (or extended in chat) )
The link was: http://mrrask.wordpress.com/2009/08/21/android-authenticating-via-ntlm/
A summary of which is:
It uses an HttpClient which needs an AuthScemeFactory that will return the AuthScheme descendant NTLMScheme. NTLMScheme requires an implementation of the NTLMEngine interface to operate on. The JCIFS library has functionality for creating type 1 2 & 3 NTLM messages making it a perfect candidate for implementing the NTLMEngine.