Skip to content

Commit 68cf61c

Browse files
authored
minor fixes
1 parent a64a746 commit 68cf61c

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

articles/azure-web-pubsub/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ ms.topic: overview
88
ms.date: 07/30/2024
99
---
1010

11-
12-
1311
# What is Azure Web PubSub service?
1412

1513
Azure Web PubSub Service makes it easy to build web applications where server and clients need to exchange data in real-time. Real-time data exchange is the bedrock of certain time-sensitive apps developers build and maintain. Developers have used the service in a variety of applications and industries, for example, in chat apps, real-time dashboards, multi-player games, online auctions, multi-user collaborative apps, location tracking, notifications, and more.

articles/azure-web-pubsub/quickstarts-livetry.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ author: kevinguo-ed
55
ms.author: kevinguo
66
ms.service: azure-web-pubsub
77
ms.topic: overview
8-
ms.date: 04/22/2025
8+
ms.date: 05/27/2025
99
---
1010

1111
# Use LiveTry to explore Azure Web PubSub capabilities
1212

13-
**LiveTry** is a browser-based tool that helps you explore Azure Web PubSub’s real-time messaging features — no code or local setup required. With just a few clicks, you can simulate 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.
1414

1515
This guide walks you through two common messaging scenarios in LiveTry, while helping you understand important concepts like **connections**, **groups**, and **messages**.
1616

@@ -31,7 +31,7 @@ Each scenario is accompanied by a short tutorial video to help you follow along.
3131

3232
Before getting started, here’s a quick refresher on core Azure Web PubSub concepts that you’ll interact with in LiveTry:
3333

34-
- **Hub**: A logical unit used to isolate and organize messaging logic. In LiveTry, all simulated clients connect to the hub you define on the **Server** tab. Because LiveTry uses your production resource, we recommend specifying a test hub name that doesn’t overlap with your production traffic.
34+
- **Hub**: A logical unit used to isolate and organize messaging logic. Clients always connects 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.
3535
- **Connection**: A persistent WebSocket connection between a client and the Azure Web PubSub service.
3636
- **Group**: A server-managed subset of connections. Messages sent to a group are delivered only to the connections within that group.
3737
- **Messages**: The payloads exchanged between clients and the service. Messages can be broadcast to all, targeted to groups, or directed to individual connections.
@@ -45,22 +45,22 @@ In this scenario, you’ll simulate server-side broadcasting using the `sendToGr
4545
### Steps
4646
1. In the Azure portal, navigate to your Azure Web PubSub resource.
4747
2. Open the **LiveTry** blade.
48-
3. Click **+ Add Client** to simulate multiple connections.
48+
3. Click **+ Add Client** to create multiple connections.
4949
4. Assign each client to a group (for example, `group1`).
5050
5. Under the **Server** tab in the "Publish messages" section, select **Send to group**.
5151
6. Enter the group name (`group1`), a sample message, and invoke the `sendToGroup` API.
5252
7. Switch to the **Client** tab and observe the message appear in each client's message log.
5353

5454
### What you’re learning
55-
You’re simulating a backend sending 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.
55+
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.
5656

5757
Try repeating the steps with multiple clients to visualize message broadcasting in action. LiveTry supports up to 5 concurrent simulated clients.
5858

5959
---
6060

6161
## Scenario 2: Send a message to a group from a client
6262

63-
In this scenario, you’ll simulate a client sending a message to other clients in the same group—similar to a user posting a message in a chat room.
63+
In this scenario, you create a client sending a message to other clients in the same group—similar to a user posting a message in a chat room.
6464

6565
### Steps
6666
1. In **LiveTry**, add two or more clients and specify the same value for the `Initial Groups` field.

0 commit comments

Comments
 (0)