• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

jsp exception help

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am getting this error in my struts application and I am at a loss on what to do. Any suggestions?
2008-02-01 15:30:06,536 ExecuteThread: '9' for queue: 'default' ERROR org.apache.struts.taglib.tiles.InsertTag - ServletException in '/jsp/layout/otherScreensLayout.jsp': No form found under 'dummyForm' in locale 'en_US' javax.servlet.ServletException: No form found under 'dummyForm' in locale 'en_US'
at weblogic.servlet.jsp.PageContextImpl.handlePageException(Ljava/lang/Throwable V(PageContextImpl.java:323)
 
Ranch Hand
Posts: 471
Mac OS X Hibernate Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello John,

Seems that otherScreensLayout.jsp has an <html:form> where it's action attribute has a value of an action that wants to use dummyForm which doesn't exist. Check your action mapping for this action, and see if it's name attribute is dummyForm
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic