我正在尝试使用 samltest.id IdP 配置 Shibboleth SP。我的设置如下:
Windows Server 2008 R2、IIS7.5、Shibboleth SP 3.0
我几乎一切正常 - 当尝试访问受保护的页面时,它正确地将用户重定向到 samltest 页面,并且 samltest 吐回正确的“Web 登录服务 - 不支持的请求”错误,因为我没有配置我的 SP测试。
我尝试使用https://samltest.id/upload.php上传我的配置,但此时我碰壁了。fetch 选项根本不起作用,我确信这是因为根本没有生成元数据文件。尝试从 https://{MySite}/Shibboleth.sso/Metadata 生成所述文件会出现 500 错误,我无法在任何地方找到任何信息来告诉我为什么会发生这种情况。
我检查了 Windows 事件查看器、IIS 日志文件、shibd 日志文件 - 没有任何迹象表明我做错了什么。
这是我的 shibboleth.xml 文件的精简版本,以防我遗漏了一些明显的东西:
<SPConfig xmlns="urn:mace:shibboleth:3.0:native:sp:config" xmlns:conf="urn:mace:shibboleth:3.0:native:sp:config" clockSkew="180">
<OutOfProcess tranLogFormat="%u|%s|%IDP|%i|%ac|%t|%attr|%n|%b|%E|%S|%SS|%L|%UA|%a" />
<InProcess>
<ISAPI normalizeRequest="true" safeHeaderNames="true">
<Site id="{MySiteID}" name="{MySite}" scheme="https" port="443"/>
</ISAPI>
</InProcess>
<RequestMapper type="Native">
<RequestMap>
<Host name="{MySite}">
<Path name="content" authType="shibboleth" requireSession="true"/>
</Host>
</RequestMap>
</RequestMapper>
<ApplicationDefaults entityID="https://{MySite}/shibboleth" REMOTE_USER="eppn subject-id pairwise-id persistent-id" cipherSuites="DEFAULT:!EXP:!LOW:!aNULL:!eNULL:!DES:!IDEA:!SEED:!RC4:!3DES:!kRSA:!SSLv2:!SSLv3:!TLSv1:!TLSv1.1">
<Sessions lifetime="28800" timeout="3600" relayState="ss:mem" checkAddress="true" handlerSSL="true" cookieProps="https">
<SSO entityID="https://samltest.id/saml/idp">SAML2</SSO>
<Logout>SAML2 Local</Logout>
</Sessions>
<Errors supportContact="{MyEmail}" helpLocation="/error.aspx" styleSheet="/styles/style.css"/>
<MetadataProvider type="XML" validate="true" url="https://samltest.id/saml/idp" backingFilePath="SAMLtest.xml"></MetadataProvider>
<AttributeExtractor type="XML" validate="true" reloadChanges="false" path="attribute-map.xml"/>
<AttributeFilter type="XML" validate="true" path="attribute-policy.xml"/>
<CredentialResolver type="File" use="signing" key="sp-signing-key.pem" certificate="sp-signing-cert.pem"/>
<CredentialResolver type="File" use="encryption" key="sp-encrypt-key.pem" certificate="sp-encrypt-cert.pem"/>
</ApplicationDefaults>
<SecurityPolicyProvider type="XML" validate="true" path="security-policy.xml"/>
<ProtocolProvider type="XML" validate="true" reloadChanges="false" path="protocols.xml"/>
如果有人对我可以看的地方有任何建议,我会喜欢的。