VOOZH about

URL: https://www.cdata.com/kb/tech/excel-ado-odserv.rst

⇱ Provide OData Services of Excel Data from a WCF Application


Provide OData Services of Excel Data from a WCF Application

πŸ‘ Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
In this article, we will demonstrate the process of generating an OData feed for Excel data by developing a WCF Service Application.

The CData ADO.NET Provider for Excel enables you to rapidly develop service-oriented applications using the Windows Communication Foundation (WCF) framework, providing Excel data data to OData consumers. This article guides you through creating an entity data model for connectivity and a WCF Data Service to expose OData services. You can then consume the feed with various OData clients, such as Power Pivot or applications using the CData ADO.NET Provider for OData.

Create the OData Service

Follow the steps below to create a WCF service application that will provide connectivity to Excel data via OData.

  1. Open Visual Studio and create a new project. Select the WCF Service Application template.
  2. Delete the autogenerated IService.cs and Service1.svc.
  3. Install Entity Framework 6:

    Use the Package Manager Console in Visual Studio to install the latest version of Entity Framework. Run the following command to download and install Entity Framework automatically:

    Install-Package EntityFramework
  4. Register the Entity Framework provider:
    1. Add the following provider entry in the "providers" section of your App.config or Web.config file. This section should already exist if the Entity Framework installation was successful.
      <configuration>
      ...
      <entityFramework>
       <providers>
       ...
       <provider invariantName="System.Data.CData.Excel" type="System.Data.CData.Excel.ExcelProviderServices, System.Data.CData.Excel.Entities.EF6" />
       </providers>
      </entityFramework>
      </configuration>
    2. Add a reference to System.Data.CData.Excel.Entities.dll, located in lib/4.0 in the installation directory.
    3. Build the project to complete the setup for using EF6.
  5. Click Project -> Add New Item -> ADO.NET Entity Data Model.
  6. In the Entity Data Model wizard that is displayed, select the 'EF Designer from Database' option.
  7. In the resulting Choose Your Connection dialog, click New Connection.
  8. In the Connection properties dialog, select the CData Excel Data Source and enter the necessary credentials.

    A typical connection string is below:

    URI='C:/MyExcelWorkbooks/SampleWorkbook.xlsx';

    Connecting to Local or Cloud-Stored (Box, Google Drive, Amazon S3, SharePoint) Excel Files

    CData Drivers let you work with Excel files stored locally and stored in cloud storage services like Box, Amazon S3, Google Drive, or SharePoint, right where they are.

    Setting connection properties for local files

    Set the URI property to local folder path.

    Setting connection properties for files stored in Amazon S3

    To connect to Excel file(s) within Amazon S3, set the URI property to the URI of the Bucket and Folder where the intended Excel files exist. In addition, at least set these properties:

    • AWSAccessKey: AWS Access Key (username)
    • AWSSecretKey: AWS Secret Key

    Setting connection properties for files stored in Box

    To connect to Excel file(s) within Box, set the URI property to the URI of the folder that includes the intended Excel file(s). Use the OAuth authentication method to connect to Box.

    Dropbox

    To connect to Excel file(s) within Dropbox, set the URI proprerty to the URI of the folder that includes the intended Excel file(s). Use the OAuth authentication method to connect to Dropbox. Either User Account or Service Account can be used to authenticate.

    SharePoint Online (SOAP)

    To connect to Excel file(s) within SharePoint with SOAP Schema, set the URI proprerty to the URI of the document library that includes the intended Excel file. Set User, Password, and StorageBaseURL.

    SharePoint Online REST

    To connect to Excel file(s) within SharePoint with REST Schema, set the URI proprerty to the URI of the document library that includes the intended Excel file. StorageBaseURL is optional. If not set, the driver will use the root drive. OAuth is used to authenticate.

    Google Drive

    To connect to Excel file(s) within Google Drive, set the URI property to the URI of the folder that includes the intended Excel file(s). Use the OAuth authentication method to connect and set InitiateOAuth to GETANDREFRESH.

    πŸ‘ Required connection properties, specified in the Add Connection dialog. (Salesforce is shown.)
  9. Select Excel tables and views that you want OData clients to access. πŸ‘ Available tables in the Entity Data Model Wizard. (Salesforce is shown.)
  10. Click Project -> Add New Item -> WCF Data Service.
  11. Specify the data source class and configure access to the new WCF Data Service. In the example below, the Access Rule for the entities is set to All. This means that any user will be able to read and modify data.

     
    using System;
    using System.Collections.Generic;
    using System.Data.Services;
    using System.Data.Services.Common;
    using System.Linq;
    using System.ServiceModel.Web;
    using System.Web;
    
    namespace ExcelService{
     public class ExcelDataService : DataService<ExcelEntities> {
     public static void InitializeService(DataServiceConfiguration config) {
     config.SetEntitySetAccessRule("*", EntitySetRights.All);
     config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V3;
     }
     }
    }
    	
  12. Run the project. Applications that support OData can now access the Salesforce data and reflect any changes. You can access the feed in your browser. The feed will resemble the following: πŸ‘ The raw OData feed. (Salesforce is shown.)

Consume the OData Service from Power Pivot

You can now use the service from any OData client; for example, Excel Power Pivot.

  1. Open Excel and click on the Power Pivot Window button.
  2. A new pop-up will appear. Select the option From Data Feeds.
  3. In the resulting Table Import Wizard, enter the OData URL. For example, http://localhost:12449/ExcelDataService.svc/. πŸ‘ The OData URL for Excel.
  4. After connecting to the OData service, click the Next button at the bottom of the window.
  5. A table listing of the available tables will appear in the next window of the wizard. Select which tables you want to import and click Finish. πŸ‘ Available tables in the Table Import Wizard. (Salesforce is shown.)
  6. Click Close to import the data in Power Pivot. πŸ‘ The table loaded in Power Pivot. (Salesforce is shown.)
CodeProject

Ready to get started?

Download a free trial of the Excel Data Provider to get started:

 Download Now

Learn more:

πŸ‘ Microsoft Excel Icon
Excel ADO.NET Provider

Easily connect .NET applications with real-time data from Excel spreadsheets. Use Excel to manage the data that powers your applications.