PicketLink is an umbrella project for security and identity management for Java Applications. It is licensed under a friendly Apache v2 license. It supports Federation of authentication across a variety of schemes.
Questions tagged [picketlink]
95 questions
1
vote
1 answer
Combining PrettyFaces and PicketLink
When using PrettyFaces/Rewrite to rewrite URLs in a JSF application and PicketLink to secure it, PicketLink does not seem to use the rewriting rules.
For example, if I configure PicketLink with something like this:
builder
.http()
…

Xavier Dury
- 1,530
- 1
- 16
- 23
1
vote
1 answer
Is there a way to propagate SessionContext to a new thread (getting WELD-001303)?
there's a session scoped bean 'Identity' which I injected in a @Stateless bean which implements Runnable:
@Stateless
@LocalBean
public class Test implements Runnable {
@Inject
Identity identity;
@Inject
Logger log;
@Override
…

Oleg Khaschansky
- 296
- 3
- 10
1
vote
1 answer
PicketLink EL methods not found
we are using PicketLink 2.7 in an EE7 CDI/JSF app with Wildfly.
According to the PicketLink documentation there are some EL methods
like #{hasRole('ROLE_NAME')}. When we try to use these in an JSF page

Ben
- 1,922
- 3
- 23
- 37
1
vote
1 answer
Picketlink group permissions
How can I group the permissions using Picketlink[1] in such a way that I can assign one or more especific Groups of permissions to a Role ?
Thanks in advance.

Edwin Estévez
- 36
- 5
1
vote
0 answers
WildFly Picketlink SAML 2.0 POST-Binding AuthnRequest
I have to implement an SAML 2.0 identity provider with an WildFly server and picketlink, but I stuck at the authentication process. I followed the picketlink guide and also looked at the quickstarts on github but I still not get it working.
The…

Chris S.
- 323
- 1
- 4
- 13
1
vote
1 answer
"RunAs" Support using JBoss PicketLink?
The Java EE application we are currently finalizing makes use of JBoss PicketLink and Apache DeltaSpike for its security framework. All authentication and authorization decisions are done using these libraries. Because of our high security…

Shadowman
- 11,150
- 19
- 100
- 198
1
vote
2 answers
SAML - Service Provider could not handle the request
I am self learning SAML. I am learning using picket link quick starts: https://github.com/jboss-developer/jboss-picketlink-quickstarts.
I deployed picketlink-federation-saml-idp-basic-wildfly.war in wildfly 9.0.2 running in port 9080 and…

Ravi
- 53
- 7
1
vote
1 answer
The POM for org.picketlink.distribution:picketlink-jbas7:jar:2.8.0. is missing, no dependency information available
I'm trying to run the picketlink quickstarts from:
https://github.com/jboss-developer/jboss-picketlink-quickstarts
More…

Evin1_
- 12,292
- 9
- 45
- 47
1
vote
0 answers
JBAS011048: Failed to construct component instance in picketlink-authorization-idm-jpa-with-subsystem with WildFly 8.1.0
I'm trying to deploy the sample picketlink-authorization-idm-jpa-with-subsystem, tag v2.7.0.Final (https://github.com/jboss-developer/jboss-picketlink-quickstarts/tree/v2.7.0.Final/picketlink-authorization-idm-jpa-with-subsystem) in the WildFly…

wcomnisky
- 406
- 2
- 6
- 17
1
vote
1 answer
How to map existing JPA entities to PicketLink
I am trying to migrate a Seam 2 app to CDI and use PicketLink for security. After all the reading and researching, it seems like all the examples are having one to one mapping between PicketLink model and the backend entity. e.g. Account to…

Patrick
- 799
- 1
- 10
- 14
1
vote
1 answer
Single instance of PicketLink for multiple applications
My intention is to implement with PicketLink something similar to what Atlassian has done in Crowd.
In more detail, I want single PicketLink instance to provide authentication, authorization, SSO and IdM services to multiple Java EE applications.…

Dimitri
- 301
- 2
- 13
1
vote
0 answers
Audit log with HTTP Referer information in Wildfly with picketlink SAML Authentication
I am using WildFly 8.2.0 with Picketlink 2.7
I have application deployed running fine with SAML HTTP POST Authentication. I now have a requirement to write an audit log which contains login fail, login success, logout fail, logout success…

shivamvds
- 41
- 6
1
vote
1 answer
Getting started securing a Jax-Rs webapp in Wildfly
I have created my first Java EE 7 app with a pure jax-rs front end interface. all is tested and is working fine.
Now i want to apply a security layer (role based, applied on resources or methods). I have a clear imagination of what i want at the end…

dermoritz
- 12,519
- 25
- 97
- 185
1
vote
2 answers
Picketlink authorization annotation are not working
The problems I am facing is related to authorization,
I am granting application's role to the users in this way:
BasicModel.grantRole(relationshipManager, identity.getAccount(), role);
but when I use
hasRole(this.relationshipManager,…

Jose Yances
- 11
- 1
1
vote
1 answer
Where are user roles stored in picketlink's tables when using JPA?
I'm using Picketlink (2.6.0.Final) with JPA (using Postgresql) for persistence. I have also implemented an initializer with the following basis:
@Singleton
@Startup
public class Initialiser {
@Inject
private PartitionManager…

JWL
- 13,591
- 7
- 57
- 63