diff --git a/uwp/Pivot-Client/OLAP/Getting-Started.md b/uwp/Pivot-Client/OLAP/Getting-Started.md index aae42ce56..19d02dfc6 100644 --- a/uwp/Pivot-Client/OLAP/Getting-Started.md +++ b/uwp/Pivot-Client/OLAP/Getting-Started.md @@ -230,7 +230,7 @@ After initializing the SfPivotClient control, right-click the project in the sol In the Add Service Reference dialog, enter the following address and click **Go** to add the online service. -[http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc](http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc) +[https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc](https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc) ## Binding OLAP data to SfPivotClient control @@ -289,10 +289,10 @@ namespace SfPivotClientDemo private void SetConnection() { - BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); + BasicHttpsBinding basicHttpBinding = new BasicHttpsBinding(); basicHttpBinding.MaxReceivedMessageSize = 2147483647; basicHttpBinding.MaxBufferSize = 2147483647; - EndpointAddress address = new EndpointAddress("http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/"); + EndpointAddress address = new EndpointAddress("https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/"); ChannelFactory clientFactory = new ChannelFactory(basicHttpBinding, address); this.clientChannel = clientFactory.CreateChannel(); } @@ -421,10 +421,10 @@ Namespace SfPivotClientDemo End Property Private Sub SetConnection() - Dim basicHttpBinding As BasicHttpBinding = New BasicHttpBinding() + Dim basicHttpBinding As BasicHttpsBinding = New BasicHttpsBinding() basicHttpBinding.MaxReceivedMessageSize = 2147483647 basicHttpBinding.MaxBufferSize = 2147483647 - Dim address As EndpointAddress = New EndpointAddress("http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/") + Dim address As EndpointAddress = New EndpointAddress("https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/") Dim clientFactory As ChannelFactory(Of IOlapDataProvider) = New ChannelFactory(Of IOlapDataProvider)(basicHttpBinding, address) Me.clientChannel = clientFactory.CreateChannel() End Sub @@ -643,7 +643,7 @@ namespace OlapManagerService /// public Service1() { - string connectionString = "Data Source=http://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;"; + string connectionString = "Data Source=https://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;"; _dataProvider = new OlapDataProvider(connectionString); } @@ -752,7 +752,7 @@ Namespace OlapManagerService Private ReadOnly _dataProvider As OlapDataProvider Public Sub New() - Dim connectionString As String = "Data Source=http://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;" + Dim connectionString As String = "Data Source=https://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;" _dataProvider = New OlapDataProvider(connectionString) End Sub diff --git a/uwp/Pivot-Client/Relational/Getting-Started.md b/uwp/Pivot-Client/Relational/Getting-Started.md index 9b1e23f50..8e6b3a1a7 100644 --- a/uwp/Pivot-Client/Relational/Getting-Started.md +++ b/uwp/Pivot-Client/Relational/Getting-Started.md @@ -8,7 +8,7 @@ documentation: ug --- # Getting Started with UWP Pivot Client (SfPivotClient) -t + >**Important** To start with v16.2.0.x, if you refer to Syncfusion assemblies from a trial setup or NuGet feed, include a license key in your projects. Refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/license-key) to learn about registering Syncfusion license key in your UWP application to use the components. diff --git a/uwp/Pivot-Grid/OLAP/Getting-Started.md b/uwp/Pivot-Grid/OLAP/Getting-Started.md index 596878374..b3aba7730 100644 --- a/uwp/Pivot-Grid/OLAP/Getting-Started.md +++ b/uwp/Pivot-Grid/OLAP/Getting-Started.md @@ -212,7 +212,7 @@ After initializing the SfPivotGrid control, right-click the project in the solut In “Add Service Reference” dialog, enter the following address and click **Go** to add the online service. -[http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc](http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc) +[https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc](https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc) Also change the default namespace of service reference from "ServiceReference1" to "OlapManagerService", so that it will be easier to identify the OLAP service later. Finally, click **OK** to add the service reference. @@ -273,10 +273,10 @@ namespace SfPivotGridDemo private void SetConnection() { - BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); + BasicHttpsBinding basicHttpBinding = new BasicHttpsBinding(); basicHttpBinding.MaxReceivedMessageSize = 2147483647; basicHttpBinding.MaxBufferSize = 2147483647; - EndpointAddress address = new EndpointAddress("http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/"); + EndpointAddress address = new EndpointAddress("https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/"); ChannelFactory clientFactory = new ChannelFactory(basicHttpBinding, address); this.clientChannel = clientFactory.CreateChannel(); } @@ -405,10 +405,10 @@ Namespace SfPivotGridDemo End Property Private Sub SetConnection() - Dim basicHttpBinding As BasicHttpBinding = New BasicHttpBinding() + Dim basicHttpBinding As BasicHttpsBinding = New BasicHttpsBinding() basicHttpBinding.MaxReceivedMessageSize = 2147483647 basicHttpBinding.MaxBufferSize = 2147483647 - Dim address As EndpointAddress = New EndpointAddress("http://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/") + Dim address As EndpointAddress = New EndpointAddress("https://bi.syncfusion.com/OlapUWPTestService/OlapManager.svc/") Dim clientFactory As ChannelFactory(Of IOlapDataProvider) = New ChannelFactory(Of IOlapDataProvider)(basicHttpBinding, address) Me.clientChannel = clientFactory.CreateChannel() End Sub @@ -624,7 +624,7 @@ namespace OlapManagerService /// public Service1() { - string connectionString = "Data Source=http://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;"; + string connectionString = "Data Source=https://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;"; _dataProvider = new OlapDataProvider(connectionString); } @@ -733,7 +733,7 @@ Namespace OlapManagerService Private ReadOnly _dataProvider As OlapDataProvider Public Sub New() - Dim connectionString As String = "Data Source=http://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;" + Dim connectionString As String = "Data Source=https://bi.syncfusion.com/olap/msmdpump.dll; Initial Catalog=Adventure Works DW 2008 SE;" _dataProvider = New OlapDataProvider(connectionString) End Sub