You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Jayaraj (JIRA)" <ji...@apache.org> on 2009/02/27 15:28:47 UTC

[jira] Updated: (STR-2989) NullPointerException on indexed properties only on session timeout

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

Jayaraj updated STR-2989:
-------------------------

    Attachment: HelloStruts.zip

Actually this is not a bug, I am adding this file because 

in my requirement the form element 

<input type="text" name="list[2].name" value="C"> - <BR>

will be dynamic say

<input type="text" name="list[2].name" value="C"> - <BR>
<input type="text" name="list[3].name" value="C"> - <BR>
<input type="text" name="list[4].name" value="C"> - <BR>

since the form object (ArrayLisy) which don't have the index 2,3,4 

i am getting this exception.

can any one help me ?

> NullPointerException on indexed properties only on session timeout
> ------------------------------------------------------------------
>
>                 Key: STR-2989
>                 URL: https://issues.apache.org/struts/browse/STR-2989
>             Project: Struts 1
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.2.9
>         Environment: Windows XP, WebLogic 8.1 
>            Reporter: Steve Klosterbuer
>         Attachments: HelloStruts.zip
>
>
> I have an ActionForm that has a getter and setter for a Collection of Objects.  The jsp uses the logic:iterate tag to output the indexed nested properties.  Everything works fine until the session times out.  Then I get the following stack trace:
> java.lang.NullPointerException
> 	at org.apache.commons.beanutils.PropertyUtilsBean.getIndexedProperty(PropertyUtilsBean.java:427)
> 	at org.apache.commons.beanutils.PropertyUtilsBean.getIndexedProperty(PropertyUtilsBean.java:340)
> 	at org.apache.commons.beanutils.PropertyUtilsBean.getNestedProperty(PropertyUtilsBean.java:684)
> 	at org.apache.commons.beanutils.PropertyUtilsBean.getProperty(PropertyUtilsBean.java:715)
> 	at org.apache.commons.beanutils.BeanUtilsBean.setProperty(BeanUtilsBean.java:884)
> 	at org.apache.commons.beanutils.BeanUtilsBean.populate(BeanUtilsBean.java:811)
> 	at org.apache.commons.beanutils.BeanUtils.populate(BeanUtils.java:298)
> 	at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:493)
> 	at org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:816)
> 	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:203)
> 	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
> 	at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
> 	at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
> 	at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
> 	at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
> 	at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
> 	at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
> 	at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3214)
> 	at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> 	at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> 	at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1983)
> 	at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1890)
> 	at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1344)
> 	at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
> 	at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)

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