Skip to content

Commit

Permalink
Fixed http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
KumarVivek committed Nov 4, 2019
1 parent 4129bcd commit 451ee67
Show file tree
Hide file tree
Showing 198 changed files with 461 additions and 461 deletions.
2 changes: 1 addition & 1 deletion powerapps-docs/developer/common-data-service/api-limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ When your application exceeds the limit, the error response from the server may

For a discussion of best practices, see [Azure Architecture Best Practices Transient fault handling](/azure/architecture/best-practices/transient-faults)

[The Polly Project](http://www.thepollyproject.org/) is a library which includes capabilities for dealing with transient faults using execution policies.
[The Polly Project](https://www.thepollyproject.org/) is a library which includes capabilities for dealing with transient faults using execution policies.

### HTTP requests

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ The `RecurrenceStartTime` is simply a datetime value to indicate when the system

The `RecurrencePattern` attribute stores information about how frequently recurring system jobs occur. This value may be set by the platform when a new asyncoperation entity is created. You may set this value to change the pattern.

The values for this attribute use parts of the [RFC2445 Internet standard (Internet Calendaring and Scheduling Core Object Specification)](http://www.rfc-editor.org/info/rfc2445).
The values for this attribute use parts of the [RFC2445 Internet standard (Internet Calendaring and Scheduling Core Object Specification)](https://www.rfc-editor.org/info/rfc2445).

The following table provides from examples:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ Organizations often need to be in compliance with various regulations to ensure
[Data Management in Dynamics 365](/dynamics365/customer-engagement/developer/manage-data)
[Audit entity data changes](/dynamics365/customer-engagement/developer/audit-entity-data-changes)
[Configure entities and attributes for auditing](configure-entities-attributes-auditing.md)
[Blog: Recover your deleted CRM data and recreate them using CRM API](http://blogs.msdn.com/b/crm/archive/2011/05/23/recover-your-deleted-crm-data-and-recreate-them-using-crm-api.aspx)
[Blog: Recover your deleted CRM data and recreate them using CRM API](https://blogs.msdn.com/b/crm/archive/2011/05/23/recover-your-deleted-crm-data-and-recreate-them-using-crm-api.aspx)
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ When you register an app with Azure AD one of the decisions you must make is the
|
|Native|A type of [client application](/azure/active-directory/develop/developer-glossary#client-application) that is installed natively on a device. |

When you select **Web app /API** you must provide a **Sign-On URL** which is the URL where Azure AD will send the authentication response, including a token if authentication was successful. While you develop an app, this is usually set to `http://localhost/appname:[port]` so you can develop and debug your app locally. When you publish your app, you need to change this value to the published URL of the app.
When you select **Web app /API** you must provide a **Sign-On URL** which is the URL where Azure AD will send the authentication response, including a token if authentication was successful. While you develop an app, this is usually set to `https://localhost/appname:[port]` so you can develop and debug your app locally. When you publish your app, you need to change this value to the published URL of the app.

When you select **Native**, you must provide a Redirect URI. This is a unique identifier to which Azure AD will redirect the user-agent in an OAuth 2.0 request. This is typically a value formatted like so: `//app:<guid>`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Similar to a queue except that one or more listeners can subscribe to receive me
This contract type applies to Azure Event Hub solutions.

> [!IMPORTANT]
> To use these contracts, you must write your listener applications using the [Azure SDK](http://www.windowsazure.com/develop/downloads/) v1.7 or later.
> To use these contracts, you must write your listener applications using the [Azure SDK](https://www.windowsazure.com/develop/downloads/) v1.7 or later.
Identifying the kind of security a contract uses is part of the contract’s configuration. A contract can use Transport security, which uses Transport Layer Security (TLS) or Secure Sockets Layer (SSL) (https).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,4 @@ Another reason IPlugins should be stateless is that multiple system threads coul
### See also

[Write a plug-in](../../write-plug-in.md)<br />
[CRM Team Blog: Thread Safety in Plug-ins](http://blogs.msdn.com/b/crm/archive/2008/11/18/member-static-variable-and-thread-safety-in-plug-in-for-crm-4-0.aspx)<br />
[CRM Team Blog: Thread Safety in Plug-ins](https://blogs.msdn.com/b/crm/archive/2008/11/18/member-static-variable-and-thread-safety-in-plug-in-for-crm-4-0.aspx)<br />
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You can use the Entity Metadata Browser to view entities and their properties in

| Version | Download |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Common Data Service | [Microsoft Downloads: MetadataBrowser_3_0_0_5_managed.zip](http://download.microsoft.com/download/8/E/3/8E3279FE-7915-48FE-A68B-ACAFB86DA69C/MetadataBrowser_3_0_0_5_managed.zip) |
| Common Data Service | [Microsoft Downloads: MetadataBrowser_3_0_0_5_managed.zip](https://download.microsoft.com/download/8/E/3/8E3279FE-7915-48FE-A68B-ACAFB86DA69C/MetadataBrowser_3_0_0_5_managed.zip) |

After you download the solution, you must install it. For information about how to install a managed solution, see [Import, update, and export solutions](/dynamics365/customer-engagement/developer/customize/import-update-export-solutions)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ S2S authentication means you don’t need to use a paid PowerApps user license w

All operations performed by your application or service using S2S will be performed as the application user you provide rather than as the user who is accessing your application. If you want your application to perform data operations on behalf of a specific user, such as the one who is interacting with your application, you can apply impersonation when the custom security role applied to your application service principal has the privileges required. More information: [Impersonate another user](impersonate-another-user.md)

A web application or service which uses S2S authentication is responsible for controlling access to the data that it has access to. This is typically done using an OpenID Connect provider. More information: <http://openid.net/connect/>.
A web application or service which uses S2S authentication is responsible for controlling access to the data that it has access to. This is typically done using an OpenID Connect provider. More information: <https://openid.net/connect/>.

## Server-to-Server authentication scenarios
There are two scenarios where you can apply S2S authentication.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ search.app:

*Calculated* and *rollup* attributes free the user from having to manually perform calculations and focus on their work. System administrators can now easily define a field to contain the value of many common calculations without having to work with a developer. Developers can also leverage the platform capabilities to perform these calculations rather than within their own code.

[Video: Rollup and Calculated Fields in Microsoft Dynamics CRM 2015](http://youtu.be/RoahCH1p3T8)
[Video: Rollup and Calculated Fields in Microsoft Dynamics CRM 2015](https://youtu.be/RoahCH1p3T8)

<a name="BKMK_CommonElements"></a>
## Common elements and characteristics
Expand Down Expand Up @@ -178,7 +178,7 @@ search.app:
```

### See also
[Video: Rollup and Calculated Fields in Microsoft Dynamics CRM 2015](http://youtu.be/RoahCH1p3T8)
[Video: Rollup and Calculated Fields in Microsoft Dynamics CRM 2015](https://youtu.be/RoahCH1p3T8)
[Introduction to entity attributes](/dynamics365/customer-engagement/developer/introduction-to-entity-attributes)
[Define calculated fields](https://technet.microsoft.com/library/dn832103.aspx)
[Define rollup fields](https://technet.microsoft.com/library/dn832103.aspx)
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ For best-in-class encryption, the checker service only supports communications u

## Report format

The result of the solution analysis is a zip file containing one or more reports in a standardized JSON format. The report format is based on static analysis results referred to as Static Analysis Results Interchange Format (SARIF). There are tools available to view and interact with SARIF documents. Refer to this [web site](https://sarifweb.azurewebsites.net/) for details. The service leverages version two of the [OASIS standard](http://docs.oasis-open.org/sarif/sarif/v2.0/sarif-v2.0.html).
The result of the solution analysis is a zip file containing one or more reports in a standardized JSON format. The report format is based on static analysis results referred to as Static Analysis Results Interchange Format (SARIF). There are tools available to view and interact with SARIF documents. Refer to this [web site](https://sarifweb.azurewebsites.net/) for details. The service leverages version two of the [OASIS standard](https://docs.oasis-open.org/sarif/sarif/v2.0/sarif-v2.0.html).


### See also
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The configuration information that is required for importing data is contained i
### See Also

[Import data](import-data.md)<br />
[Blog Post: How to Import attachments programmatically](http://blogs.msdn.com/b/crm/archive/2012/08/06/how-to-import-attachments-programmatically.aspx)<br />
[Blog Post: How to Import attachments programmatically](https://blogs.msdn.com/b/crm/archive/2012/08/06/how-to-import-attachments-programmatically.aspx)<br />
[Prepare source files for import](prepare-source-files-import.md)<br />
[Create data maps for import](create-data-maps-for-import.md)<br />
[Add transformation mappings for import](add-transformation-mappings-import.md)<br />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ search.app:
---
# Connect with Microsoft Office 365 and Common Data Service

Common Data Service is part of the Office 365 collaboration and productivity tools. The [Microsoft Office 365 portal](http://www.microsoft.com/office365) provides a single sign-on experience for Office 365 customers where they can sign in once and access any Office 365 application, including Common Data Service. In addition, system user accounts in Common Data Service can be provisioned in the [Microsoft Online Services](http://portal.microsoftonline.com/) admin portal.
Common Data Service is part of the Office 365 collaboration and productivity tools. The [Microsoft Office 365 portal](https://www.microsoft.com/office365) provides a single sign-on experience for Office 365 customers where they can sign in once and access any Office 365 application, including Common Data Service. In addition, system user accounts in Common Data Service can be provisioned in the [Microsoft Online Services](https://portal.microsoftonline.com/) admin portal.

Using federation, applications can connect to Common Data Service using the same system user identities and credentials available in an Azure Active Directory based network. More information: [Single sign-on roadmap](https://technet.microsoft.com/library/hh967643.aspx).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ OData-Version: 4.0
### Auto Number Manager

**[Auto Number Manager](https://www.xrmtoolbox.com/plugins/Rappen.XrmToolBox.AutoNumManager/)** for XrmToolBox is a community driven tool for Common Data Service that provides a UI to set, update and remove auto number format on new or existing attributes.
Please see the [Developer tools](developer-tools.md) topic for community developed tools and [anm.xrmtoolbox.com](http://anm.xrmtoolbox.com) for more information about Auto Number Manager.
Please see the [Developer tools](developer-tools.md) topic for community developed tools and [anm.xrmtoolbox.com](https://anm.xrmtoolbox.com) for more information about Auto Number Manager.

> [!NOTE]
> The community tools are not a product of Common Data Service and does not extend support to the community tools.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ search.app:

To import data into Common Data Service, you must provide the appropriate data maps.

You can download examples of data maps from [Microsoft Downloads: DataImportMaps.zip](http://download.microsoft.com/download/D/5/F/D5F73E15-439B-4EBC-BFFB-C6837B146C76/DataImportMaps.zip).
You can download examples of data maps from [Microsoft Downloads: DataImportMaps.zip](https://download.microsoft.com/download/D/5/F/D5F73E15-439B-4EBC-BFFB-C6837B146C76/DataImportMaps.zip).

You use data maps to map the data contained in the source file to the Common Data Service entity attributes. You must map every column in the source file to an appropriate attribute. The data in the unmapped columns is not imported during the data import operation.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ A package lets you bundle and deploy multiple files related to your app at once.

```xml
<?xml version="1.0" encoding="utf-8"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
<Types xmlns="https://schemas.openxmlformats.org/package/2006/content-types">
<Default Extension="xml" ContentType="application/octet-stream" />
<Default Extension="xaml" ContentType="application/octet-stream" />
<Default Extension="dll" ContentType="application/octet-stream" />
Expand Down Expand Up @@ -95,7 +95,7 @@ Create an *input.xml* file that provides information about your package and the
<StartDate>12/01/2017</StartDate>
<EndDate>01/01/2021</EndDate>
<SupportedCountries>US,CA</SupportedCountries>
<LearnMoreLink>http://www.microsoft.com</LearnMoreLink>
<LearnMoreLink>https://www.microsoft.com</LearnMoreLink>
<Locales>
<PackageLocale Code="1033" IsDefault="true">
<Logo>logo32x32.png</Logo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Common Data Service supports multiple languages. If you want your solution to be
After the text in the worksheets has been localized, add both the CrmTranslations.xml and [Content_Types].xml files to a single compressed .zip file. You can now import this file.

If you prefer to work with the exported files programmatically as an XML document, see [Office 2003 XML Reference Schemas](http://www.microsoft.com/downloads/details.aspx?FamilyID=fe118952-3547-420a-a412-00a2662442d9) for information about the schemas these files use.
If you prefer to work with the exported files programmatically as an XML document, see [Office 2003 XML Reference Schemas](https://www.microsoft.com/downloads/details.aspx?FamilyID=fe118952-3547-420a-a412-00a2662442d9) for information about the schemas these files use.

#### Importing translated text

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ The following is the schema definition for an import/export customization file f

You can find schema in the `Schemas\9.0.0.2090\CustomizationsSolution.xsd` folder when you download the Schemas zip file.

Download the [Schemas](http://download.microsoft.com/download/B/9/7/B97655A4-4E46-4E51-BA0A-C669106D563F/Schemas.zip).
Download the [Schemas](https://download.microsoft.com/download/B/9/7/B97655A4-4E46-4E51-BA0A-C669106D563F/Schemas.zip).

For more information, see [Solutions overview](../../maker/common-data-service/solutions-overview.md)

## Schema

```xml
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:schema xmlns:xs="https://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:include schemaLocation="isv.config.xsd" />
<xs:include schemaLocation="SiteMapType.xsd" />
<xs:include schemaLocation="FormXml.xsd" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ search.app:
---
# Customize entity metadata

Entities are defined by metadata. By defining or changing the entity metadata, you can control the capabilities of an entity. To view the metadata for your organization, use the metadata browser. [Download the metadata browser](http://download.microsoft.com/download/8/E/3/8E3279FE-7915-48FE-A68B-ACAFB86DA69C/MetadataBrowser_3_0_0_5_managed.zip).
Entities are defined by metadata. By defining or changing the entity metadata, you can control the capabilities of an entity. To view the metadata for your organization, use the metadata browser. [Download the metadata browser](https://download.microsoft.com/download/8/E/3/8E3279FE-7915-48FE-A68B-ACAFB86DA69C/MetadataBrowser_3_0_0_5_managed.zip).

More information: [Browse the Metadata for Your Organization](browse-your-metadata.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ When you create customizations in Common Data Service, you can support multiple

Exported text is saved as a compressed file that contains a CrmTranslations.xml that you open by using Office Excel. You can send this file to a linguistic expert, translation agency, or localization firm.

For more information, see [Office 2003 XML Reference Schemas](http://www.microsoft.com/downloads/details.aspx?FamilyID=fe118952-3547-420a-a412-00a2662442d9).
For more information, see [Office 2003 XML Reference Schemas](https://www.microsoft.com/downloads/details.aspx?FamilyID=fe118952-3547-420a-a412-00a2662442d9).

### Import translated text
After you have exported the customized entity or attribute text and had it translated, you can import the translated text strings in the Web application by using the `ImportTranslation` message (<xref href="Microsoft.Dynamics.CRM.ImportTranslation?text=ImportTranslation Action" /> or <xref:Microsoft.Crm.Sdk.Messages.ImportTranslationRequest> class). The file that you import must be a compressed file that contains the CrmTranslations.xml and the [Content_Types].xml file just as they were exported.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ For online solutions and services, Azure provides a [Key Vault](https://azure.mi
It is also advised that you add the domain https://discovery.crmreplication.azure.net/ to the trusted sites list in your browser and to enable pop-ups for this site.

## Programming for the Data Export Service
The Data Export Service exposes a REST-based API that is divided into two groups: a set of `Metadata` operations for exploring Common Data Service organizational structure, relationships, and connection information; and a set of `Profiles` operations for configuring and managing each data replication. This API is fully defined and documented at the following [Swagger](http://swagger.io/) URLs:
The Data Export Service exposes a REST-based API that is divided into two groups: a set of `Metadata` operations for exploring Common Data Service organizational structure, relationships, and connection information; and a set of `Profiles` operations for configuring and managing each data replication. This API is fully defined and documented at the following [Swagger](https://swagger.io/) URLs:

|Swagger endpoint|Description|
|----------------------|-----------------|
Expand Down
Loading

0 comments on commit 451ee67

Please sign in to comment.