我正在尝试在我的应用中实施WSO2 SSO。我成功尝试了示例应用程序。
我用spring mvc创建了一个小例子。我的问题是,请求转到WSO2服务器并重定向回来,但没有成功。我正在检查返回网址中的结果,但SSOAgentSessionBean
始终为空。
SSOAgentSessionBean bean = (SSOAgentSessionBean)request.getSession().getAttribute(SSOAgentConfigs.getSessionBeanName());
我添加了过滤器(也强制重定向)。这有效:
<filter>
<filter-name>SSOFilter</filter-name>
<filter-class>org.wso2.carbon.identity.sso.agent.SSOAgentFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>SSOFilter</filter-name>
<url-pattern>/loginarea/*</url-pattern>
</filter-mapping>
所以我的问题是: 我怎么知道为什么反向重定向的结果失败了?我可以启用任何日志吗?
问候 利昂
答案 0 :(得分:0)
试试这个..
在/ repository / conf文件夹更改
上的log4j.propertieslog4j.logger.org.wso2 = INFO to DEBUG
您可以在下面的文章中获得更多详细信息
http://soasecurity.org/2014/02/26/how-to-wso2is-troubleshooting-wso2-identity-server-1/