[gatein-issues] [JBoss JIRA] (GTNPORTAL-2207) Hardcode for getting portal container in LocalizationFilter.java

Hai Nguyen (Work started) (JIRA) jira-events at lists.jboss.org
Tue Oct 25 04:05:45 EDT 2011


     [ https://issues.jboss.org/browse/GTNPORTAL-2207?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on GTNPORTAL-2207 started by Hai Nguyen.

> 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
>
> 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

        


More information about the gatein-issues mailing list