The moose likes Struts and the fly likes Struts - Nested Tags Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Struts - Nested Tags" Watch "Struts - Nested Tags" New topic
Author

Struts - Nested Tags

alan kent
Greenhorn

Joined: Jan 25, 2003
Posts: 19
I am using nested tags in Struts.
Is there a way to use nested tags with request scope ?
If you use nested tags with session scope it works (I can pass the value from the JSP to the Action ActionForward class using action) but if I use request scope, it does not work.
It gives the following message:

javax.servlet.ServletException: BeanUtils.populate
at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1254)
at org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:821)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:254)
......

Does somebody know if is there a way to use request scope ???
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Struts - Nested Tags
 
Similar Threads
<logic:iterate> problem
getting NullPointerException after changing scope of form as request
Do I need to "add" encodeURL for "action" tag in this case ?
Getting null pointer Exception
Forward to new action during the execution of another action