I think you may be binding at one level too deep.
In the “Bindings” view the items under the List/Array node are transient items that represent the data available in each item in the List/Array. It’s a visual representation of what is the table control will have available while it is iterating through the list while rendering each row. I agree that it is a little confusing, and maybe we can do that better in the future.
For example, the “Input Parameters > Update Requests > Richieste” should be bound directly to “Richieste > Selected Rows”.
Note, if your input parameters expect an array of Richieste objects instead of a List of them, you may have to create a custom java getter method in your page bean java class to convert the list to an array. Then you can bind to your custom getter method for the input parameter instead.
For example:
public Richieste[] getSelectedRowsAsArray() {
List selectedRows = [get_table_content_provder_here].getSelectedRows();
return (Richieste[])selectedRows.toArray(new Richieste[selectedRows.size()]);
}
#webMethods-BPMS#webMethods#MWS-CAF-Task-Engine