How to Connect to Mondrain Server through XMLA
The Syncusion OlapClient can also be connected to Mondrian Server. The ConnectionString to connect Mondrian server is as follows.
C#
// Give the local server name for the cube in Datasource and database name in Initial Catalog.
OlapDataManager OlapDataManager= new OlapDataManager(@"Datasource=http://bi.syncfusion.com:8080/mondrian/xmla; initial catalog=FoodMart;");
VB
'Give the local server name for the cube in Datasource and database name in Initial Catalog.
Dim olapDataManager As OlapDataManager = New OlapDataManager(@"Datasource=http://bi.syncfusion.com:8080/mondrian/xmla; initial catalog=FoodMart;" )