I'm re-posting this question because the solution in the link provided is for an on premise issue, not Azure.
SSIS Packages In Azure Data Factory With External OData Sources
I am having trouble getting an SSIS package to work using Azure Data Factory. I can run the package locally in Visual Studio & also from the SSIS Catalog on my on premise server. The package has the following steps:
Pulls data from an external OData feed (SAP by Design). Loads the data into an Azure SQL Server staging database on a DBaaS instance. Loads the same data from Staging to a Datawarehouse on the same DBaaS instance. Steps I have taken:
Created the SSISDB on my Azure instance. Created an Azure Data Factory. Created an Azure-SSIS Integration Runtime. Created & tested a simple package to copy data from my Azure Staging database to my Azure Datawarehouse database. Deployed the SSIS package that works on prem to Azure using an SSIS Pipeline. Validated the connection string in Connection Manger points to the correct OData svc URL.
The package execution on fails validation with this error:
Error: Cannot acquire a managed connection from the run-time connection manager.
Obviously, I am missing some crucial element in my Azure set up but haven't been able to figure it out. I am very new to Azure. Any help would be greatly appreciated. :)