932 questions
2
votes
0
answers
80
views
Zombie session after expiring cookies using Java Servlets
I have inherited some JAX-RS code with a logout function that appears to be properly "logging out" the user by redirecting to the login page, invalidating the session, and expiring the ...
0
votes
1
answer
61
views
Load multiple domains in ActiveMQ with jaasAuthenticationPlugin
I'm using ActiveMQ Classic and I load users dynamically via a service that updates the users.properties file in my ActiveMQ installation. I use the org.apache.activemq.jaas.PropertiesLoginModule with ...
1
vote
0
answers
493
views
Apache Kafka SASL/OAUTHBEARER with Keycloak – “An internal error occurred while retrieving token from callback handler”
I’m trying to configure Apache Kafka 3.8.0 in KRaft mode to use Keycloak 26.1.1 for authentication via SASL/OAUTHBEARER. My Keycloak realm is named Kafka-Auth, and I have a confidential client called ...
0
votes
0
answers
526
views
How to fix: Could not find a 'KafkaClient' entry in the JAAS configuration?
This is the exception I got when I try to send message in my topic on confluent cloud
Caused by: org.apache.kafka.common.KafkaException: Failed to create new NetworkClient
at org.apache.kafka....
0
votes
1
answer
116
views
ClassNotFoundException occurs with custom LoginModule in Open Liberty after migration
I am attempting to use a custom LoginModule (which implements LoginModule) in Open Liberty. This setup previously worked in WebSphere and JBoss environments, but after migrating to Open Liberty with ...
0
votes
1
answer
615
views
Kafka authentication with scram 512 and KRAFT mode doesn't work
Kafka authentication with scram 512 and KRAFT mode doesn't work. My docker compose looks like this.
services:
kafka-1:
image: confluentinc/cp-kafka:7.7.1
ports:
- '9092:9092'
...
1
vote
1
answer
343
views
ActiveMQ Artemis JAAS LDAP - logged-in user has no access to anything
I'm trying to add LDAP sign in feature to ActiveMQ Artemis instance
I've set my login.config like this:
activemq {
org.apache.activemq.artemis.spi.core.security.jaas.LDAPLoginModule sufficient
...
0
votes
0
answers
214
views
Having problem with canonicalization while doing kerberos authentication in websphere
hostname cannonicalization resolves ip instead of hostname for IBM websphere server.
I can have ticket manually using kinit within the server with my keytab file but the application gives error while ...
0
votes
0
answers
95
views
Filenet API stalling from Peoplesoft
We just installed new version of Peoplesoft. The Java version went from 1.8 to Java 11.
The Java Filenet P8 API was working on the server, but it stalling at the createSubject. Nothing is showing on ...
0
votes
1
answer
237
views
Unable to access FileNet CE from BAW
I am unable to access FileNet CE from Java Service in BAW Process.
When we connect without a stanca, we get
"The user is not authenticated. There is no LoginModule associated with FileNetP8"....
0
votes
0
answers
59
views
How does the tomcat servlet container know if authentication succeeds?
I am failing to create custom login modules because I don't understand how the tomcat servlet container works. I have a web.xml with security-constraints, auth-constraints, url-patterns, etc. When I ...
1
vote
1
answer
136
views
Search users in a group - Jetty JAAS LDAP
I am using Jetty's LDAP Login Module to connect to an internal LDAP server. The LDAPLoginModule configuration (ldap-loginModule.conf) is provided as below:
ldap {
org.eclipse.jetty.jaas.spi....
0
votes
1
answer
3k
views
Could not find a 'Kafka Client' entry in the JAAS configuration
Firstly, we are trying to send the Kafka messages using this JMeter for sasl_ssl enabled Kafka. So, For that purpose we have created a thread group(https://i.sstatic.net/N9wzj.png) in that we have ...
1
vote
0
answers
36
views
Tomcat Authentication Request
Quick Question: Does Tomcat authentication (JAAS) maintain the HttpRequest object throughout the authentication process?
For example, let's say the request has an attribute id. Is this attribute ...
0
votes
1
answer
932
views
Authentication with SASL using JAAS VS librdkafka oAuthBearer
We have a kafkaProducer cpp application, which will send data to kafkaBrokers which are configured to authenticate using JAAS-OAUTHBEARER.
Can I use JAAS with cpp kafkaProducer which uses librdkafka ?...