2

在使用 simplesamlphp 作为服务提供者成功接收 SAML 2.0 令牌后,我收到以下错误。

 Oct 21 17:30:15 simplesamlphp DEBUG [6b6e3c270f] GenerateGroups - attribute 'eduPersonAffiliation' not found.
    Oct 21 17:30:15 simplesamlphp DEBUG [6b6e3c270f] Session: doLogin("default-sp")
    Oct 21 17:30:15 simplesamlphp WARNING [6b6e3c270f] Unable to find the SAML 2 binding used for this request.
    Oct 21 17:30:15 simplesamlphp WARNING [6b6e3c270f] Request method: 'GET'
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] SimpleSAML_Error_Error: UNHANDLEDEXCEPTION
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] Backtrace:
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] 0 /var/www/simplesamlphp/www/module.php:180 (N/A)
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] Caused by: Exception: Unable to find the current binding.
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] Backtrace:
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] 2 /var/www/simplesamlphp/lib/SAML2/Binding.php:95 (SAML2_Binding::getCurrentBinding)
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] 1 /var/www/simplesamlphp/modules/saml/www/sp/saml2-acs.php:11 (require)
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] 0 /var/www/simplesamlphp/www/module.php:135 (N/A)
    Oct 21 17:30:15 simplesamlphp ERROR [6b6e3c270f] Error report with id bd213fb5 generated.

我的 SP 是这样设置的:

**authsources.php**

    'default-sp' => array(
        'saml:SP',
        'entityID' => NULL,
        'idp' => NULL,
        'discoURL' => NULL,
        'RelayState' => '{link to my application}',
        'acs.Bindings' => array(
            'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
            'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
        ),
    ),

saml20-idp-remote.php

$metadata['https://{idp entity id}'] = array(
    'metadata-set' => 'saml20-idp-remote',
    'entityid' => 'https://{idp entity id}',
    'name' => array(
        'en' => 'IDP Name',
        'no' => 'IDP name',
    ),
    'description'  => 'IDP desc',
    'SingleSignOnService' => 
      array (
        0 => 
        array (
          'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
          'Location' => '{SSO url}',
        ),
        1 =>
        array(
          'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact',
          'Location' => '{SSO url}',
        ),
      ),
    'SingleLogoutService'  => '{SLO url}',
    'certFingerprint' => '{the fingerprint}',
);

我对单点登录很陌生。为了保密,我还隐藏了网址,但我不确定我是否遗漏了某些内容或导致此错误发生的原因。如果有人能帮助我指出正确的方向,那将不胜感激。我还应该提到我正在尝试使用https://drupal.org/project/simplesamlphp_auth来连接我的应用程序。

这是 IDP 优先流程。我使用 mysql 来存储会话。

4

2 回答 2

5

" Unable to find the current binding." 的确切含义是,无法确定当前绑定。您的 saml20-idp-remote.php 提到了 HTTP-POST 绑定,并且您的日志中提到Request method: 'GET'了 ,因此在发布到https://…/module.php/saml/sp/saml2-acs.php/default-sp.

我只是在这里做一个疯狂的猜测,但根据我的经验,最常见的原因是重定向 Web 服务器。也许您重定向到不同的主机名?你强制HTTPS吗?检查 IdP,确保AssertionConsumerService的 URL正确 - 它们应直接指向 SimpleSamlPhp,无需任何重定向。

于 2014-03-03T17:52:22.237 回答
1

我面临同样的情况。

saml 实体在 apache 配置中指向 www.mysite.com,我们使用重定向代码 301 将 www.mysite.com 重定向到 mysite.com,在更改为重定向代码 307 以保留 get 和 post 变量后,它开始正常工作。

谢谢, 阿努巴夫

于 2016-05-06T12:10:36.260 回答