You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2016/06/04 08:46:37 UTC

svn commit: r1746787 - in /axis/axis2/java/core/trunk/modules: transport/http/src/org/apache/axis2/transport/http/ webapp/src/main/webapp/WEB-INF/views/ webapp/src/main/webapp/axis2-web/

Author: veithen
Date: Sat Jun  4 08:46:37 2016
New Revision: 1746787

URL: http://svn.apache.org/viewvc?rev=1746787&view=rev
Log:
Move JSP views to /WEB-INF/views.

Added:
    axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/WEB-INF/views/listFaultyService.jsp
      - copied unchanged from r1746485, axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listFaultyService.jsp
    axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/WEB-INF/views/listServices.jsp
      - copied unchanged from r1746485, axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listServices.jsp
Removed:
    axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listFaultyService.jsp
    axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listServices.jsp
Modified:
    axis/axis2/java/core/trunk/modules/transport/http/src/org/apache/axis2/transport/http/AbstractAgent.java

Modified: axis/axis2/java/core/trunk/modules/transport/http/src/org/apache/axis2/transport/http/AbstractAgent.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/transport/http/src/org/apache/axis2/transport/http/AbstractAgent.java?rev=1746787&r1=1746786&r2=1746787&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/transport/http/src/org/apache/axis2/transport/http/AbstractAgent.java (original)
+++ axis/axis2/java/core/trunk/modules/transport/http/src/org/apache/axis2/transport/http/AbstractAgent.java Sat Jun  4 08:46:37 2016
@@ -117,7 +117,7 @@ public class AbstractAgent {
                               HttpServletResponse httpServletResponse)
             throws IOException, ServletException {
         httpServletResponse.setContentType("text/html");
-        httpServletRequest.getRequestDispatcher(Constants.AXIS_WEB_CONTENT_ROOT + jspName)
+        httpServletRequest.getRequestDispatcher("/WEB-INF/views/" + jspName)
                 .include(httpServletRequest, httpServletResponse);
     }