[Acegisecurity-developer] Need up to date instructions

2007-03-13 Thread Brad Cox, Ph.D.
From the instructions at http://acegisecurity.org/suggested.html 1) The header says Doc for 1.0.4-SNAPSHOT, but the Downloads link only offers 1.0.3. What version works with the Building from Maven instructions at this address? 2) http://acegisecurity.org/building.html says cd

[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)