Re: Anyway to pass a parameter with the struts-config.xml file to an action?

2002-01-30 Thread Francisco Hernandez
taken from: http://husted.com/about/scaffolding/catalog.htm action path=/Entry type=org.wxxi.polls.http.Client name=pollForm validate=false parameter=input forward name=continue path=/WEB-INF/pages/Entry.jsp/ /action and just use mapping.getParameter() - Original Message - From:

RE: Anyway to pass a parameter with the struts-config.xml file to an action?

2002-01-30 Thread David Larson
per the ActionMapping api... Additional properties can be added by a subclass, simply by providing appropriate public getter and setter methods. you can use (for example)... set-property property=foo value=test / ...as long as the subclass has getFoo/setFoo methods defined, you tell struts to