1. Download the source
Code:
svn co https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity
2. Find the class you are curious about
Code:
find . -name 'ContextPropagatingRemoteMethodInvocationFactory.java' -print
3. Read it!
4. And then find who else uses either the class or the interface, to see where this gets "plugged in". (Another hint, read the test cases to see how it is utilized).
Code:
find . -name '*.java' -exec grep ContextPropagatingRemoteMethodInvocationFactory {} \; -print
find . -name '*.java' -exec grep RemoteInvocationFactory {} \; -print
BTW: Shouldn't this really be on Acegi's forum (like the other time you brought up this issue?)
BTW2: Have you searched this site using the keyword "ContextPropagatingRemoteMethodInvocationFacto ry"?