I am working with Struts.
I had a jsp page which displays a question at a time.
After answering the question it will be saved and need to retrieve the next question to display in the same jsp.
For that I am using 2 action classes for Saving and Retrieving.
Initially, I am calling retrieve.do directly to retrieve the first question,
later I am clicking next button to save it. Here I am calling save.do, which inturn calls retrieve.do after saving the answer in to the data base.
Here in logs I am able to find that the request was forwarede to the JSP with the next question and answers.
but I am geting 403 Forbidden error in the Jsp.
Any ideas will be appriciated.
Thanx in advance.
MaRu.