Fileupload

2009-07-21 Thread taltun
Unix server it does not have permission to access the filesystem using FileInputStream, , am I right ? - What should I do ? - Is there other way to convert a file to inputStream without accessing the filesystem ? -taltun -- View this message in context: http://www.nabble.com/Fileupload

Re: Prevent persisting data when validation fails

2009-07-20 Thread taltun
Thank you very much!! During my research, I remember some one solved the issue by creating an Struts 2 intercepter. He placed the intercepter right after the validationIntercepter. The job of the intercepter was to check if getActionErrors or getFieldErrors collections was not empty than it close

Re: Prevent persisting data when validation fails

2009-07-20 Thread taltun
By the way, how can I let JPA return a deatached object ? I make use of GenericDaoJpa.java which is attached to this message. http://www.nabble.com/file/p24571326/GenericDaoJpa.java GenericDaoJpa.java Greg Lindholm-2 wrote: > >> I use JPA (hibernate) to persist. >> >> >> >> An example of acti

Re: Prevent persisting data when validation fails

2009-07-20 Thread taltun
Ok. - What is the best way to copy a persistent object ? Using BeanUtil.copy or clone, etc? Greg Lindholm-2 wrote: > >> I use JPA (hibernate) to persist. >> >> >> >> An example of action that use prepare to load a person object from >> transactional manager. When the validate fails and it r

Re: Prevent persisting data when validation fails

2009-07-20 Thread taltun
() { manager.savePerson(person); return SUCCESS; } public void validate() { if (person.firstName.length < 5 and person.firstName > 10) { addActionError("Firstname length should be between 5 and 10 characters."); } } } taltun wrote: > > When submitti

Prevent persisting data when validation fails

2009-07-20 Thread taltun
e.g an user object from a manager/service. And the data relates to the user object that is about. -taltun -- View this message in context: http://www.nabble.com/Prevent-persisting-data-when-validation-fails-tp24566713p24566713.html Sent from the Struts - User mailing list archive at Nabble.com