我的手在WSO2 UES服务器上。我写了一个jaggery仪表板应用程序,运行良好。当将jaggery应用程序移植到另一个UES服务器时,我必须手动注册SAML。在手动配置之后,我能够访问。有什么方法可以自动完成这个任务吗?
发布于 2013-09-23 16:01:57
是的,您可以将其配置为自动化。转到/sso/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>但这是完全不推荐的。
https://stackoverflow.com/questions/18963765
复制相似问题