[JBoss JIRA] Created: (JBPORTAL-1488) Session Invalidation issue when Tomcat SSO is turned on
by Sohil Shah (JIRA)
Session Invalidation issue when Tomcat SSO is turned on
-------------------------------------------------------
Key: JBPORTAL-1488
URL: http://jira.jboss.com/jira/browse/JBPORTAL-1488
Project: JBoss Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Portal Server
Affects Versions: 2.6.CR2, 2.4.1 SP1
Reporter: Sohil Shah
Assigned To: Sohil Shah
Priority: Minor
Fix For: 2.6 Final, 2.4.2 Final
It turns out that when Tomcat SSO is turned on, when a user's session is invalidated,
as the portal server iterates through all the active war sessions and invalidates them, the main portal session is invalidated as well.
The code calls session.invalidate on the main portal session after that and gets and IllegalStateException because the session is already invalidated.
This exception needs to be handled smoothly so that user does not see a failure upon logout
Note: This issue surfaces only when Tomcat SSO is actiavted.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 1 month
[JBoss JIRA] Updated: (JBMESSAGING-375) Grouping of messages
by Tim Fox (JIRA)
[ http://jira.jboss.com/jira/browse/JBMESSAGING-375?page=all ]
Tim Fox updated JBMESSAGING-375:
--------------------------------
Summary: Grouping of messages (was: Grouping of messages with JMSXGroupId)
Description:
We should add an ability to group messages by a group id so any messages with the same group id always go to the same consumer on a queue.
This would be useful when having competing consumers on a queue and you want each consumer to handle all messages with a particular value of group id.
was:
We should add an ability to group messages by JMSXGroupID, so any messages with the same group id always go to the same consumer on a queue.
This would be useful when having competing consumers on a queue and you want each consumer to handle all messages with a particular value of JMSXGroupID
> Grouping of messages
> --------------------
>
> Key: JBMESSAGING-375
> URL: http://jira.jboss.com/jira/browse/JBMESSAGING-375
> Project: JBoss Messaging
> Issue Type: Feature Request
> Reporter: Tim Fox
> Assigned To: Jeff Mesnil
> Fix For: 2.0.0 Beta
>
> Attachments: jbmessaging-375.patch, patch-JBMESSAGING-375.txt, patch-JBMESSAGING-375.txt
>
> Original Estimate: 1 week
> Remaining Estimate: 1 week
>
> We should add an ability to group messages by a group id so any messages with the same group id always go to the same consumer on a queue.
> This would be useful when having competing consumers on a queue and you want each consumer to handle all messages with a particular value of group id.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 1 month
[JBoss JIRA] Created: (JBPORTAL-1730) IdentityServiceControllerImpl : unregister existing MBean service before to re register them
by Antoine Herzog (JIRA)
IdentityServiceControllerImpl : unregister existing MBean service before to re register them
--------------------------------------------------------------------------------------------
Key: JBPORTAL-1730
URL: http://jira.jboss.com/jira/browse/JBPORTAL-1730
Project: JBoss Portal
Issue Type: Task
Security Level: Public (Everyone can see)
Components: Portal Identity
Affects Versions: 2.6.1 Final
Reporter: Antoine Herzog
Priority: Optional
Fix For: 2.6.3 Final
In IdentityServiceControllerImpl (service name="portal:service=Module,type=IdentityServiceController")
the Identity Beans are registered as JMX MBeans.
When redeploying the service, an exception is thrown, as the services are yet deployed.
javax.management.InstanceAlreadyExistsException: portal:service=Module,type=User already registered.
Let's put this code before to register the bean, at line 378 of IdentityServiceControllerImpl.java
// Unregister the former service is if it is yet there.
// This to avoid the exception when redeploying this service
if (getServer().isRegistered(
new ObjectName(module.getServiceName()))) {
getServer().unregisterMBean(
new ObjectName(module.getServiceName()));
}
Thanks,
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 1 month