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 "YIdong Fang (JIRA)" <ji...@apache.org> on 2007/03/28 11:22:32 UTC

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

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


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.


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

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ 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.


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

Posted by "David DeWolf (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David DeWolf resolved PLUTO-351.
--------------------------------

       Resolution: Won't Fix
    Fix Version/s: 1.1.3
         Assignee: David DeWolf

This seems like a resin bug, not a pluto bug.  I'd prefer not litter our codebase with appserver specific bug fixes.  If you think I'm wrong, feel free to reopen.

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