one bean between actions

2009-02-03 Thread Anton Bashmakov
Hi, I Use struts 2 for my application. And I need to use the same bean in different actions and JSPs. Like user has found an object we show him details page, than he is able to edit the object, it's another JSPs but object is the same (in this case there is even no action class between these two vi

Re: Simple validation does not work

2008-08-13 Thread Anton Bashmakov
Hi everyone! I've solved the problem it was in the version of JBOSS, I rolled back to 4.0.5.GA and now everything works perfect. 2008/8/10 Anton Bashmakov <[EMAIL PROTECTED]> > Actually I can't find xwork 2.0.6, it's only 2.1 after 2.5 on the official > xwork s

Re: Simple validation does not work

2008-08-10 Thread Anton Bashmakov
Actually I can't find xwork 2.0.6, it's only 2.1 after 2.5 on the official xwork site. I've downloaded strats 2.0.11.2 (i was using 2.0.11.1 before) and tried it, but result is till the same. On Sat, Aug 9, 2008 at 9:50 PM, Struts Two <[EMAIL PROTECTED]> wrote: > xwork2.0.5 is missing a patch for

Re: Simple validation does not work

2008-08-09 Thread Anton Bashmakov
I'm using JBOSS-5.0.0.CR1, could you please explain in more details what I should do? On Fri, Aug 8, 2008 at 7:37 PM, holod <[EMAIL PROTECTED]> wrote: > > If you are using IBM WebSphere 6.x, that's ok. > I've faced the same problem: http://jira.opensymphony.com/browse/XW-651 > > So, I've simply c

Simple validation does not work

2008-08-08 Thread Anton Bashmakov
Hi, I have strange situation, here is my form : Here is the action : public class Colors extends ActionSupport { private String name; @Override public String execute() throws Exception { return SUCCESS; } publi