[Acegisecurity-developer] Authentication Propagation across JMS

2007-03-13 Thread Jason.Yankus
Greetings: I'm using Acegi and Spring 1.2 in our application. I am currently using HTTP Invoker Authentication propagation to push credentials to the service layer for web services calls. I'd like to use a similar facility to pass credentials with my JMS messages so I might secure the

Re: [Acegisecurity-developer] Authentication Propagation across JMS

2007-03-13 Thread Ray Krueger
When you send the message, you could attach the Authentication to the message by calling: message.setObjectProperty(authentication, SecurityContextHolder.getContext().getAuthentication()); Then on the receiving end you just get it back... Authentication auth = (Authentication)