I have a remote EJB with a method that validates an object (returning true or false). I want to be able to pass it an ArrayList object and have the EJB load it with the errors encountered during validation, while still receiving true/false as result.
How can I do this? So far, I can send it the list, and it's affected on server side, but the original list is not modified on client side.