using the following tags:
/**
* @struts:action
* path="/action/run"
* parameter="Info"
*/
public class MyAction extends Action
{
...
}
 
generates the following in struts-config.xml:
<action path="/action/run"
             type="com.joe.MyAction"
             validate="false"
             parameter="false"
             parameter="Info">
...
</action>
 
What is causing the 'parameter="false"' to show up?
 
-Joe

Reply via email to