| Summary: | Web SSO does not work for distributed PicketLink Service Provider | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Ondrej Kotek <okotek> | ||||||||
| Component: | PicketLink | Assignee: | jboss-set | ||||||||
| Status: | CLOSED WONTFIX | QA Contact: | Ondrej Kotek <okotek> | ||||||||
| Severity: | medium | Docs Contact: | |||||||||
| Priority: | unspecified | ||||||||||
| Version: | 6.4.7 | CC: | anmiller, bdawidow, psilva, pskopek | ||||||||
| Target Milestone: | --- | ||||||||||
| Target Release: | --- | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Whiteboard: | |||||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||||
| Doc Text: | Story Points: | --- | |||||||||
| Clone Of: | Environment: | ||||||||||
| Last Closed: | 2019-03-01 12:28:49 UTC | Type: | Bug | ||||||||
| Regression: | --- | Mount Type: | --- | ||||||||
| Documentation: | --- | CRM: | |||||||||
| Verified Versions: | Category: | --- | |||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||
| Attachments: |
|
||||||||||
|
Description
Ondrej Kotek
2016-04-13 13:23:05 UTC
Created attachment 1146852 [details]
sp.war for EAP1
Created attachment 1146853 [details]
sp.war for EAP2
Created attachment 1146854 [details]
idp.war for EAP3
To start EAP instances from EAP_HOME:
cp -r standalone standalone1; cp -r standalone standalone2; cp -r standalone standalone2
bin/standalone.sh -c standalone-ha.xml -Djboss.server.base.dir=`pwd`/standalone1 -Djboss.node.name=host1
bin/standalone.sh -c standalone-ha.xml -Djboss.server.base.dir=`pwd`/standalone2 -Djboss.node.name=host2 -Djboss.socket.binding.port-offset=200
bin/standalone.sh -Djboss.server.base.dir=`pwd`/standalone3 -Djboss.node.name=host3 -Djboss.socket.binding.port-offset=300
CLI commands for security domains:
/subsystem=security/security-domain=idp:add(cache-type=default)
/subsystem=security/security-domain=idp/authentication=classic:add
/subsystem=security/security-domain=idp/authentication=classic/login-module=UsersRoles:add(code=UsersRoles, flag=required, module-options=[("usersProperties"=>"users.properties"), ("rolesProperties"=>"roles.properties")])
/subsystem=security/security-domain=sp:add(cache-type=default)
/subsystem=security/security-domain=sp/authentication=classic:add
/subsystem=security/security-domain=sp/authentication=classic/login-module=org.picketlink.identity.federation.bindings.jboss.auth.SAML2LoginModule:add(code=org.picketlink.identity.federation.bindings.jboss.auth.SAML2LoginModule, flag=required)
CLI command for EAP1 and EAP2 to enable Web SSO:
/subsystem=web/virtual-server=default-host/sso=configuration:add(cache-container="web", cache-name="sso")
|