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
8
votes
3 answers
Validating a signature without intermediate certificate
Is it possible to validate a signature only having an ancestor or root certificate in the hierarchy?
Disclaimer: I'm a newbie to the certificates handling so please forgive the naive terminology.
Consider the following situation.
We have two…

lexicore
- 42,748
- 17
- 132
- 221
7
votes
1 answer
@PicketLink annotated class is not used in identity.login()
I'm trying to use an @PicketLinked class that extends the BaseAuthenticator.
My set-up is an ear project on wildfly 9.0.2.Final.
I'm using this in my jboss-deployment-structure.xml
…

gadeynebram
- 725
- 2
- 6
- 22
5
votes
0 answers
How to force global logout JBOSS/SSO from code?
I am using SSO in JBoss on IDP with Picketlink, don't have a lot of experience with enterprise java security, what I need to do is to force global log out for user on some event or timeout. For example user started form, but didn't feel it in 5…

Alexander Ponomarenko
- 559
- 3
- 8
4
votes
0 answers
validate signature for saml2 response redirect java sha256 encryption
I'm trying to validate SAML response in order to redirect the client to appropriate page. Here is my Servlet:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String samlParam…

Emrah Mehmedov
- 1,492
- 13
- 28
4
votes
1 answer
PicketLink - NoClassDefFound: org/picketlink/idm/config/StoreConfiguration
I'm beginning to migrate my Seam 2.3 app over to JavaEE 6, and as part of that will be using PicketLink 2.5.0 and PicketBox 5.0 for security, particularly the IDM component. I'm trying to make use of the JPA Identity Store, and have created my own…

Shadowman
- 11,150
- 19
- 100
- 198
3
votes
0 answers
Picketlink with custom model and long Id
I have a existing Model and want to use it with Picketlink. But I am using Long as @Id field. But Picketlink expect this to be a String field. I have found some hints to use another entity which maps to the corresponding entity of my model. But…

Georg Leber
- 3,470
- 5
- 40
- 63
3
votes
0 answers
Trouble setting up Arquillian tests for Wildfly app with Picketlink
I'm trying to write Arquillian tests for a web app to be deployed on Wildfly using Picketlink. My setup worked before I added Picketlink and it looks like I can package and deploy my application without any tests (it doesn't work which is why I want…

Lev Kuznetsov
- 3,520
- 5
- 20
- 33
3
votes
1 answer
SAML Service Provider on JBoss EAP 7.0
I am trying to use JBoss EAP 7.0 as a SAML Service Provider, have it "mostly" configured but am having problems at the last step when the application I've deployed as the SP is throwing a 403. I'm having trouble getting debug logs out of…

Richard Sand
- 642
- 6
- 20
3
votes
0 answers
ModeShape with PicketLink security?
We have standardized on JBoss PicketLink as our Authentication, Authorization, and Identity Management framework and use it throughout our enterprise applications. Now, we would like to integrate JBoss ModeShape as a content management repository…

Shadowman
- 11,150
- 19
- 100
- 198
3
votes
1 answer
PicketLink / Deltaspike security does not work in SOAP (JAX-WS) layer (CDI vs EJB?)
I am long time Spring user, now had to switch to Java EE only. There are many things that just don't work as expected...
I have a CXF / SOAP service
@WebService( ... )
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface…

mszalinski
- 41
- 5
3
votes
1 answer
Picketlink not picking my user defined authenticator
I'm trying to implement JSF authentication with PickeLink 2.6.0 (EAR, Wildfly 8.1.0), as shown in the PicketLink 'picketlink-authentication-jsf' quickstart. I provided an authentication marked with the @PicketLink annotation, but Identity.login()…

jpangamarca
- 713
- 2
- 13
- 33
2
votes
1 answer
"pl00092": Null Value:No assertions in reply from IDP
I have configured ADFS 3.0 with my JBoss 6.1.0_final which using JDK6
The setup is successful and when I access application URL it redirects me to adfs page. After successful login in adfs it redirect to my application URL, Here error I encountered…

Hitesh Ghuge
- 793
- 2
- 10
- 39
2
votes
1 answer
Picketlink with WildFly 10
I am trying to use PicketLink in my Java EE 7 application. So far the projects compile without errors. But when I try to deploy the application on WildFly 10 it stops with following exception:
Caused by: java.lang.NoClassDefFoundError:…

Georg Leber
- 3,470
- 5
- 40
- 63
2
votes
1 answer
Picketlink custom relationship duplicate record on DB
I'have builded a custom relationship to allow Account to open a Module. So i copied org.picketlink.idm.model.basic.Grant and renamed it.
The relationship is created successfully, the database tables are created, but when the relationship is stored…

Daniele Licitra
- 1,520
- 21
- 45
2
votes
0 answers
Custom picketlink identity store (using JOOQ)
I want to implement authentication with Picketlink in my application, but I am not using JPA (instead, I'm using JOOQ). Is there any way to acquire user data using generated daos?
I couldn't find it out by reading documentation or looking at…

Nevaan
- 129
- 2
- 11