Skip to content

Commit 792f99e

Browse files
committed
2 parents 8f3faf3 + af7bd67 commit 792f99e

File tree

12 files changed

+255
-200
lines changed

12 files changed

+255
-200
lines changed

articles/active-directory-b2c/partner-idemia.md

Lines changed: 128 additions & 145 deletions
Large diffs are not rendered by default.

articles/active-directory-domain-services/migrate-from-classic-vnet.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: active-directory
88
ms.subservice: domain-services
99
ms.workload: identity
1010
ms.topic: how-to
11-
ms.date: 01/29/2023
11+
ms.date: 03/10/2023
1212
ms.author: justinha
1313
---
1414

@@ -174,11 +174,11 @@ Before you begin the migration process, complete the following initial checks an
174174

175175
The following network security group Inbound rules are required for the managed domain to provide authentication and management services. Don't edit or delete these network security group rules for the virtual network subnet your managed domain is deployed into.
176176

177-
| Inbound port number | Protocol | Source | Destination | Action | Required | Purpose |
178-
|:-----------:|:--------:|:----------------------------------:|:-----------:|:------:|:--------:|:--------|
179-
| 5986 | TCP | AzureActiveDirectoryDomainServices | Any | Allow | Yes | Management of your domain. |
180-
| 3389 | TCP | CorpNetSaw | Any | Allow | Optional | Debugging for support. |
181-
| 636 | TCP | AzureActiveDirectoryDomainServices | Inbound | Allow | Optional | Secure LDAP. |
177+
| Source | Source service tag | Source port ranges | Destination | Service | Destination port ranges | Protocol | Action | Required | Purpose |
178+
|:-----------:|:----------------------------------:|:------------------:|:-------------:|:-------:|:-----------------------:|:--------:|:------:|:--------:|:--------|
179+
| Service tag | AzureActiveDirectoryDomainServices | * | Any | WinRM | 5986 | TCP | Allow | Yes | Management of your domain |
180+
| Service tag | CorpNetSaw | * | Any | WinRM | 3389 | TCP | Allow | Optional | Debugging for support |
181+
| Service tag | AzureActiveDirectoryDomainServices | * | Any | WinRM | 636 | TCP | Allow | Optional | Secure LDAP |
182182

183183
Make a note of this target resource group, target virtual network, and target virtual network subnet. These resource names are used during the migration process.
184184

articles/active-directory/develop/supported-accounts-validation.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,19 @@ ms.reviewer: manrath, sureshja
1515

1616
# Validation differences by supported account types (signInAudience)
1717

18-
When registering an application with the Microsoft identity platform for developers, you're asked to select which account types your application supports. In the application object and manifest, this property is `signInAudience`.
18+
When registering an application with the Microsoft identity platform for developers, you're asked to select which account types your application supports. You can refer to the **Help me choose** link under **Supported account types** during the registration process. The value you select for this property has implications on other app object properties.
1919

20-
The options include the following values:
20+
After the application has been registered, you can check or change the account type that the application supports at any time. Under the **Manage** pane of your application, search for **Manifest** and find the `signInAudience` value. The different account types, and the corresponding `signInAudience` are shown in the following table:
2121

22-
- **AzureADMyOrg**: Only accounts in the organizational directory where the app is registered (single-tenant).
23-
- **AzureADMultipleOrgs**: Accounts in any organizational directory (multi-tenant).
24-
- **AzureADandPersonalMicrosoftAccount**: Accounts in any organizational directory (multi-tenant) and personal Microsoft accounts (for example, Skype, Xbox, and Outlook.com).
22+
| Supported account types (Register an application) | `signInAudience` (Manifest) |
23+
|---------------------------------------------------|-----------------------------|
24+
| Accounts in this organizational directory only (Single tenant) | `AzureADMyOrg` |
25+
| Accounts in any organizational directory (Any Azure AD directory - Multitenant) | `AzureADMultipleOrgs` |
26+
| Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox) | `AzureADandPersonalMicrosoftAccount` |
2527

26-
For registered applications, you can find the value for supported account types on the **Authentication** section of an application. You can also find it under the `signInAudience` property in the **Manifest**.
28+
If you change this property you may need to change other properties first.
2729

28-
The value you select for this property has implications on other app object properties. As a result, if you change this property you may need to change other properties first.
30+
## Validation differences
2931

3032
See the following table for the validation differences of various properties for different supported account types.
3133

articles/app-service/includes/quickstart-java/quickstart-java-linux-maven-pivot.md

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,23 @@ If Maven isn't your preferred development tool, check out our similar tutorials
3939

4040
# [Java SE](#tab/javase)
4141

42-
Clone the [Spring Boot Getting Started](https://github.com/spring-guides/gs-spring-boot) sample project and check out the source code that runs with this version of the article.
42+
Clone the [sample project](https://github.com/Azure-Samples/app-service-java-quickstart) and check out the source code that runs with this version of the article.
4343

4444
```azurecli-interactive
45-
git clone https://github.com/spring-guides/gs-spring-boot
46-
git checkout 05ffa84
45+
git clone https://github.com/Azure-Samples/app-service-java-quickstart
4746
```
4847

49-
Change directory to the completed project.
48+
Change directory to the completed project and build from the top level. Then `cd` to the subdirectory for booty duke.
5049

5150
```azurecli-interactive
52-
cd gs-spring-boot/complete
51+
cd app-service-java-quickstart
52+
git checkout 20230308
53+
mvn clean install
54+
cd booty-duke-app-service
5355
```
5456

57+
58+
5559
# [Tomcat](#tab/tomcat)
5660

5761
Execute the following Maven command in the Cloud Shell prompt to create a new app named `helloworld`:
@@ -71,13 +75,16 @@ cd helloworld
7175
Clone the Pet Store demo application.
7276

7377
```azurecli-interactive
74-
git clone https://github.com/agoncal/agoncal-application-petstore-ee7.git
78+
git clone https://github.com/Azure-Samples/app-service-java-quickstart
7579
```
7680

77-
Change directory to the cloned project.
81+
Change directory to the completed project and build from the top level. Then `cd` to the subdirectory for petstore.
7882

7983
```azurecli-interactive
80-
cd agoncal-application-petstore-ee7
84+
cd app-service-java-quickstart
85+
git checkout 20230308
86+
mvn clean install
87+
cd petstore-ee7
8188
```
8289

8390
---
@@ -88,45 +95,47 @@ cd agoncal-application-petstore-ee7
8895
> The Maven plugin supports **Java 17** and **Tomcat 10.0**. For more information about latest support, see [Java 17 and Tomcat 10.0 are available on Azure App Service](https://devblogs.microsoft.com/java/java-17-and-tomcat-10-0-available-on-azure-app-service/).
8996
9097

91-
The deployment process to Azure App Service will use your Azure credentials from the Azure CLI automatically. If the Azure CLI is not installed locally, then the Maven plugin will authenticate with Oauth or device login. For more information, see [authentication with Maven plugins](https://github.com/microsoft/azure-maven-plugins/wiki/Authentication).
98+
The deployment process to Azure App Service uses your Azure credentials from the Azure CLI automatically. If the Azure CLI isn't installed locally, then the Maven plugin authenticates with Oauth or device login. For more information, see [authentication with Maven plugins](https://github.com/microsoft/azure-maven-plugins/wiki/Authentication).
9299

93-
Run the Maven command below to configure the deployment. This command will help you to set up the App Service operating system, Java version, and Tomcat version.
100+
Run the Maven command shown next to configure the deployment. This command helps you to set up the App Service operating system, Java version, and Tomcat version.
94101

95102
```azurecli-interactive
96103
mvn com.microsoft.azure:azure-webapp-maven-plugin:2.9.0:config
97104
```
98105

99106
# [Java SE](#tab/javase)
100107

108+
1. If prompted for **Create new run configuration**, select **Y**.
101109
1. When prompted with **Subscription** option, select the proper `Subscription` by entering the number printed at the start of the line.
102110
1. When prompted with **Web App** option, select the default option, `<create>`, by pressing enter.
103111
1. When prompted with **OS** option, select **Linux** by pressing enter.
104-
1. When prompted with **javaVersion** option, select **Java 11**.
112+
1. When prompted with **javaVersion** option, select **Java 17**.
105113
1. When prompted with **Pricing Tier** option, select **P1v2**.
106114
1. Finally, press enter on the last prompt to confirm your selections.
107115

108116
```
109117
Please confirm webapp properties
110-
Subscription Id : ********-****-****-****-************
111-
AppName : spring-boot-1599007116351
112-
ResourceGroup : spring-boot-1599007116351-rg
118+
AppName : booty-duke-1678285507374
119+
ResourceGroup : booty-duke-1678285507374-rg
113120
Region : centralus
114121
PricingTier : P1v2
115122
OS : Linux
116-
Web server stack : Java SE
123+
Java Version: Java 17
124+
Web server stack: Java SE
117125
Deploy to slot : false
118-
Confirm (Y/N)? : Y
126+
Confirm (Y/N) [Y]: Y
119127
[INFO] Saving configuration to pom.
120128
[INFO] ------------------------------------------------------------------------
121129
[INFO] BUILD SUCCESS
122130
[INFO] ------------------------------------------------------------------------
123-
[INFO] Total time: 20.925 s
124-
[INFO] Finished at: 2020-09-01T17:38:51-07:00
131+
[INFO] Total time: 01:03 min
132+
[INFO] Finished at: 2023-03-08T15:25:47+01:00
125133
[INFO] ------------------------------------------------------------------------
126134
```
127135
128136
# [Tomcat](#tab/tomcat)
129137
138+
1. If prompted for **Create new run configuration**, select **Y**.
130139
1. When prompted with **Subscription** option, select the proper `Subscription` by entering the number printed at the line start.
131140
1. When prompted with **Web App** option, select the default option, `<create>`, by pressing enter.
132141
1. When prompted with **OS** option, select **Linux** by pressing enter.
@@ -157,6 +166,7 @@ mvn com.microsoft.azure:azure-webapp-maven-plugin:2.9.0:config
157166
158167
# [JBoss EAP](#tab/jbosseap)
159168
169+
1. If prompted for **Create new run configuration**, select **Y**.
160170
1. If prompted with **Subscription** option, select the proper `Subscription` by entering the number printed at the line start.
161171
1. When prompted with **Web App** option, accept the default option `<create>` by pressing enter.
162172
1. When prompted with **OS** option, select **Linux** by pressing enter.
@@ -181,8 +191,8 @@ mvn com.microsoft.azure:azure-webapp-maven-plugin:2.9.0:config
181191
[INFO] ------------------------------------------------------------------------
182192
[INFO] BUILD SUCCESS
183193
[INFO] ------------------------------------------------------------------------
184-
[INFO] Total time: 01:01 min
185-
[INFO] Finished at: 2021-06-11T15:52:25-07:00
194+
[INFO] Total time: 02:07 min
195+
[INFO] Finished at: 2023-03-10T15:34:00+01:00
186196
[INFO] ------------------------------------------------------------------------
187197
```
188198
@@ -197,14 +207,14 @@ Property | Required | Description | Version
197207
`<subscriptionId>` | false | Specify the subscription ID. | 0.1.0+
198208
`<resourceGroup>` | true | Azure Resource Group for your Web App. | 0.1.0+
199209
`<appName>` | true | The name of your Web App. | 0.1.0+
200-
`<region>` | false | Specifies the region where your Web App will be hosted; the default value is **centralus**. All valid regions at [Supported Regions](https://azure.microsoft.com/global-infrastructure/services/?products=app-service) section. | 0.1.0+
210+
`<region>` | false | Specifies the region to host your Web App; the default value is **centralus**. All valid regions at [Supported Regions](https://azure.microsoft.com/global-infrastructure/services/?products=app-service) section. | 0.1.0+
201211
`<pricingTier>` | false | The pricing tier for your Web App. The default value is **P1v2** for production workload, while **B2** is the recommended minimum for Java dev/test. For more information, see [App Service Pricing](https://azure.microsoft.com/pricing/details/app-service/linux/)| 0.1.0+
202212
`<runtime>` | false | The runtime environment configuration. For more information, see [Configuration Details](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details). | 0.1.0+
203213
`<deployment>` | false | The deployment configuration. For more information, see [Configuration Details](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details). | 0.1.0+
204214
205215
For the complete list of configurations, see the plugin reference documentation. All the Azure Maven Plugins share a common set of configurations. For these configurations see [Common Configurations](https://github.com/microsoft/azure-maven-plugins/wiki/Common-Configuration). For configurations specific to App Service, see [Azure Web App: Configuration Details](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details).
206216
207-
Be careful about the values of `<appName>` and `<resourceGroup>` (`helloworld-1590394316693` and `helloworld-1590394316693-rg` accordingly in the demo), they'll be used later.
217+
Be careful about the values of `<appName>` and `<resourceGroup>` (`helloworld-1590394316693` and `helloworld-1590394316693-rg` accordingly in the demo), they are used later.
208218
209219
## 4 - Deploy the app
210220
@@ -227,7 +237,7 @@ mvn package azure-webapp:deploy -DskipTests
227237

228238
-----
229239

230-
Once deployment is completed, your application will be ready at `http://<appName>.azurewebsites.net/` (`http://helloworld-1590394316693.azurewebsites.net` in the demo). Open the url with your local web browser, you should see
240+
Once deployment is completed, your application is ready at `http://<appName>.azurewebsites.net/` (`http://helloworld-1590394316693.azurewebsites.net` in the demo). Open the url with your local web browser, you should see
231241

232242
# [Java SE](#tab/javase)
233243

@@ -245,9 +255,6 @@ Once deployment is completed, your application will be ready at `http://<appName
245255

246256
**Congratulations!** You've deployed your first Java app to App Service.
247257

248-
> [!div class="nextstepaction"]
249-
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=app-service-linux-quickstart&step=deploy)
250-
251258
## 5 - Clean up resources
252259

253260
In the preceding steps, you created Azure resources in a resource group. If you don't need the resources in the future, delete the resource group from portal, or by running the following command in the Cloud Shell:
38.6 KB
Loading

articles/app-service/quickstart-java-uiex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.assetid: 582bb3c2-164b-42f5-b081-95bfcb7a502a
66
ms.devlang: java
77
ms.topic: quickstart
88
ms.date: 08/01/2020
9-
ms.custom: mvc, seo-java-july2019, seo-java-august2019, seo-java-september2019, mode-other
9+
ms.custom: mvc, seo-java-july2019, seo-java-august2019, seo-java-september2019, mode-other, devx-track-java, devx-track-javaee-jbosseap-appsvc, devx-track-javaee-jbosseap, devx-track-javaee
1010
zone_pivot_groups: app-service-platform-windows-linux
1111
ROBOTS: NOINDEX,NOFOLLOW
1212
---

articles/app-service/quickstart-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ keywords: azure, app service, web app, windows, linux, java, maven, quickstart
55
ms.assetid: 582bb3c2-164b-42f5-b081-95bfcb7a502a
66
ms.devlang: java
77
ms.topic: quickstart
8-
ms.date: 03/03/2022
9-
ms.custom: mvc, seo-java-july2019, seo-java-august2019, seo-java-september2019, mode-other, devdivchpfy22
8+
ms.date: 03/08/2023
9+
ms.custom: mvc, seo-java-july2019, seo-java-august2019, seo-java-september2019, mode-other, devdivchpfy22, devx-track-java, devx-track-javaee-jbosseap-appsvc, devx-track-javaee-jbosseap, devx-track-javaee
1010
zone_pivot_groups: app-service-platform-environment
1111
adobe-target: true
1212
adobe-target-activity: DocsExp–386541–A/B–Enhanced-Readability-Quickstarts–2.19.2021

0 commit comments

Comments
 (0)