[Design of Security on JBoss] - Re: SecurityContext
by anil.saldhana@jboss.com
Similar to the SPNEGO authentication sequence because the trust decision (if using SAML) can involve http redirects before the correct saml token arrives with the necessary information (the other alternative is the backdoor soap interaction). That was my reference wrt JASPI.
For the trust spi, how does the following look:
| /**
| Principal can be null. The Contextual map can contain additional subjectInfo plus other info including a SAML Token assertion/domainInfo from the source application domain
| */
| Principal getTargetIdentity(Principal p, Map contextualMap);
|
If there is a need to know additional information about the target identity (like roles), then we will need another method in the authorization manager (The AM implementation will have to query for the attributes of the identity from an external application domain):
| Group getTargetRoles(Principal targetIdentity, Map contextualMap)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968450#3968450
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968450
18 years, 5 months
[Design of Messaging on JBoss (Messaging/JBoss)] - Re: Setting up JBoss Messaging integration tests
by ovidiu.feodorov@jboss.com
rachmatowicz(a)jboss.com wrote :
| 1. Making use of release-admin.xml directly makes sense from the point of view of centralizing the code to create configurations. However, at present, we are pulling only pulling in jboss-messaging.jar into testsuite/thirdparty from repository.jboss.com, and don't have direct access to release-admin.xml. We are looking for a way to set up the configuration which makes life easy as well as being well-suited to the existing testsuite organization.
|
Ruel may have a say on this. The repository also provides a "resources" directory, that can be used for auxiliary scripts, I reckon. Quote from http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossBuild
anonymous wrote :
|
| Repository File Structure
|
| ...
| repository.jboss.com\component name\version\lib
| repository.jboss.com\component name\version\resources
| ...
|
| resources - contains idl files, properties files, things of that nature
|
| ...
|
rachmatowicz(a)jboss.com wrote :
| 2. The JBAS build and testsuite makes use of a number of names for directories relating to JMS and the existing JBossMQ implementation:
| trunk/messaging
| trunk/testsuite/src/main/jms
| trunk/testsuite/src/main/jmsra
| trunk/testsuite/src/main/jbossmq
| trunk/tetstsuite/src/resources/messaging
| trunk/testsuite/src/resources/jbossmq
|
|
"trunk/messaging" is a wrong name for JBossMQ related stuff to start with, I would change it to "jbossmq" everywhere it shows up in the source tree. Now with SVN is easy. This leaves messaging for us. As Tim said, messaging5 is bad.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968448#3968448
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968448
18 years, 5 months