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

RH Bugzilla Integration (JIRA) jira-events at lists.jboss.org
Fri Jun 1 11:45:18 EDT 2012


    [ https://issues.jboss.org/browse/GTNPORTAL-2207?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12698097#comment-12698097 ] 

RH Bugzilla Integration commented on GTNPORTAL-2207:
----------------------------------------------------

Gary Hu <ghu at redhat.com> made a comment on [bug 819631|https://bugzilla.redhat.com/show_bug.cgi?id=819631]


    Technical note updated. If any revisions are required, please edit the "Technical Notes" field
    accordingly. All revisions will be proofread by the Engineering Content Services team.
    
    Diffed Contents:
@@ -19,7 +19,7 @@
 SUPERSEDES:
         N/A
 SUPERSEDED BY:
-        EPP 5.2.GA
+        EPP 5.2.0.GA
 CREATOR:
         Gary Hu
 DATE:
                
> 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

        


More information about the gatein-issues mailing list