Connect ActivePivot Server through XMLA
2 Jun 20211 minute to read
The user can connect the Active Pivot server through XMLA (XML for Analysis) services using the OlapDataManager in our OLAP controls.
The following code illustrates how to connect to Active Pivot server:
// Connecting to Active Pivot Server
OlapDataManager DataManager = new OlapDataManager(@"Data Source=http://localhost:8081/var_s/xmla; Initial Catalog=VaRCubes; User ID=; Password=; Transport Compression=None;");
DataManager.DataProvider.ProviderName = Syncfusion.Olap.DataProvider.Providers.ActivePivot;
' Connecting to Active Pivot Server
Dim DataManager As OlapDataManager = New OlapDataManager("Data Source=http://localhost:8081/var_s/xmla; Initial Catalog=VaRCubes; User ID=; Password=; Transport Compression=None;")
DataManager.DataProvider.ProviderName = Syncfusion.Olap.DataProvider.Providers.ActivePivot
Refer here for more information about Active Pivot server.