Using struts Action class and Servlet together!
622501Jul 23 2008 — edited Aug 27 2008Action is from org.apache.struts.action.Action and HttpServlet is from javax.servlet.http.HttpServlet.
I am using the Action class from struts and need to redirect to some html fle for some interval(to show that some processing is going on(like verifying authentication or so on)---Processing your request!...).Later this redirection should be returning to the same Action class and will be mapping to some jsp pages for showing the processed results.Is there any idea on how to do this?
I thought of using HttpServlet along with Action but as there is no multiple inheritence in JAVA,how shall I proceed.Can anyone give me some idea?