Upgrading spring 3.0.7 to spring 3.2.3 caused "INPUT" instead of "SUCCESS" result

2013-08-24 Thread Dionis Argiri
Hi. I'm using struts 2 & struts-spring plugin. Both are of version 2.3.15.1. The problem is that after upgrading spring from 3.0.7 to spring 3.2.3 I started to get "INPUT" instead of "SUCCESS" result. After debugging for some time I've figured out, that method "setFieldErrors(Map> errorMap)" is c

Re: Upgrading spring 3.0.7 to spring 3.2.3 caused "INPUT" instead of "SUCCESS" result

2013-08-24 Thread David Greene
I had the same issue, here's my thread from a while back: http://comments.gmane.org/gmane.comp.jakarta.struts.user/184485 If I recall correctly, spring is injecting some random Map on its context into the error map which is causing some random non-error to be considered an error. It has to do wi

Re: Upgrading spring 3.0.7 to spring 3.2.3 caused "INPUT" instead of "SUCCESS" result

2013-08-24 Thread Dionis Argiri
Good point David. Thanks. But it seems again like a workaround. P.S. I hope, that someone will find a better solution :) 2013/8/24 David Greene > I had the same issue, here's my thread from a while back: > > http://comments.gmane.org/gmane.comp.jakarta.struts.user/184485 > > If I recall corre

Re: Upgrading spring 3.0.7 to spring 3.2.3 caused "INPUT" instead of "SUCCESS" result

2013-08-24 Thread David Greene
Yea, it's certainly not the appropriate solution, but alas - I believe it's the only workaround unless you want to go edit the struts-spring plugin code On Sat, Aug 24, 2013 at 9:09 AM, Dionis Argiri wrote: > Good point David. Thanks. > > But it seems again like a workaround. > > P.S. I hope