Hi,
I got this error log 
~~~~~~~~~~~~~~~~~~~~~~~~~~
07.09.04 15:21:34 [http8080-Processor24] ERROR
org.apache.struts.taglib.tiles.InsertTag -
ServletException in '/WEB-INF/tiles/home.jsp': Cannot
find bean messages in any scope
javax.servlet.ServletException: Cannot find bean
messages in any scope
......
~~~~~~~~~~~~~~~~~~~~~~~~~~

Here is part of the home.jsp file:
----------------------------------
<b>Define a Template</b>
<font color="red" size=2>
<logic:messagesPresent>
<ul>
<html:messages id="error">
<li><bean:write name="error"/></li>
</html:messages><br>
</ul>
</logic:messagesPresent>
</font>

<font color="blue" size=2>
<logic:messagesPresent message="true">
<ul>
<html:messages id="messages" message="true">
<li><bean:write name="messages"/></li>
</html:messages><br>
</ul>
</logic:messagesPresent>
</font>
......
-------------------------------------------

In the Action class, I have these:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ActionMessages messages = getMessages(request);
messages.add(ActionMessages.GLOBAL_MESSAGE, new
ActionMessage ("Org convert error"));
saveMessages (request, messages);
....
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
the above code is called only when there is some
error. 

what's wrong ?

thanks
li xin



__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to