我使用下面的代码来获取我的凭据,它在IE中很好用, 为什么它不能在mozilla中工作。
SecurityContextImpl obj = (SecurityContextImpl) session
.getAttribute("SPRING_SECURITY_CONTEXT");
SAMLCredential credential = (SAMLCredential) obj.getAuthentication()
.getCredentials();
如果有任何身体遇到这样的情况。 我正在使用Spring SAML
答案 0 :(得分:1)
已解决为responseSkew我正在使用默认的60以下更改帮助
<bean id="webSSOprofileConsumer" class="org.springframework.security.saml.websso.WebSSOProfileConsumerImpl"> <property name="responseSkew" value="600"/> <!-- 10 minutes --> </bean>