Hi Guys,


Trying to figure out why the dummy data in my table wasn't showing, I created a 
new project. Everything is working fine, except when I set the 
@andromda.struts.view.table.colums tag. The application generates the following 
exception (during runtime):



javax.servlet.ServletException: Unable to find a value for "Id" in object 
of class "nl.test.dummy30.web.user.UserControllerImpl$UserListDummy" using 
operator "."

  
 org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)

  
 org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)

  
 org.apache.jsp.nl.test.dummy30.web.user.users_jsp._jspService(users_jsp.java:310)

  
 org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)

  
 javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

  
 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)

  
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)

  
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)

  
 javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

  
 org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)

  
 org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)

  
 org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:388)

  
 org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:316)

  
 org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:231)

  
 org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)

  
 org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)

  
 javax.servlet.http.HttpServlet.service(HttpServlet.java:697)

  
 javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

  
 org.displaytag.filter.ResponseOverrideFilter.doFilter(ResponseOverrideFilter.java:125)

  
 org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)



Kinda strange, the internal UserListDummy in UserControllerImpl looks fine to 
me. 



public final class UserListDummy implements java.io.Serializable

    {

        private String id = null;

        private String name = null;

        private String username = null;



        public UserListDummy(String id, String name, 
String username)

        {

            this.id = id;

            this.name = name;

            this.username = username;

        }

        

        public void setId(String id)

        {

            this.id = id;

        }



        public String getId()

        {

            return this.id;

        }

        

        public void setName(String name)

        {

            this.name = name;

        }



        public String getName()

        {

            return this.name;

        }

        

        public void setUsername(String username)

        {

            this.username = username;

        }



        public String getUsername()

        {

            return this.username;

        }

        

    }



Did anyone encounter the same problem? Or is it me aggain??



thnx!
_________________________________________________________
Reply to the post : http://galaxy.andromda.org/forum/viewtopic.php?p=1049#1049
Posting to http://forum.andromda.org/ is preferred over posting to the mailing 
list!


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
_______________________________________________
Andromda-user mailing list
Andromda-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to