Re: Questions about migrating to Struts 7.0

2025-04-03 Thread Lukasz Lenart
czw., 3 kwi 2025 o 12:24 Shivam Agrahari napisał(a): > I have enabled dev mode and also log level to debug but there is no error > being displayed. Hard to guess with having no information from your side. Could you post your action with annotation on setters? Regards Łukasz ---

Re: Questions about migrating to Struts 7.0

2025-04-03 Thread Shivam Agrahari
Hi, I have enabled dev mode and also log level to debug but there is no error being displayed. Regards, Shivam On Wed, Apr 2, 2025 at 4:29 PM Lukasz Lenart wrote: > śr., 2 kwi 2025 o 12:29 Shivam Agrahari > napisał(a): > > I am in the process of upgrading a Java application from Struts 6.7.4

Re: Questions about migrating to Struts 7.0

2025-04-02 Thread Lukasz Lenart
śr., 2 kwi 2025 o 12:29 Shivam Agrahari napisał(a): > I am in the process of upgrading a Java application from Struts 6.7.4 to > Struts 7.0.3. I've made the necessary changes as per the migration guide, > such as updating javax to jakarta. However, when I submit the user ID and > password, they ar

Re: Questions about migrating to Struts 7.0

2025-04-02 Thread Shivam Agrahari
Hi, I am in the process of upgrading a Java application from Struts 6.7.4 to Struts 7.0.3. I've made the necessary changes as per the migration guide, such as updating javax to jakarta. However, when I submit the user ID and password, they are not being accessed in the action class. Additionally,

Re: Questions about migrating to Struts 7.0

2025-03-11 Thread Lukasz Lenart
wt., 11 mar 2025 o 16:09 Nate Kerkhofs napisał(a): > One thing I'm wondering about is the StrutsParameter annotation that now > needs to be added to all getters and setters that need to be accessed from > the OGNL context. We have a number of Actions where we have getters and > setters for POJO

Re: Questions about migrating to Struts 7.0

2025-03-11 Thread Prasanth
I have used it for creating links to an action as below. I don't have namespace here as this action is in the namespace /, which is defined in the struts.xml. You can group actions into different namespaces using the package element. In the below example the request context is added to the url t

Re: Questions about migrating to Struts 7.0

2025-03-11 Thread Wolfgang Knauf
Hi Nate, about "@StrutsParameter" and POJOs: you can set the "depth" attribute. A value of "1" means that all properties of the POJO can be set. Level 2 would set properties of classes of properties of the POJO and so on. @StrutsParameter(depth = 1) public MyPoJo getPojo() { ... } I don't k

Questions about migrating to Struts 7.0

2025-03-11 Thread Nate Kerkhofs
Hi, I'm analyzing the security changes for a migration from Struts 6.3 to Struts 7.0. One thing I'm wondering about is the StrutsParameter annotation that now needs to be added to all getters and setters that need to be accessed from the OGNL context. We have a number of Actions where we have

Re: After migrating to struts 2.3.24 from struts 2.1.8, no response to action on login page

2016-01-08 Thread Lukasz Lenart
Could you use plain text when sending message to this mailinglist? 2016-01-08 7:52 GMT+01:00 punter : > > My application displays the login page, but cannot login. On the login page, > user enters the username and password but on pressing the login button > nothing happens. > We have in our jsp

After migrating to struts 2.3.24 from struts 2.1.8, no response to action on login page

2016-01-08 Thread punter
My application displays the login page, but cannot login. On the login page, user enters the username and password but on pressing the login button nothing happens. We have in our jsp :  The struts-framework.xml file

Re: Migrating to Struts 2

2007-04-19 Thread Shahak Nagiel
(Editorial: I suspect XML has derived most of its popularity due to the latter, but I digress...). - Original Message From: Geffrey Caruso <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Thursday, April 19, 2007 4:24:50 PM Subject: RE: Migrating to Struts 2 Right that

RE: Migrating to Struts 2

2007-04-19 Thread Geffrey Caruso
what kinds of apps it is overkill for. -Original Message- From: Shahak Nagiel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 12:57 PM To: Struts Users Mailing List Subject: Re: Migrating to Struts 2 First question: Why are you looking to migrate? My general opinion on foundatio

Re: Migrating to Struts 2

2007-04-19 Thread Laurie Harper
") application for moderate-to-large application, but if you already have a stable (and relatively small) application, I don't see a compelling need to re-architect it. OTOH, if you're on the bring of having to make a lot of changes/additions in the near future, then "migra

Re: Migrating to Struts 2

2007-04-19 Thread Shahak Nagiel
to re-architect it. OTOH, if you're on the bring of having to make a lot of changes/additions in the near future, then "migrating" to Struts will not be much different than simply starting from scratch, so I'd suggest reading through the tutorials and sample apps. -

Migrating to Struts 2

2007-04-19 Thread Geffrey Caruso
Ok I'm looking for some advice on migrating and existing web application to struts 2. I've seen a lot of stuff online on migrating from struts 1 or from Web Works but not much on migrating an app that isn't in any existing framework. What we currently have is a web app that uses a custom Ajax

[ANN] Public Course: Migrating to Struts Action 2

2006-06-20 Thread Ted Husted
Leverage your hard-earned Struts experience in this five-day hands-on course. Learn how to intergrate existing Struts applications with the Next Big Thing: Struts Action Framework 2. The course covers migrating existing applications to Struts Action 2, with a focus on upgrading the most important

Re: Migrating to struts 1.2.7 from 1.1

2005-09-22 Thread Wendy Smoak
From: "Gaurav Shrivastava" <[EMAIL PROTECTED]> new to struts and migrating an application from struts 1.1 to struts 1.2.7 can anyone give me hints/suggestions on what all things (struts feature wise) should i consider while migrating to higher version. There are Wiki pages to help you move fro

Migrating to struts 1.2.7 from 1.1

2005-09-22 Thread Gaurav Shrivastava
new to struts and migrating an application from struts 1.1 to struts 1.2.7 can anyone give me hints/suggestions on what all things (struts feature wise) should i consider while migrating to higher version. __

Re: out of memory FormFile problems after migrating to Struts 1.2.4

2005-02-22 Thread Eric Lemle
I gave you a snippet below that works for me, might help ya. Eric D. Lemle Senior Programmer / Analyst Intermountain Health Care 36 South State Street, Suite 1100 Salt Lake City, Utah 84111 United States of America (USA) (801) 442-3688 -- e-mail: [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 2/22/2

out of memory FormFile problems after migrating to Struts 1.2.4

2005-02-22 Thread Paulo Alvim
Hi, Is there anybody with "out of memory" problems using FormFile in Struts 1.2.4? I've just migrated from 1.1 and I didn't change anything related to file attachment logic. But the actions that use "html:form" tag-lib with enctype="multipart/..." and file attachment logic are now taking about 40

Re: Migrating to Struts

2004-11-30 Thread Leon Rosenberg
Hi, we recently migrated an application, which i consider large (about 100K loc java code) from XSLT / XSP / EJB to JSP / STRUTS / COD To be true we have not reused a single line of java code. We reused much of XSLT code in jsps, because the outgoing html had to look the same. We reused some of

Re: Migrating to Struts

2004-11-30 Thread Leon Rosenberg
Hi, we recently migrated an application, which i consider large (about 100K loc java code) from XSLT / XSP / EJB to JSP / STRUTS / COD To be true we have not reused a single line of java code. We reused much of XSLT code in jsps, because the outgoing html had to look the same. We reused some of

Migrating to Struts

2004-11-29 Thread Unni
All Struts Gurus: We have a pretty large application which needs to migrate into Struts and possibly to Tiles for the UI. The existing application is quite similar to MVC-2 model. We have our own Controller and Handlers. The Handlers communicate with Session EJB to process data through stored p