Skip to content

Commit 0491167

Browse files
authored
Merge pull request #188372 from dlepow/jan22
[APIM] January release
2 parents e12e1fa + e34669d commit 0491167

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed

articles/api-management/api-management-howto-developer-portal.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: dlepow
88

99
ms.service: api-management
1010
ms.topic: article
11-
ms.date: 02/02/2022
11+
ms.date: 02/10/2022
1212
ms.author: danlep
1313
ms.custom: devx-track-azurepowershell
1414
---
@@ -44,6 +44,9 @@ Customize and style the managed portal through the built-in, drag-and-drop visua
4444

4545
See [this tutorial](api-management-howto-developer-portal-customize.md) for example customizations.
4646

47+
> [!NOTE]
48+
> The managed developer portal receives and applies updates automatically. Changes that you've saved but not published to the developer portal remain in that state during an update.
49+
4750
## <a name="managed-vs-self-hosted"></a> Extensibility
4851

4952
In some cases you might need functionality beyond the customization and styling options supported in the managed developer portal. If you need to implement custom logic, which isn't supported out-of-the-box, you can modify the portal's codebase, available on [GitHub](https://github.com/Azure/api-management-developer-portal). For example, you could create a new widget to integrate with a third-party support system. When you implement new functionality, you can choose one of the following options:

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

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
---
22
title: Import SOAP API using the Azure portal | Microsoft Docs
33
description: Learn how to import a standard XML representation of a SOAP API, and then test the API in the Azure and Developer portals.
4-
services: api-management
5-
documentationcenter: ''
64
author: dlepow
7-
manager: cfowler
8-
editor: ''
9-
105
ms.service: api-management
11-
ms.workload: mobile
12-
ms.tgt_pltfrm: na
13-
ms.topic: article
14-
ms.date: 04/22/2020
6+
ms.topic: how-to
7+
ms.date: 02/10/2022
158
ms.author: danlep
169

1710
---
@@ -24,7 +17,6 @@ In this article, you learn how to:
2417
> [!div class="checklist"]
2518
> * Import SOAP API
2619
> * Test the API in the Azure portal
27-
> * Test the API in the Developer portal
2820
2921
## Prerequisites
3022

@@ -57,7 +49,7 @@ Complete the following quickstart: [Create an Azure API Management instance](get
5749
8. Enter other API settings. You can set the values during creation or configure them later by going to the **Settings** tab. The settings are explained in the [Import and publish your first API](import-and-publish.md#import-and-publish-a-backend-api) tutorial.
5850
9. Select **Create**.
5951

60-
### Test the new API in the administrative portal
52+
### Test the new API in the portal
6153

6254
Operations can be called directly from the administrative portal, which provides a convenient way to view and test the operations of an API.
6355

@@ -70,6 +62,18 @@ Operations can be called directly from the administrative portal, which provides
7062

7163
Backend responds with **200 OK** and some data.
7264

65+
## Wildcard SOAP action
66+
67+
If you need to pass a SOAP request that doesn't have a dedicated action defined in the API, you can configure a wildcard SOAP action. The wildcard action will match any SOAP request that isn't defined in the API.
68+
69+
To define a wildcard SOAP action:
70+
71+
1. In the portal, select the API you created in the previous step.
72+
1. In the **Design** tab, select **+ Add Operation**.
73+
1. Enter a **Display name** for the operation.
74+
1. In the URL, select `POST` and enter `/soapAction={any}` in the resource. The template parameter inside the curly brackets is arbitrary and doesn't affect the execution.
75+
76+
7377
[!INCLUDE [api-management-navigate-to-instance.md](../../includes/api-management-append-apis.md)]
7478

7579
[!INCLUDE [api-management-define-api-topics.md](../../includes/api-management-define-api-topics.md)]

0 commit comments

Comments
 (0)