Hi,
I wan't to connect Angular PivotView control to OLAP data source (MSSQL Analysis Service) using REST API (.NET Core 3). On backend I'm using ADOMD.NET client to connect and query cube/database. I have single endpoint defined for this (POST /api/olap/testOlap) that accepts a custom object created from xml schema specification in request body.
When looking at network in dev tools using https://bi.syncfusion.com/olap/msmdpump.dll as data source, I can see multiple requests being made to msmdpump.dll on component initial load (picture below).
I want to replicate this initial cube metadata load using my own API endpoint in a single api call. I figure it out for any consecutive request (since there is actual query sent to server in XML request) when user adds/remove field to pivot table. But for this initial load I can't figure it out.
Can anyone help me?