I got it, dhmspector helped me read the error message with a bit of clarity :-) I had duplicate input's, id from the <input> and also id is contained in the submission bean.

Thanks,

Jeremy

On Apr 4, 2007, at 9:04 AM, Jeremy Cowgar wrote:

I have an AccountList which lists accounts in a table and allows users to click an EXIT link taking them to Detail, Edit, Remove, etc... Now I decided to pass the id via a datalink to the appropriate elements. This works fine for Detail and Remove, however, when I began creating my edit form, I ran into a problem:

SEVERE: com.uwyn.rife.engine.exceptions.ParameterInputConflictException: The parameter 'id' in submission 'account_data' of element 'annotations:com.cowgar.myfi.rife.AccountEdit' conflicts with an existing global input.

Here are my relevant element definitions:

   <element implementation="com.cowgar.myfi.rife.AccountList"
            url="/account/list">
      <flowlink srcexit="detail" destid="AccountDetail" />
<datalink srcoutput="id" destid="AccountDetail" destinput="id" />

      <flowlink srcexit="edit" destid="AccountEdit" />
      <datalink srcoutput="id" destid="AccountEdit" destinput="id" />

      <flowlink srcexit="remove" destid="AccountDetail" />
<datalink srcoutput="id" destid="AccountDetail" destinput="id" />
   </element>

<element id="AccountEdit" implementation="com.cowgar.myfi.rife.AccountEdit"
            url="/account/edit">
      <input name="id" />

      <submission name="account_data">
         <bean classname="com.cowgar.myfi.rife.vo.Account" />
      </submission>
   </element>

How should I handle this?

Thank you,

Jeremy
_______________________________________________
Rife-users mailing list
Rife-users@uwyn.com
http://lists.uwyn.com/mailman/listinfo/rife-users

_______________________________________________
Rife-users mailing list
Rife-users@uwyn.com
http://lists.uwyn.com/mailman/listinfo/rife-users

Reply via email to