Re: How to pass data from one Action class to another Action class?

2018-01-06 Thread Hedju Hor
Hi, redirect Action with parameters https://struts.apache.org/core-developers/redirect-action-result.html or use Session https://struts.apache.org/getting-started/http-session.html Regards Hedju Hor On 2018-01-06 08:03, Akash khare wrote: > first action class code > getRequest().setA

How to pass data from one Action class to another Action class?

2018-01-05 Thread Akash khare
first action class code getRequest().setAttribute("RncPartnerID", model.getId()); 2nd action class code String rncPartnerId=(String)getRequest().getAttribute("RncPartnerID"); RncPartnerData rncPartnerData = new RncPartnerData(); rncPartnerData.setId(rncPartnerId); rateCardData.setRncPartnerData(rn

how to pass data

2007-04-01 Thread strutproject
how to pass values from some field when a link is clicked to another page where it has same fields -- View this message in context: http://www.nabble.com/how-to-pass-data-tf3503916.html#a9785691 Sent from the Struts - User mailing list archive at Nabble.com

RE: How to pass data from one Action class to another Action class?

2006-10-12 Thread Bruno Melloni
should get you started. Be careful if you put data in the session instead of the request, it can have memory usage implications. bruno -Original Message- From: Niniva Ray [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 11, 2006 5:26 PM To: user@struts.apache.org Subject: How to pas

Re: How to pass data from one Action class to another Action class?

2006-10-11 Thread paz . periasamy
gt; 12/10/2006 08:45 AM Please respond to "Struts Users Mailing List" To: Struts Users Mailing List cc: Subject: Re: How to pass data from one Action class to another Action class? No, my form bean has request scope. yes, both the form beans name

Re: How to pass data from one Action class to another Action class?

2006-10-11 Thread Niniva Ray
che.org cc: Subject: How to pass data from one Action class to another Action class? Hello, If my Action class's success path is another Action class, not a jsp, how do I pass data from one Action class to the other Action class? Both of my action classes are associated with the same form bean.

Re: How to pass data from one Action class to another Action class?

2006-10-11 Thread paz . periasamy
Australia Services Pty. Ltd. Off : +61-3-9618-4085 Mob : +61-0411-354-838 Niniva Ray <[EMAIL PROTECTED]> 12/10/2006 08:26 AM Please respond to "Struts Users Mailing List" To: user@struts.apache.org cc: Subject: How to pass data from one Action

How to pass data from one Action class to another Action class?

2006-10-11 Thread Niniva Ray
Hello, If my Action class's success path is another Action class, not a jsp, how do I pass data from one Action class to the other Action class? Both of my action classes are associated with the same form bean. I was setting the method A of the common form bean in one Action class and doi