You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "dilip vedula (JIRA)" <ji...@apache.org> on 2013/01/08 11:30:12 UTC

[jira] [Commented] (HTTPCLIENT-1293) proxy with kerberos auth is not woking

    [ https://issues.apache.org/jira/browse/HTTPCLIENT-1293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13546762#comment-13546762 ] 

dilip vedula commented on HTTPCLIENT-1293:
------------------------------------------

the issue is in the GGSSchemeBase.java

my change is 

case TOKEN_GENERATED:
            String tokenstr = new String(base64codec.encode(token));
            if (log.isDebugEnabled()) {
                log.debug("Sending response '" + tokenstr + "' back to the auth server");
            }
            if(isProxy())
            {
            	return new BasicHeader(AUTH.PROXY_AUTH_RESP, "Negotiate " + tokenstr);	
            }else{
            	return new BasicHeader(AUTH.WWW_AUTH_RESP, "Negotiate " + tokenstr);	
            }
                
> proxy with kerberos auth is not woking
> --------------------------------------
>
>                 Key: HTTPCLIENT-1293
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1293
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>          Components: HttpAuth, HttpClient
>    Affects Versions: 4.2.2
>            Reporter: dilip vedula
>              Labels: auth, kerberos, proxy
>
> client not able to get through proxy which is supporting only kerberos AUTH.
> same issue mentioned by some one else in this link http://permalink.gmane.org/gmane.comp.apache.httpclient.user/1594

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org