Skip to content

Commit 5625ebd

Browse files
committed
address comments
1 parent 6277c84 commit 5625ebd

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

en/asgardeo/docs/get-started/try-samples/ws-federation-webapp.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ By following this guide, you will be able to deploy a WS-Federation-based web ap
55
!!! info
66
{{product_name}} uses its passive security token service (Passive STS) as its WS-Federation implementation.
77
Passive STS is capable of issuing SAML 1.1 and 2.0 security tokens. To request a SAML 2.0 security token, the Request Security Token (RST) should be sent to the passive STS endpoint with the token type, `SAMLV2.0`. If no RST is specified, {{product_name}} issued a SAML 1.1 token by default.
8-
---
98

10-
### Prerequisites
9+
## Prerequisites
1110

1211
- Download [Apache Tomcat 8.x](https://tomcat.apache.org/download-80.cgi){:target="_blank"} and install it. Tomcat server installation location will later be referred to as `<TOMCAT_HOME>` in this guide.
1312

@@ -28,7 +27,8 @@ To deploy the sample web app on a web container:
2827
To configure additional properties for the sample application:
2928

3029
1. Add the following configurations to the `web.xml` file in `<TOMCAT_HOME>/apache-tomcat-<version>/webapps/PassiveSTSSampleApp/WEB-INF`.
31-
- Specify `idpUrl` as the Identity Server's Passive STS URL.
30+
- Specify Asgardeo Passive STS URL as `idpUrl`.
31+
3232
``` xml
3333
<init-param>
3434
<param-name>idpUrl</param-name>
@@ -37,6 +37,7 @@ To configure additional properties for the sample application:
3737
```
3838

3939
- Specify the `replyURL` as the URL of the web app.
40+
4041
``` xml
4142
<init-param>
4243
<param-name>replyUrl</param-name>
@@ -45,6 +46,7 @@ To configure additional properties for the sample application:
4546
```
4647

4748
- Specify the ` realm ` as a unique identifier for the web app.
49+
4850
``` xml
4951
<init-param>
5052
<param-name>realm</param-name>
@@ -54,9 +56,9 @@ To configure additional properties for the sample application:
5456

5557
2. Restart the tomcat server.
5658

57-
## Configure the service provider
59+
## Configure the application in Asgardeo
5860

59-
1. On the WSO2 Identity Server Console, go to **Applications**.
61+
1. On the {{ product_name }} Console, go to **Applications**.
6062

6163
2. Click **New Application** and select **Standard-Based Application**.
6264

@@ -68,25 +70,25 @@ To configure additional properties for the sample application:
6870
<tr>
6971
<td>Name</td>
7072
<td>
71-
Give a unique name to identify your application.
73+
An unique name to identify your application.
7274
<p>e.g.:<code>PassiveSTSSampleApp</code></p>
7375
</td>
7476
</tr>
7577
<tr>
7678
<td>Protocol</td>
77-
<td>Select <b>WS-Federation</b>.</td>
79+
<td><b>WS-Federation</b>.</td>
7880
</tr>
7981
<tr>
8082
<td>Realm</td>
8183
<td>
82-
This should be a unique identifier for the web app. Provide the same realm name given to the web app you are configuring WS-Federation for.
84+
An unique identifier for the web app. Provide the same realm name given to the web app you are configuring WS-Federation for.
8385
<p>e.g.:<code>PassiveSTSSampleApp</code></p>
8486
</td>
8587
</tr>
8688
<tr>
8789
<td>Reply URL</td>
8890
<td>
89-
Provide the URL of the web app you are configuring WS-Federation for. This endpoint URL will handle the token response.
91+
URL of the web app you are configuring WS-Federation for. This endpoint URL will handle the token response.
9092
<p><code>http://localhost:8080/PassiveSTSSampleApp/index.jsp</code></p>
9193
</td>
9294
</tr>

0 commit comments

Comments
 (0)