MD-XMLA.jsp 823 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<%@ page import="mondrian.xmla.test.XmlaTestServletRequestWrapper"
         language="java"
         contentType="text/xml" %><%
// $Id: //open/mondrian/webapp/MD-XMLA.jsp#4 $
// This software is subject to the terms of the Common Public License
// Agreement, available at the following URL:
// http://www.opensource.org/licenses/cpl.html.
// (C) Copyright 2003-2006 Julian Hyde, Sherman Wood
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
// Julian Hyde, 3 June, 2003

    final ServletRequest requestWrapper = new XmlaTestServletRequestWrapper(request);
    final ServletContext servletContext = config.getServletContext();
    final RequestDispatcher dispatcher = servletContext.getNamedDispatcher("myHRXmlaServlet");
    dispatcher.forward(requestWrapper, response);
%>