Tuesday, September 3, 2013

How to redirect to external application Jspx page


This blog explains about redirecting or loading Jsp(Java Server Pages) file part of external application

Develop test.jsp page , include response.sendRedirect() by passing the respective jspx url as shown below, Whenever test.jsp page launched, it will redirect the request to welcome.jspx which is running in different environment.

  <body>
    <%
  response.sendRedirect("http://dbsoax2.atd-us.icd:8002/tproui/faces/welcome.jspx");
  %>
  </body>

No comments:

Post a Comment