Re: Error in struts2-archetype-starter

2013-10-11 Thread Antonio Sánchez
El 11/10/2013 12:33 a.m., Lukasz Lenart escribió: And you can start working on that issue [2] which contains link to Wiki page with example CRUD app - O was planning add it as a part of Struts distribution. Started. Please check comments in issue. ---

Re: [ANN] Struts 2.3.15.2 GA release available - security fix

2013-10-11 Thread Volker Krebs
Am 11.10.2013 13:22, schrieb Lukasz Lenart: 2013/10/11 Volker Krebs : Thank you, good news. If you want you can give me the current state and I can run it on our test system. We're implicitly testing quite a lot of struts2 functionality. That would be awesome, but I cannot share any details r

Re: [ANN] Struts 2.3.15.2 GA release available - security fix

2013-10-11 Thread Lukasz Lenart
2013/10/11 Volker Krebs : > Thank you, good news. > > If you want you can give me the current state and I can run it on our test > system. We're implicitly testing quite a lot of struts2 functionality. That would be awesome, but I cannot share any details related to a security vulnerability :\ T

Re: [ANN] Struts 2.3.15.2 GA release available - security fix

2013-10-11 Thread Volker Krebs
Thank you, good news. If you want you can give me the current state and I can run it on our test system. We're implicitly testing quite a lot of struts2 functionality. Am 11.10.2013 09:33, schrieb Lukasz Lenart: Patch is under review now, so the release should be out next week. Regards

Re: [ANN] Struts 2.3.15.2 GA release available - security fix

2013-10-11 Thread Lukasz Lenart
Patch is under review now, so the release should be out next week. Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/10/11 Volker Krebs : > Hello Lukasz, > do you have any news according the 15.3 ? > We are waiting for it to update our customer projects. > > Thanks > Volker > >

Re: [ANN] Struts 2.3.15.2 GA release available - security fix

2013-10-11 Thread Volker Krebs
Hello Lukasz, do you have any news according the 15.3 ? We are waiting for it to update our customer projects. Thanks Volker Am 23.09.2013 20:12, schrieb Lukasz Lenart: Hi, Yes, we know already :\ I'm working on a new solution, should be ready next week. ---

Re: how jsp form text field values are copied to action class instance fields

2013-10-11 Thread Umesh Awasthi
This is being done with help of interceptors, struts2 provides a set of interceptors to do some work for you and transferring form values to actions properties is one of them. Have a look at http://struts.apache.org/release/2.3.x/docs/parameters-interceptor.html and see how this interceptor will w

how jsp form text field values are copied to action class instance fields

2013-10-11 Thread Srimuralidharan S
Hi, I have a form with two text fields rollnumber and name and also a submit button. My action class also contain two private instance fields rollnumber and name. I wondered how text field values are copied to the instance fields of action class. Please help me in understanding the proces