You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-dev@portals.apache.org by "Elliot Metsger (JIRA)" <ji...@apache.org> on 2007/05/17 23:49:17 UTC

[jira] Closed: (PLUTO-351) Method removeAttribute in PortletRequestImpl causes NullPointerException in Resin 3.0.17

     [ https://issues.apache.org/jira/browse/PLUTO-351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger closed PLUTO-351.
--------------------------------


> Method removeAttribute in PortletRequestImpl causes NullPointerException in Resin 3.0.17 
> -----------------------------------------------------------------------------------------
>
>                 Key: PLUTO-351
>                 URL: https://issues.apache.org/jira/browse/PLUTO-351
>             Project: Pluto
>          Issue Type: Bug
>    Affects Versions: 1.1.0-beta2
>         Environment: Resin 3.0.17 
>            Reporter: YIdong Fang
>         Assigned To: David DeWolf
>             Fix For: 1.1.3
>
>
> Method removeAttribute in PortletRequestImpl causes NullPointerException in Resin 3.0.17.
> Fix,make the following changes to org.apache.pluto.internal.impl.PortletRequesetImpl:
> private HttpServletRequest requestLocal;
>  public PortletRequestImpl(PortletContainer container,
>                               InternalPortletWindow internalPortletWindow,
>                               HttpServletRequest servletRequest) {
>         super(servletRequest);
>         this.requestLocal=servletRequest;
>         this.container = container;
>         this.internalPortletWindow = internalPortletWindow;
>         this.portalContext = container.getRequiredContainerServices().getPortalContext();
>     }
> public HttpServletRequest getHttpServletRequest() {
>         return requestLocal;
>     }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.