I'm trying to understand how the JAAS principal propagates to the Business/EJB tier from web tier.

I've read that the if the roles/realm is configured in login-config & security-context of web.xml then the servlet container will also transparently pass the authenticated principal to the EJB Tier.

Two questions
1.) First & more importantly is that true ? Without any intervention from the developer !
2.) And secondly any idea how that works under the hood.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
  1. yes it's true. that's generally the point of ejb, to take the "hard" stuff out of the hands of the developer (e.g. security, transactions, robustness, multithreading, etc.)
  2. it's implementation dependent. i know that in jboss (at least 4.x and before), remote method calls used a custom serialization protocol which had an additional Map of arbitrary information which could be sent along with the request. in this was the auth info as well as other stuff to support clustering. for local method calls i believe they use stuff like ThreadLocals.
link|improve this answer
Thanks ! Always good to get a confirmation ! And this is true even if the webcontainer is in a separate JVM than the EJB container ? – PlanetUnknown Aug 25 '11 at 20:37
yes, i specifically mentioned remote communication in my example. – jtahlborn Aug 26 '11 at 1:05
sorry missed it. Thanks again. – PlanetUnknown Aug 26 '11 at 16:44
feedback

There are various "context" pieces of information that get propagated in EJB calls, once you get inside the EJB layer and start doing EJB-EJB calls then Transactions would be an example. Some containers allow you to create your own such context objects too.

Thread-local storage can be used within a process, but generally just assume that the container is in charge and can do the right thing - the actual technique is implementation specific.

link|improve this answer
I see your point. Also in EJB3 I see that you can just get the SessionContext and call a isCallerInRole() method on it. That's cool. Or the more declarative way(simpler). I didn't get the thread-local storage part though, as to how that is EJB-JAAS specific. – PlanetUnknown Aug 25 '11 at 20:52
Each container is free to use any technique it wishes to propagate the context information, the application never sees how it is done. So the propagation is implementation specific - as it happens I think most containers will use Thread-local storage to do it in local cases, it's the obvious implementation technique. – djna Aug 26 '11 at 5:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.