Training
Module
Integrate OpenAPI-enabled Web APIs with Azure API Management through Visual Studio - Training
Learn how to add an OpenAPI-enabled Web API application to Azure API Management through Visual Studio.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
APPLIES TO: All API Management tiers
This article shows how to import a SOAP API as a WSDL specification and then convert it to a REST API. It also shows how to test the API in Azure API Management.
In this article, you learn how to:
Note
WSDL import to API Management is subject to certain limitations. WSDL files with wsdl:import
, xsd:import
, and xsd:include
directives aren't supported. For an open-source tool to resolve and merge these dependencies in a WSDL file, see this GitHub repo.
In the Azure portal, search for and select API Management services:
On the API Management services page, select your API Management instance:
In the left pane, in the APIs section, select APIs.
On the APIs page, select + Add API.
Under Create from definition, select WSDL:
In WSDL specification, enter the URL to your SOAP API, or click Select a file to select a local WSDL file.
Under Import method, select SOAP to REST. When this option is selected, API Management attempts to make an automatic transformation between XML and JSON. In this case, consumers should call the API as a RESTful API, which returns JSON. API Management converts each request to a SOAP call.
The Display name and Name boxes are filled automatically with information from the SOAP API.
Display name, URL, and Description information is automatically entered for operations. Operations also receive a system-generated Name.
Enter other API settings, and then select Create. You can also configure these values later by going to the Settings tab.
For more information about API settings, see Import and publish your first API.
You can call operations directly from the Azure portal. This method provides a convenient way to view and test the operations of an API.
Select the API you created in the previous step.
Select the Test tab.
Select an operation.
The page shows fields for query parameters and fields for the headers. One of the headers is Ocp-Apim-Subscription-Key. This header is for the subscription key of the product that's associated with this API. If you created the API Management instance, you're an admin already, so the key is filled in automatically.
Select Send.
When the test is successful, the backend responds with 200 OK and some data.
You can compose an API out of APIs that are exposed by different services, including:
Note
When you import an API, the operations are appended to your current API.
To append an API to an existing API:
Go to your Azure API Management instance in the Azure portal:
Select APIs on the Overview page or select APIs > APIs in the menu on the left.
Select the ellipsis (...) next to the API that you want to append another API to.
Select Import from the drop-down menu:
Select a service from which to import an API.
Training
Module
Integrate OpenAPI-enabled Web APIs with Azure API Management through Visual Studio - Training
Learn how to add an OpenAPI-enabled Web API application to Azure API Management through Visual Studio.