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/azure-web-pubsub/quickstarts-livetry.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
@@ -10,7 +10,7 @@ ms.date: 05/27/2025
10
10
11
11
# Use LiveTry to explore Azure Web PubSub capabilities
12
12
13
-
**LiveTry** is a browser-based tool that helps you use Azure Web PubSub’s real-time messaging features — no code or local setup required. With just a few clicks, you can create clients, join groups, and send messages using both client-side and server-side APIs.
13
+
**LiveTry** is a browser-based tool that helps you use Azure Web PubSub’s real-time messaging features—no code or local setup required. With just a few clicks, you can create clients, join groups, and send messages using both client-side and server-side APIs.
14
14
15
15
This guide walks you through two common messaging scenarios in LiveTry, while helping you understand important concepts like **connections**, **groups**, and **messages**.
16
16
@@ -27,7 +27,7 @@ You explore two messaging patterns often used in real-time applications:
27
27
28
28
## Key concepts
29
29
30
-
Before getting started, here’s a quick refresher on core Azure Web PubSub concepts that you interact with in LiveTry:
30
+
Before we get started, here’s a quick refresher on core Azure Web PubSub concepts that you interact with in LiveTry:
31
31
32
32
-**Hub**: A logical unit used to isolate and organize messaging logic. Clients always connect to a hub. With LiveTry, real traffic goes through the resource. For this tutorial, we recommend specifying a test hub name that doesn’t overlap with your production traffic.
33
33
-**Connection**: A persistent WebSocket connection between a client and the Azure Web PubSub service.
@@ -38,7 +38,7 @@ Before getting started, here’s a quick refresher on core Azure Web PubSub conc
38
38
39
39
## Scenario 1: Send a message to a group from the server
40
40
41
-
In this scenario, you simulate server-side broadcasting using the `sendToGroup` REST API. This demonstrates how the service routes a message from your backend to all clients in a specified group.
41
+
In this scenario, you simulate server-side broadcasting using the `sendToGroup` REST API. This scenario demonstrates how the service routes a message from your backend to all clients in a specified group.
42
42
43
43
### Steps
44
44
1. In the Azure portal, navigate to your Azure Web PubSub resource.
@@ -52,7 +52,7 @@ In this scenario, you simulate server-side broadcasting using the `sendToGroup`
52
52
### What you’re learning
53
53
You send messages to a group of clients using RESTful APIs. LiveTry demonstrates how server-to-group communication works without needing to deploy a backend. Azure Web PubSub also provides server SDKs for C#, JavaScript, Java, and Python.
54
54
55
-
Try repeating the steps with multiple clients to visualize message broadcasting in action. LiveTry supports up to five concurrent simulated clients.
55
+
To visualize message broadcasting in action, try repeating the steps with multiple clients . LiveTry supports up to five concurrent simulated clients.
56
56
57
57
---
58
58
@@ -62,9 +62,9 @@ In this scenario, you create a client sending a message to other clients in the
62
62
63
63
### Steps
64
64
1. In **LiveTry**, add two or more clients and specify the same value for the `Initial Groups` field.
65
-
2. For the client that will send the message, select **Allow client to send to all groups**.
65
+
2. For the client that sends the message, select **Allow client to send to all groups**.
66
66
3. Switch to that client’s panel, specify the group name, enter a message, and click **Invoke**.
67
-
4. The other clients in the group will receive the message in real time.
67
+
4. The other clients in the group receive the message in real time.
68
68
69
69
### What you’re learning
70
70
This scenario showcases **client-to-group messaging**, which is ideal in applications where server round-trips introduce unnecessary latency. It's a core part of Web PubSub’s **client publish/subscribe model**.
@@ -82,5 +82,5 @@ This scenario showcases **client-to-group messaging**, which is ideal in applica
82
82
## Next steps
83
83
84
84
- Learn more about [key concepts](./key-concepts.md) in Azure Web PubSub
85
-
-Follow the [Quickstart guide](./quickstarts-pubsub-among-clients.md)to build a local sample
85
+
-To build a local sample, follow the [Quickstart guide](./quickstarts-pubsub-among-clients.md)
86
86
- Explore guides under "How-to guides" for common tasks when developing with Azure Web PubSub
0 commit comments