Hi I have the following code written for displaying data fetched from response bean on jsp page through servlet. However I am facing problem since I am unable to find a way to call mypage.jsp only once. The code is as below:

Servlet

public class AjaxServlet extends HttpServlet{
private ResponseBean responseBean = new ResponseBean();
public void init(ServletConfig config) throws ServletException {    
        super.init(config);
    }

    public void destroy() {

    }

    public void doPost(HttpServletRequest request,HttpServletResponse response) throws IOException, ServletException {
       try {            
            System.out.println("Request----->"+request.getParameter("uniqueCode"));         
            if(request.getParameter("uniqueCode").equalsIgnoreCase("200")){
                responseBean.setVehNumber("200");
                responseBean.setCapacity("2");

            } else {
                responseBean.setVehNumber("202");
                responseBean.setCapacity("1");
            }

            response.setContentType("text/html");                        
            response.setCharacterEncoding("UTF-8"); 

            request.getSession().setAttribute("responseBean", responseBean);
            **RequestDispatcher requestDispatcher = getServletContext().getRequestDispatcher("/MyPage.jsp");**
            requestDispatcher.forward(request, response);
            response.getWriter().write("Success");

        } catch (Exception e) {     
             e.printStackTrace();
             response.getWriter().write(("Error:"+e.getMessage()));          
        }       
    }

    public void doGet(HttpServletRequest request,HttpServletResponse response) throws IOException, ServletException {
        doPost(request,response);
    }

    public ResponseBean getResponseBean() {
        return responseBean;
    }

    public void setResponseBean(ResponseBean responseBean) {
        this.responseBean = responseBean;
    }

}

Mypage.jsp

<jsp:useBean id="responseBean" class="com.test.bean.ResponseBean scope="request">

<jsp:setProperty name="responseBean" property="*"/>

</jsp:useBean>
<body>
    **<%System.out.println("Inside body"+navigationBean.getCapacity()); %>**    

    <table>
    <tr>
    <td><input type="text" id="vehicleNumber" name="vehicleNumber" value="${navigationBean.vehicleNumber}"/></td>
    <td><input type="text" id="capacity" name="capacity" value="${navigationBean.capacity}"/></td>
    </tr>
    </table>
    </body>

Index.jsp

onActivate : function(node) {
                        $("#echoActive").text(node.data.title);
                        alert(node.data.title);
                        $.ajax({
                             url : AJAX_SERVLET,
                             type: "GET",
                             data: "vehicleNumber="+node.data.title,
                             success : function(data) {                             
                                **$("[id=content]").attr("src", '/portlet/MyPage.jsp');**
                              }
                            });
                    }

Since Mypage.jsp is being called twice, once in the servlet(highlighted in bold) while forwarding th response and second in View.jsp(highlighted in bold too) on click of the tree node MyPage.jsp should be displayed, thus the system.out.println in MyPage.jsp is being set twice, once with the value and later as null. Please suggest me a way so that the Mypage.jsp is called only once with the values set?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.