[JBoss JIRA] Created: (JBRULES-1754) Guvnor authentication to make use of portal
by Michael Neale (JIRA)
Guvnor authentication to make use of portal
-------------------------------------------
Key: JBRULES-1754
URL: https://jira.jboss.org/jira/browse/JBRULES-1754
Project: JBoss Drools
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: drools-brms
Affects Versions: 5.0.0.M1
Reporter: Michael Neale
Assignee: Mark Proctor
Priority: Minor
Fix For: FUTURE
request from Devendra Sharma:
We are trying to look into possibility of integrating the Guvnor 5.0 in our Portal.
One of the requirement is user logged into the portal should be able to go to Guvnor Main page (skipping the login page)
if the userid/password available from portal is programmatically authenticated successfully against the credentials exist in the Guvnor .
How this may be achieved:
A custom Seam authenticator component (refer to Seam docs) may be able to do this - assuming the browser can pass down some token representing the portal session or somesuch.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 4 months
[JBoss JIRA] Created: (JBAS-5904) ClientUserTransaction singleton initialisation is not thread safe
by Adrian Brock (JIRA)
ClientUserTransaction singleton initialisation is not thread safe
-----------------------------------------------------------------
Key: JBAS-5904
URL: https://jira.jboss.org/jira/browse/JBAS-5904
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Transaction Manager (JBossTM)
Affects Versions: JBossAS-4.2.3.GA, JBossAS-5.0.0.CR1
Reporter: Adrian Brock
Assignee: Adrian Brock
Fix For: JBossAS-5.0.0.CR2, JBossAS-4.2.4.GA
The ClientUserTransaction singleton initialistation is not thread safe:
private static ClientUserTransaction singleton = null;
public static ClientUserTransaction getSingleton()
{
if (singleton == null)
singleton = new ClientUserTransaction();
return singleton;
}
Two threads can race to create the singleton which means the ThreadLocal within the class can become
"masked".
The construction of the singleton needs moving to static initialisation.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 4 months