Thanks Jaimesh,
I had come up with a work-around, similar to your first solution with two Submits.
In the config I created two mappings, each going to the same Action, one mapping each from the two links with different actions, ie, <html:link action="/chooseDataStoreTypeDataBase"> for one and <html:link action="/chooseDataStoreTypeArray"> for the other. The config entries:
The trick was creating an Interface that each of the mapping's form extended. Each form had a different literal, eg, one form had private static final
String dataStoreType = "array"; and the other private static final String dataStoreType = "dataBase";. Thus, in the Action I could
test the Interface and polymorphically determine which Link sent the request.
I've since modified my solution by utilizing request.getRequestURI() in the Action.
Maybe not the most elegant solution, but it seems reasonable.
I included
alot of the above code in case someone can use it later.
Thanks again.
Matt