macOS DSN Configuration
This section shows how to set up ODBC connectivity and configure DSNs on macOS.
Minimum macOS Version
The CData ODBC Driver for Microsoft Power BI XMLA driver requires macOS Sierra (10.12) or above.
Licensing the Driver
In a terminal, run the following commands to license the driver. To activate a trial, omit the <key> input.
cd "/Applications/CData ODBC Driver for Microsoft Power BI XMLA/bin"
sudo ./install-license.sh <key>
You'll be prompted for a name and password. These refer to your name and your machine's password.
Connecting to Microsoft Power BI XMLA
Establishing a connection to Microsoft Power BI XMLA first requires selecting the appropriate authentication method based on your environment and security needs. The AuthScheme connection property determines how authentication is handled, whether through user-based credentials, service principals, or certificate-based authentication for automated workflows.
Once the authentication method is chosen, configure the necessary connection properties, such as client credentials, tokens, or certificates to enable secure access. Then set the Workspace property to a valid PowerBIXMLA Workspace. Note that only workspaces in a Power BI Premium capacity are supported; workspaces without Premium capacity are not compatible.
Choosing an Authentication Method
The CData ODBC Driver for Microsoft Power BI XMLA supports three authentication methods to accommodate different connection scenarios. The best choice depends on whether the connection is user-based or headless, as well as the security requirements of your environment. A headless environment refers to a setup where no interactive user is present, and no graphical user interface is available. This setup is commonly used for automated workflows, including scheduled data syncs, ETL processes, and background reporting tasks where no user interaction is required.
Some authentication methods support an embedded OAuth application, which is a pre-configured OAuth app included with the driver to simplify setup. For more control, you can also use a custom OAuth application, which requires registering your own credentials with Azure AD.
The following table outlines the available authentication methods to help determine the best approach for your use case.
| Authentication Method | Usage Considerations |
| AzureAD | Best Used For:
Advantages:
|
| AzureServicePrincipal | Best Used For:
Advantages:
|
| AzureServicePrincipalCert | Best Used For:
Advantages:
|
Authenticating to Microsoft Power BI XMLA
Different deployment scenarios require different authentication setups. Whether you are connecting from a desktop application, web-based workflow, or a headless machine, the authentication method you choose depends on factors such as user interaction, security requirements, and automation needs.
The following table outlines use cases, advantages, and considerations for each deployment type.
| Deployment Type | Usage Considerations |
| Desktop Applications | Best Used For:
Advantages:
|
| Web Applications | Best Used For:
Advantages:
|
| Headless Machines | Best Used For:
Advantages:
|
Azure AD
Azure AD is Microsoft’s multi-tenant, cloud-based directory and identity management service. It is user-based authentication that requires that you set AuthScheme to AzureAD.Authentication to Azure AD over a Web application always requires the creation of a custom OAuth application .
For details about creating a custom OAuth application, see Creating an Azure AD Application.
Desktop Applications
CData provides an embedded OAuth application that simplifies connection to Azure AD from a Desktop application.You can also authenticate from a desktop application using a custom OAuth application. (For further information, see Creating an Azure AD Application.) To authenticate via Azure AD, set these parameters:
- AuthScheme: AzureAD.
-
Custom applications only:
- OAuthClientId: The client Id assigned when you registered your custom OAuth application.
- OAuthClientSecret: The client secret assigned when you registered your custom OAuth application.
- CallbackURL: The redirect URI you defined when you registered your custom OAuth application.
When you connect, the driver opens Microsoft Power BI XMLA's OAuth endpoint in your default browser. Log in and grant permissions to the application.
The driver completes the OAuth process, obtaining an access token from Microsoft Power BI XMLA and using it to request data. The OAuth values are saved in the path specified in OAuthSettingsLocation. These values persist across connections.
When the access token expires, the driver refreshes it automatically.
Headless Machines
To configure the driver with a user account on a headless machine, you must authenticate on another device that has an internet browser.
You can do this in either of the following ways:
- Obtain the OAuthVerifier value as described below in Option 1: Obtain and Exchange a Verifier Code.
- Install the driver on another machine as described below in Option 2: Transfer OAuth Settings. After you authenticate via the usual browser-based flow, transfer the OAuth authentication values.
Option 1: Obtain and Exchange a Verifier Code
-
Find the authorization endpoint.
Custom applications only: Set these properties to create the Authorization URL:
- OAuthClientId: The client Id assigned when you registered your application.
- OAuthClientSecret: The client secret assigned when you registered your application.
Custom and embedded applications: Call the GetOAuthAuthorizationUrl stored procedure.
- Open the URL returned by the stored procedure in a browser.
- Log in and grant permissions to the driver. You are redirected to the callback URL, which contains the verifier code.
- Save the value of the verifier code. You will use this later to set the OAuthVerifier connection property.
-
Exchange the OAuth verifier code for OAuth refresh and access tokens.
At the headless machine, set these properties:
- AuthScheme: AzureAD.
- OAuthVerifier: The verifier code.
- OAuthSettingsLocation: The location of the file that holds the OAuth token values that persist across connections.
-
Custom applications only:
- OAuthClientId: The client Id in your custom OAuth application settings.
- OAuthClientSecret: The client secret in the custom OAuth application settings.
-
After the OAuth settings file is generated, reset the following properties to connect:
- OAuthSettingsLocation: The location containing the encrypted OAuth authentication values. Make sure this location grants read and write permissions to the driver to enable the automatic refreshing of the access token.
-
Custom applications only:
- OAuthClientId: The client Id assigned when you registered your application.
- OAuthClientSecret: The client secret assigned when you registered your application.
Option 2: Transfer OAuth Settings
Before you can connect via a headless machine, you must create and install a connection with the driver on a device that supports an internet browser. Set the connection properties as described above, in Desktop Applications.
After you complete the instructions in Desktop Applications, the resulting authentication values are encrypted and written to the location specified by OAuthSettingsLocation. The default filename is OAuthSettings.txt.
Once you have successfully tested the connection, copy the OAuth settings file to your headless machine.
At the headless machine, set these properties:
- AuthScheme: AzureAD.
- OAuthSettingsLocation: The location of your OAuth settings file. Make sure this location gives read and write permissions to the driver to enable the automatic refreshing of the access token.
-
Custom applications only:
- OAuthClientId: The client Id assigned when you registered your application.
- OAuthClientSecret: The client secret assigned when you registered your application.
Azure Service Principal
Service principals are security objects within an Azure AD application that define what that application can do within a particular Azure AD tenant. Service Principals are created in the Azure service portal. As part of the creation process we also specify whether the service principal will access Azure AD resources via a client secret or a certificate.Instead of being tied to a particular user, service principal permissions are based on the roles assigned to them. The application access to the resources is controlled through the assigned roles' permissions.
When authenticating using an Azure Service Principal, you must register an application with an Azure AD tenant, as described in Creating an Azure AD App with Service Principal.
You are ready to connect after setting the properties described in this subsection. These vary, depending on whether you will authenticate via a client secret or a certificate.
Authentication with Client Secret
- AuthScheme: AzureServicePrincipal.
- AzureTenant: The Azure AD tenant to which you wish to connect.
- OAuthGrantType: CLIENT.
- OAuthClientId: The client Id in your application settings.
- OAuthClientSecret: The client secret in your application settings.
Authentication with Certificate
- AuthScheme: AzureServicePrincipalCert.
- AzureTenant: The Azure AD tenant to which you wish to connect.
- OAuthGrantType: CLIENT.
- OAuthClientId: The client Id in your application settings.
- OAuthJWTCert: The JWT Certificate store.
- OAuthJWTCertType: The JWT Certificate store type.
Uninstalling the Driver
The easiest way to uninstall the driver is to open a terminal and run the included uninstall.sh script, located in the installation directory. For example:
cd "/Applications/CData ODBC Driver for Microsoft Power BI XMLA" sudo ./uninstall.sh
Note: The script needs to be run from the installation directory.