<?php

/**
 * This page serves as the point where the user's authentication
 * process is resumed after the "(pre)auth" page.
 *
 * It simply passes control back to the class.
 *
 * @package SimpleSAMLphp
 */
sspmod_negotiateserver_Auth_Source_Negotiate::resume();
<?php

/**
 * This page serves as a fallback page for when "HTTP Negotiate"
 * authentication fails (unsupported, wrong credentials...).
 *
 * @package SimpleSAMLphp
 */
$state = SimpleSAML_Auth_State::loadState($_REQUEST['State'], 'negotiateserver:Negotiate');
SimpleSAML\Logger::debug('Negotiate Server: initiating fallback auth source');
sspmod_negotiateserver_Auth_Source_Negotiate::fallback($state);