You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-scenario-function-sb-trigger.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: logic-apps
5
5
ms.suite: integration
6
6
ms.reviewer: estfan, azla
7
7
ms.topic: how-to
8
-
ms.date: 10/31/2022
8
+
ms.date: 11/7/2022
9
9
ms.custom: devx-track-csharp
10
10
#Customer intent: As a logic apps developer, I want to set up a long-running task by creating a logic app workflow that monitors and responds to messages or events and uses Azure Functions to call the workflow.
11
11
---
@@ -22,7 +22,7 @@ This how-to guide shows how to create a logic app workflow that starts with the
22
22
23
23
> [!NOTE]
24
24
>
25
-
> Although you can implement this behavior using either a Consumption and Standard logic app workflow,
25
+
> Although you can implement this behavior using either a Consumption or Standard logic app workflow,
26
26
> this example continues with a Consumption workflow.
27
27
28
28
## Prerequisites
@@ -31,7 +31,7 @@ This how-to guide shows how to create a logic app workflow that starts with the
31
31
32
32
* A Service Bus namespace. If you don't have a namespace, [create your namespace first](../service-bus-messaging/service-bus-create-namespace-portal.md). For more information, see [What is Azure Service Bus?](../service-bus-messaging/service-bus-messaging-overview.md)
33
33
34
-
* A function app, which is a container for your functions. If you don't have a function app, [create your function app first](../azure-functions/functions-get-started.md), and make sure to and make sure that you select .NET for the **Runtime stack** property.
34
+
* A function app, which is a container for your functions. If you don't have a function app, [create your function app first](../azure-functions/functions-get-started.md), and make sure that you select .NET for the **Runtime stack** property.
35
35
36
36
* Basic knowledge about [how to create a Consumption logic app workflow](quickstart-create-first-logic-app-workflow.md).
37
37
@@ -89,7 +89,7 @@ This how-to guide shows how to create a logic app workflow that starts with the
89
89
}
90
90
```
91
91
92
-
1. Under the trigger, add any other actions that you want use to process the received message.
92
+
1. Under the trigger, add any other actions that you want to use to process the received message.
93
93
94
94
For example, you can add an action that sends email with the Office 365 Outlook connector.
95
95
@@ -107,7 +107,7 @@ Next, create the function that listens to the queue and calls the endpoint on th
107
107
108
108
1. On the function app navigation menu, select **Functions**. On the **Functions** pane, select **Create**.
109
109
110
-
:::image type="content" source="./media/logic-apps-scenario-function-sb-trigger/add-new-function-to-function-app.png" alt-text="Screenshot of the Azure portal with a function app open, and 'Functions' is highlighted on the function app menu. The 'Functions' page is opened, and 'Create' is highlighted.":::
110
+
:::image type="content" source="./media/logic-apps-scenario-function-sb-trigger/add-new-function-to-function-app.png" alt-text="Screenshot of a function app with 'Functions' highlighted on the function app menu. The 'Functions' page is opened, and 'Create' is highlighted.":::
111
111
112
112
1. Under **Select a template**, select the template named **Azure Service Bus Queue trigger**. After the **Template details** section appears, which shows different options based on your template selection, provide the following information:
113
113
@@ -123,7 +123,7 @@ Next, create the function that listens to the queue and calls the endpoint on th
123
123
124
124
The Azure portal now shows the **Overview** page for your new Azure Service Bus Queue trigger function.
125
125
126
-
1. Now, write a basic function to call the endpoint for the logic app workflow that you created earlier.Before you write your function, review the following considerations:
126
+
1. Now, write a basic function to call the endpoint for the logic app workflow that you created earlier.Before you write your function, review the following considerations:
127
127
128
128
* Trigger the function by using the message from the queue message.
129
129
@@ -139,7 +139,7 @@ Next, create the function that listens to the queue and calls the endpoint on th
139
139
using System.Net.Http;
140
140
using System.Text;
141
141
142
-
// Set up the URI for the logic app workflow. You can also get this value on the logic app's 'Overview' pane, under the trigger history or an environment variable.
142
+
// Set up the URI for the logic app workflow. You can also get this value on the logic app's 'Overview' pane, under the trigger history, or from an environment variable.
0 commit comments