I am trying to use modules to simulate a struts application on a larger scale. I have been having this problem with my forward action tag so I started using
<html:link action="/viewSearch">Search for Employee</html:link>
which was working fine. Now I start using L
<html:link forward="/viewSearch">Search for Employee </html:link>
Like I said previously I have used this tag before i even started working with modules and it has never worked so i started using
<html:link action="/viewSearch">Search for Employee</html:link> which works fine. I just want to know why the forward attribute from the html:link tag doesn't work.
My second prob is that since I am using the action attribute of the html:link tag I now get something that says :
org.apache.struts.chain.commands.InvalidPathException: No action config found for the specified url.
If I mapped directly to the module that works but trying to mapped to one config file to the next is causing problems can anyone help with my two probs?