Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
xaml web Pivot Grid - "almost" works but no data
posted

I have set up everything and have the pivot grid displaying in the page and sending XAML commands to the database but it cannot find my Cube.

I followed the steps in this example:

http://community.infragistics.com/blogs/atanas_dyulgerov/archive/2010/01/27/how-to-set-up-xmla-http-access-for-sql-server-analysis-service-2008-and-access-the-adventure-works-2008-from-an-infragistics-pivotgrid-application.aspx

(this is the only documentation I have.  I have found nothing else to help by the way)

My project is in VB and here's the code...

Partial Public Class MainPage

    Inherits UserControl

    Public Sub New()

        InitializeComponent()

        'this.Loaded += (sender, e) => { pivotGrid.ViewModel.LoadCubesAsync(); };

    End Sub

    Private Sub MainPage_Loaded(ByVal sender As Object, ByVal e As System.Windows.RoutedEventArgs) Handles Me.Loaded

        pivotGrid.ViewModel.LoadCubesAsync()

    End Sub

End Class

 

Whenever the "pivotGrid.ViewModel.LoadCubesAsync()" is called the Sql Profiler shows this XAML command on arriving at the database:

<RestrictionList xmlns="urn:schemas-microsoft-com:xml-analysis" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><CATALOG_NAME xmlns="">TestCube</CATALOG_NAME></RestrictionList>

But it does not find the cube I made called TestCube.  I am completely stuck at this point.  Can anyone please help?

Thanks,

Len