• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

No configuration found for the specified action:

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey guys,

First off, I just wanted to say thanks in advance for the help. I encountered this site many times through searches while I tried to pick up the fundamentals of Struts2. Now, on to my problem. Rest assured, I did scour many of the similar issues, and I never really found one that quite clicked in a way that resolved my issue.

I have two problems; the first of which relates to the "No configuration found for the specified action" issue. Here is the text from the error:
WARNING: No configuration found for the specified action: 'proceed' in namespace: ''. Form action defaulting to 'action' attribute's literal value.

That brings me two my second issue. I'm not sure if they're related, but if they are, I would greatly appreciate some insight as to how these are connected. I have a simple form with a couple required fields. After clicking submit, the error messages are displayed when there is no string present (since I'm using the "requiredstring" validation) -- all works here. However, even if I enter the correct text (i.e., any text at all), my fields are cleared and I am redirected back to the input page, the result of which is designated as the "input" result for determining which page to navigate to. I'll post my struts.xml and my JSP page. If anyone can help me out, that would be greatly appreciated!

Struts.xml:


index.jsp (note: the form is the issue, here):


Also, I forgot to mention that I tried a number of variations with the form. I attempted to include "/proceed," "/proceed.action," "proceed.action," etc. for the action. I also attempted to include the namespace identical to the package above, which also didn't seem to work. This threw an error with a yellow highlight and lots of red!

If someone can help me to determine if these two issues are related, that would be amazing. I was under the impression that, since the system wasn't detecting my actual action code, it wasn't redirecting to the subsequent page correctly; of course, I'm brand new to Struts2, and this could be completely unrelated. Either way, thanks!
 
reply
    Bookmark Topic Watch Topic
  • New Topic