I have a global forward in my struts-config.xml file defined as:
<global-forwards> <forward name="president" path="../message_president/default.jsp" /> </global-forwards>
I have a jsp page with a struts form. I do have an <html:link> as defined:
<tr>
<td align="center" width="150" height="25">
<html:link forward="president">
<font color="white" size="-2">
<b><fmt:message key="menu.president"/></b>
</font>
</html:link>
</td>
</tr>This works fine in the JSP page, but when I call the action: http://www.mydomain.net/membership_address.do
Then I get a Servlet Exception Error with: ../message_president/default.jsp
If I remove the <html:link> tag, and replace it with pure HTML (a href), it works fine.
Anyone ever seen this before? Thanks for any help!
Tom
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

