Example usage for org.apache.http.impl.auth SPNegoScheme processChallenge

List of usage examples for org.apache.http.impl.auth SPNegoScheme processChallenge

Introduction

In this page you can find the example usage for org.apache.http.impl.auth SPNegoScheme processChallenge.

Prototype

public void processChallenge(final Header header) throws MalformedChallengeException 

Source Link

Document

Processes the given challenge token.

Usage

From source file:org.pentaho.di.trans.ael.websocket.SessionConfigurator.java

private Header spnegoAuthenticate(boolean stripPort, URI uri) throws Exception {
    SPNegoSchemeFactory spNegoSchemeFactory = new SPNegoSchemeFactory(stripPort);
    // using newInstance method instead of create method to be compatible httpclient library from 4.2 to 4.5
    // the create method was introduced at version 4.3
    SPNegoScheme spNegoScheme = (SPNegoScheme) spNegoSchemeFactory.newInstance(null);
    spNegoScheme.processChallenge(AUTHENTICATE_HEADER);
    return spNegoScheme.authenticate(credentials, new HttpGet(""), getContext(uri));
}