[
https://issues.jboss.org/browse/GTNPORTAL-2207?page=com.atlassian.jira.pl...
]
RH Bugzilla Integration commented on GTNPORTAL-2207:
----------------------------------------------------
vramik(a)redhat.com made a comment on [bug
819631|https://bugzilla.redhat.com/show_bug.cgi?id=819631]
- I manually verified the issue, then I appliead the patch and verified that the isuue was
fixed.
- Then I run tests to vefiry if there is any reggression
- UI tests with HSQL:
https://hudson.qa.jboss.com/hudson/view/EPP5/job/epp5_ui_selenium_tests_b...
- unit tests for SVN branch with patch:
https://hudson.qa.jboss.com/hudson/view/EPP5/job/epp5_unit_tests_epp5_sun...
md5sum c650e9ae646ee58c27adf299c90a0ecb exo.portal.webui.portal-5.2.0.GA.jar
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