Reputation: 387
We have a Logic App and private SOAP based Web Service hosted on some on-premise network.
Based on some parameters, we need to call this Web Service from the Log App.
What are the possible and secure ways to implement this ?
Upvotes: 3
Views: 1076
Reputation: 387
I have your Azure Relay to implement this. It didn't require me to make any changes on the on premises firewalls settings
Upvotes: 0
Reputation: 1550
The best way achieve your ask by creating a custom Logic App Connector using the On Prem Data Gateway.
Create Custom Logic App Connector as explained here
Open a custom connector and click on edit. Choose API Endpoint as SOAP and Call mode as SOAP to REST and then browse to upload WSDL file of your on-premise webservice.
Don’t forget to select “Connect via on premise data gateway”
Refer this blog for more details.
Upvotes: 2