Skip to content

Commit 809d67a

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into ds-fiximageborder
2 parents 3490c81 + b7a5230 commit 809d67a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/active-directory/develop/ssl-issues.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Troubleshoot SSL issues (MSAL iOS/macOS) | Azure
2+
title: Troubleshoot TLS/SSL issues (MSAL iOS/macOS) | Azure
33
titleSuffix: Microsoft identity platform
4-
description: Learn what to do about various problems using SSL certificates with the MSAL.Objective-C library.
4+
description: Learn what to do about various problems using TLS/SSL certificates with the MSAL.Objective-C library.
55
services: active-directory
66
documentationcenter: ''
77
author: mmacy
@@ -20,23 +20,23 @@ ms.reviewer: ''
2020
ms.custom: aaddev
2121
---
2222

23-
# How to: Troubleshoot MSAL for iOS and macOS SSL issues
23+
# How to: Troubleshoot MSAL for iOS and macOS TLS/SSL issues
2424

2525
This article provides information to help you troubleshoot issues that you may come across while using the [Microsoft Authentication Library (MSAL) for iOS and macOS](reference-v2-libraries.md)
2626

2727
## Network issues
2828

2929
**Error -1200**: "An SSL error has occurred and a secure connection to the server can't be made."
3030

31-
This error means that the connection isn't secure. It occurs when a certificate is invalid. For more information, including which server is failing the SSL check, refer to `NSURLErrorFailingURLErrorKey` in the `userInfo` dictionary of the error object.
31+
This error means that the connection isn't secure. It occurs when a certificate is invalid. For more information, including which server is failing the TLS check, refer to `NSURLErrorFailingURLErrorKey` in the `userInfo` dictionary of the error object.
3232

3333
This error is from Apple's networking library. A full list of NSURL error codes is in NSURLError.h in the macOS and iOS SDKs. For more details about this error, see [URL Loading System Error Codes](https://developer.apple.com/documentation/foundation/1508628-url_loading_system_error_codes?language=objc).
3434

3535
## Certificate issues
3636

37-
If the URL providing an invalid certificate connects to the server that you intend to use as part of the authentication flow, a good start to diagnosing the problem is to test the URL with a SSL validation service such as [Qualys SSL Labs Analyzer](https://www.ssllabs.com/ssltest/analyze.html). It tests the server against a wide array of scenarios and browsers and checks for many known vulnerabilities.
37+
If the URL providing an invalid certificate connects to the server that you intend to use as part of the authentication flow, a good start to diagnosing the problem is to test the URL with an SSL validation service such as [SSL Server Test](https://www.ssllabs.com/ssltest/analyze.html). It tests the server against a wide array of scenarios and browsers and checks for many known vulnerabilities.
3838

39-
By default, Apple's new [App Transport Security (ATS)](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW35) feature applies more stringent security policies to apps that use SSL certificates. Some operating systems and web browsers have started enforcing some of these policies by default. For security reasons, we recommend you not disable ATS.
39+
By default, Apple's new [App Transport Security (ATS)](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW35) feature applies more stringent security policies to apps that use TLS/SSL certificates. Some operating systems and web browsers have started enforcing some of these policies by default. For security reasons, we recommend you not disable ATS.
4040

4141
Certificates using SHA-1 hashes have known vulnerabilities. Most modern web browsers don't allow certificates with SHA-1 hashes.
4242

articles/data-factory/connector-sap-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ To copy data from an SAP table, the following properties are supported:
217217
| `partitionOption` | The partition mechanism to read from an SAP table. The supported options include: <ul><li>`None`</li><li>`PartitionOnInt` (normal integer or integer values with zero padding on the left, such as `0000012345`)</li><li>`PartitionOnCalendarYear` (4 digits in the format "YYYY")</li><li>`PartitionOnCalendarMonth` (6 digits in the format "YYYYMM")</li><li>`PartitionOnCalendarDate` (8 digits in the format "YYYYMMDD")</li></ul> | No |
218218
| `partitionColumnName` | The name of the column used to partition the data. | No |
219219
| `partitionUpperBound` | The maximum value of the column specified in `partitionColumnName` that will be used to continue with partitioning. | No |
220-
| `partitionLowerBound` | The minimum value of the column specified in `partitionColumnName` that will be used to continue with partitioning. | No |
220+
| `partitionLowerBound` | The minimum value of the column specified in `partitionColumnName` that will be used to continue with partitioning. (Note: `partitionLowerBound` cannot be "0" when partition option is `PartitionOnInt`) | No |
221221
| `maxPartitionsNumber` | The maximum number of partitions to split the data into. | No |
222222

223223
>[!TIP]

0 commit comments

Comments
 (0)