[
https://issues.jboss.org/browse/GTNPORTAL-2207?page=com.atlassian.jira.pl...
]
RH Bugzilla Integration commented on GTNPORTAL-2207:
----------------------------------------------------
Mike Clark <miclark(a)redhat.com> made a comment on [bug
819631|https://bugzilla.redhat.com/show_bug.cgi?id=819631]
bz819631-signed.tgz contains signed versions of the currently attached jars listed below.
exo.portal.webui.portal-5.2.0.GA.jar:
- MD5 checksum before signing: f6c6c6fc5a420689fcc6219185a92643
- MD5 checksum after signing: c650e9ae646ee58c27adf299c90a0ecb
Hardcode for getting portal container in LocalizationFilter.java
----------------------------------------------------------------
Key: GTNPORTAL-2207
URL:
https://issues.jboss.org/browse/GTNPORTAL-2207
Project: GateIn Portal
Issue Type: Bug
Security Level: Public(Everyone can see)
Reporter: Hai Nguyen
Assignee: Hai Nguyen
Labels: portal-s63, synced
Fix For: 3.2.0-Beta01
In LocalizationFilter.java, we hardcode "portal" for getting RootContainer:
{code:xml}
if (container instanceof RootContainer)
container = (ExoContainer) container.getComponentInstance("portal");
{code}
This affect if we change default context path as article:
http://community.jboss.org/wiki/ChangeGateInContextPath. We will get the exception because
NULL container.
The code should be change to:
{code:xml}
if (container instanceof RootContainer)
container = (ExoContainer)
container.getComponentInstance(req.getContextPath().substring(1));
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira