Re: Own Security Plugin

2018-05-24 Thread Justin Bertram
It sounds to me like you may want to implement a custom JAAS login module. You can find the Artemis JAAS login module implementations here [1]. You can use those as a guide or find tutorials online. Aside from that you can extend Artemis via remoting interceptors or server plugins. You can find

Own Security Plugin

2018-05-24 Thread Lukas Lentner
Hi, in ActiveMQ Artemis 1.1.0 I would like to implement a Security Plugin that acts additionally to the properties files. A user should be able to send a jwt to the server and my plugin takes that jwt and resolves it to allowed actions on amq addresses. Is there an example to start from? Is a