Folks, need some guidance on the below..
Have 2 action classes. Ex: Action1.java and Action2.java.
Action 2 has its form validated as 'DynaValidator' extension and has a corresponding
Jsp.
Can Action1 pass on control to Action2 bypassing the Validation of Action2 ?
Want Action2 to execute different logic based on where the request comes from.
Action2 can get request from the Jsp or another Action class.
So if the request from's from Action1 execute some functions and
if the request comes from Jsp execute some other functions
Is the above possible ? an example would be great.
Thanks in advance,
-Navi