props.put(Context.SECURITY_PRINCIPAL, System.getenv("EJB_USER"));
props.put(Context.SECURITY_CREDENTIALS, System.getenv("EJB_PASS"));
`
I am trying to migrate to using elytron. This is working fine so far, however
it is failing when EJBs are trying to access JMS Topics/Queues. Topics and Queues are
created by the EAR deployment unit through XML file.
The question I have is what do I need to do to allow the current user to access
those queues/topics.
Should I move them to Server-created instead of xml ?