You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Stan Baranek <st...@gene.COM> on 2002/07/13 19:02:15 UTC

struts-config: input - not working

Hi yall,

Using Struts 1.01 and Tiles:

I'm having a problem getting a populated ActionForm object from my .jsp
page to my Action.  I get what appears to be a new() ActionForm on the
request or session (depending on scope).  I know it's not the reset()
method of my form that's causing this.  Here's the struts-config .....

 <action input="searchpeptides.page"
            path="/performPeptideSearch"

type="com.genentech.cit.peptide.controller.searchcontroller.web.actions.SearchPeptidesHTMLAction"

            name="searchPeptidesForm"
            scope="session"
            validate="true">
        <forward name="success" path="searchresults.page" />
        <forward name="error" path="searchpeptides.page"/>
 </action>

Is there anything wrong with the input parameter like this when using
tiles?

THNX,
Stan