Package mondrian.olap4j
Class MondrianInprocProxy
- java.lang.Object
-
- mondrian.olap4j.MondrianInprocProxy
-
public class MondrianInprocProxy extends Object
Proxy which implements XMLA requests by talking to mondrian in-process. This is more convenient to debug than an inter-process request using HTTP.- Author:
- jhyde
-
-
Constructor Summary
Constructors Constructor Description MondrianInprocProxy(Map<String,String> catalogNameUrls, String urlString)
Creates and initializes a MondrianInprocProxy.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
get(XmlaOlap4jServerInfos infos, String request)
String
getEncodingCharsetName()
Future<byte[]>
submit(XmlaOlap4jServerInfos infos, String request)
-
-
-
Constructor Detail
-
MondrianInprocProxy
public MondrianInprocProxy(Map<String,String> catalogNameUrls, String urlString)
Creates and initializes a MondrianInprocProxy.- Parameters:
catalogNameUrls
- Collection of catalog names and the URL where their catalog is to be found. For testing purposes, this should contain a catalog called "FoodMart".urlString
- JDBC connect string; must begin with "jdbc:mondrian:"
-
-