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
85
How I can restrict access to cubes?
posted
We are using the XamPivotGrid, we restrict access to certain hubs through Service Analyze SQL 2008 (via XMLA) using as parameter the user ID logged. Another way I thought is removing cubes programmatically. Greetings. Carlos Rdz.
Parents
  • 7922
    posted

    Hi

    In our latest service release there is a new feature that allows you to use Basic, Windows or Digest authentication when you make the connection to msmdpump.dll. If that is what you need you can set the right credentials within XAML or in code behind:

     

    <olap:XmlaDataSource.Credentials>

        <olap:XmlaNetworkCredential Domain="domain"

                                    Password="password"

                                    UserName="username">

        </olap:XmlaNetworkCredential>

    </olap:XmlaDataSource.Credentials>

     

    Do not set the Domain property when you are using Digest authentication.

    Regards

    Todor

Reply Children