Skip to content

Commit 1fd907d

Browse files
committed
edits
1 parent 3e242e9 commit 1fd907d

File tree

2 files changed

+28
-23
lines changed

2 files changed

+28
-23
lines changed

articles/api-management/restify-soap-api.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,31 +37,34 @@ In this article, you learn how to:
3737
1. In the left pane, in the **APIs** section, select **APIs** > **+ Add API**.
3838
1. Under **Create from definition**, select **WSDL**.
3939

40-
![SOAP API](./media/restify-soap-api/wsdl-api.png)
40+
:::image type="content" source="./media/restify-soap-api/wsdl-api.png" alt-text="Screenshot that shows the WSDL tile in the Azure portal.":::
41+
4142
1. In **WSDL specification**, enter the URL to your SOAP API, or select **Select a file** to select a local WSDL file.
4243
1. In **Import method**, select **SOAP to REST**.
4344
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.
4445

45-
![SOAP to REST](./media/restify-soap-api/soap-to-rest.png)
46+
:::image type="content" source="./media/restify-soap-api/soap-to-rest.png" alt-text="Screenshot that shows the SOAP to REST option. lightbox="./media/restify-soap-api/soap-to-rest.png":::
47+
48+
1. The following fields are filled automatically with information from the SOAP API: **Display name**, **Name**, **Description**. Operations are filled automatically with **Display name**, **URL**, and **Description** and receive a system-generated **Name**.
49+
1. Enter other API settings. You can set the values when you create the API or configure them later by going to the **Settings** tab.
4650

47-
1. The following fields are filled automatically with information from the SOAP API: **Display name**, **Name**, **Description**. Operations are filled automatically with **Display name**, **URL**, and **Description**, and receive a system-generated **Name**.
48-
1. Enter other API settings. You can set the values during creation or configure them later by going to the **Settings** tab.
51+
For more information about API settings, see [Import and publish your first API](import-and-publish.md#import-and-publish-a-backend-api).
4952

50-
For more information about API settings, see [Import and publish your first API](import-and-publish.md#import-and-publish-a-backend-api) tutorial.
5153
1. Select **Create**.
5254

5355
## Test the new API in the Azure portal
5456

55-
Operations can be called directly from the Azure portal, which provides a convenient way to view and test the operations of an API.
57+
You can call operations directly from the Azure portal. This method provides a convenient way to view and test the operations of an API.
5658

5759
1. Select the API you created in the previous step.
5860
2. Select the **Test** tab.
5961
3. Select an operation.
6062

61-
The page shows fields for query parameters and fields for the headers. One of the headers is **Ocp-Apim-Subscription-Key**, for the subscription key of the product that is associated with this API. If you created the API Management instance, you're an admin already, so the key is filled in automatically.
62-
1. Press **Send**.
63+
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.
64+
65+
1. Select **Send**.
6366

64-
When the test is successful, the backend responds with **200 OK** and some data.
67+
When the test is successful, the back end responds with **200 OK** and some data.
6568

6669
[!INCLUDE [api-management-navigate-to-instance.md](../../includes/api-management-append-apis.md)]
6770

includes/api-management-append-apis.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,40 @@
22
author: vladvino
33
ms.service: azure-api-management
44
ms.topic: include
5-
ms.date: 04/16/2021
5+
ms.date: 03/27/2025
66
ms.author: vlvinogr
77
---
88
## Append other APIs
99

10-
You can compose an API of APIs exposed by different services, including:
10+
You can compose an API out of APIs that are exposed by different services, including:
11+
1112
* An OpenAPI specification
1213
* A SOAP API
1314
* A GraphQL API
14-
* A Web App hosted in Azure App Service
15-
* Azure Function App
15+
* A Web App that's hosted in Azure App Service
16+
* Azure Functions
1617
* Azure Logic Apps
1718
* Azure Service Fabric
1819

19-
Append a different API to your existing API using the following steps.
20+
To append an API to an existing API:
2021

2122
>[!NOTE]
22-
> When you import another API, the operations are appended to your current API.
23+
> When you import an API, the operations are appended to your current API.
2324
24-
1. Go to your Azure API Management instance in the Azure portal.
25+
1. Go to your Azure API Management instance in the Azure portal:
2526

26-
:::image type="content" source="./media/api-management-append-apis/service-page-1.png" alt-text="Screenshot of navigating to API Management instance in the portal.":::
27+
:::image type="content" source="./media/api-management-append-apis/service-page-1.png" alt-text="Screenshot that shows the API Management services page." lightbox="./media/api-management-append-apis/service-page-1.png":::
2728

2829
1. Select **APIs** on the **Overview** page or from the menu on the left.
2930

30-
:::image type="content" source="./media/api-management-append-apis/api-select-1.png" alt-text="Screenshot of selecting APIs on Overview page in the portal.":::
31+
:::image type="content" source="./media/api-management-append-apis/api-select-1.png" alt-text="Screenshot that shows the APIs selection on the Overview page. lightbox="./media/api-management-append-apis/api-select-1.png":::
32+
33+
1. Select the ellipsis (**...**) next to the API that you want to append another API to.
3134

32-
1. Click **...** next to the API that you want to append another API to.
33-
1. Select **Import** from the drop-down menu.
35+
1. Select **Import** from the drop-down menu:
3436

35-
:::image type="content" source="./media/api-management-append-apis/append-02.png" alt-text="Select import":::
37+
:::image type="content" source="./media/api-management-append-apis/append-02.png" alt-text="Screenshot that shows the Import command." lightbox="./media/api-management-append-apis/append-02.png":::
3638

37-
1. Select a service from which to import an API.
39+
1. Select a service from which to import an API:
3840

39-
:::image type="content" source="./media/api-management-append-apis/select-to-import.png" alt-text="Screenshot of selecting a service in the portal.":::
41+
:::image type="content" source="./media/api-management-append-apis/select-to-import.png" alt-text="Screenshot that shows services from which to import an API.":::

0 commit comments

Comments
 (0)