• 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

ActionMessages not found under 'messages'

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

I am creating some action errors / action messages and attempting to save them so I can access them in the JSP from which posted to the Action. I seem to be able to detect whether the errors are there or not with

<logic:messagesPresent>

but I get an exception with

<bean:write name="message"/>
javax.servlet.jsp.JspException: ServletException in '/jsp/icicle/CandidateForm.jsp': Cannot find bean message in any scope

This is really confusing - I appear to have the same setup on another form that works fine (I did a lot of trial and error to get that to work...)

Code snippets follow...

Many thanks for any pointers.

Andrew

//Makes ActionMessages from a hashmap
errors = com.xx.struts.Utils.actionMessages( cb.validate() );
if ( !errors.isEmpty() )
{
// Save my errors to make them availble upon repost.

//addMessages(servletRequest, errors);
//saveMessages(servletRequest.getSession(), errors);

addErrors(servletRequest, errors);
saveErrors(servletRequest, errors);

return actionMapping.getInputForward();
}


<logic:messagesPresent>
<html:messages id="message">
<li><bean:write name="message"/></li>
</html:messages>
</logic:messagesPresent>
 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use these tags:



message - is whether or not they are errors or not, by the way, if your ActionForward is set to redirect, you will lose all messages.
 
andrew low
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OK, so it transpires that I've been adding in ActionMessages as thinking of them as Simply strings that will be displayed, rather than keys to look up values from the ApplicationResources.properties file. I assume there is some way to add ActionMessages from scratch without referring to this file, but it appears to have evaded me.

Cheers

A
 
reply
    Bookmark Topic Watch Topic
  • New Topic