我正在使用 WSO2 UES 服务器。我写了一个粗糙的仪表板应用程序并且工作正常。将 jaggery 应用程序移植到另一个 UES 服务器时,我必须手动注册 SAML sso。手动配置后我就可以访问了。有什么办法可以自动化吗?
问问题
66 次
1 回答
1
是的,您可以配置为自动执行此操作。转到 /repository/conf/ 并在文件 sso-idp-config.xml 中添加以下配置。
<ServiceProvider>
<Issuer>MyApp</Issuer>
<AssertionConsumerService>http://x.x.x.x:9763/MyApp/sso.jag</AssertionConsumerService>
<CustomLoginPage>ssoApp/login_processor.jag</CustomLoginPage>
</ServiceProvider>
但这根本不推荐。
于 2013-09-23T16:01:57.397 回答