I have situation here where one action method need to do a POST to another
method of a DispatchAction implementing class. I need to know if this is
possible.
I have a struts webapp that uploads file to a ftp web server and so one of
the POST variables is a Struts "FormFile" object. If it were just string
parameters, I could do away with a GET.
The idea here is to display a "Please Wait" type of intermediate page before
the first action forwards with all the POST variables to a second action
method....
Thanks for any inputs....