Getting data from UltiPro Reports as a service using SSIS

tobz 161 Reputation points
2021-01-18T17:26:22.763+00:00

Hi everyone,

Anyone tried pulling data from ultipro reports as a service (WSHttpBinding_IBIDataService) using SSIS.

Please I need assistance on how to create the reference used in the script component.

Thanks

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,704 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Monalv-MSFT 5,926 Reputation points
    2021-01-19T06:06:47.297+00:00

    Hi @tobz ,

    This tutorial shows how to call a web API from a .NET application, using System.Net.Http.HttpClient.

    static async Task RunAsync()
    {
    // Update port # in the following line.
    client.BaseAddress = new Uri("http://localhost:64195/");
    client.DefaultRequestHeaders.Accept.Clear();
    client.DefaultRequestHeaders.Accept.Add(
    new MediaTypeWithQualityHeaderValue("application/json"));
    ...

    Please refer to Call a Web API From a .NET Client (C#).

    Best Regards,
    Mona

    ----------

    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.