Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions uwp/Pivot-Client/OLAP/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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<IOlapDataProvider> clientFactory = new ChannelFactory<IOlapDataProvider>(basicHttpBinding, address);
this.clientChannel = clientFactory.CreateChannel();
}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -643,7 +643,7 @@ namespace OlapManagerService
/// </summary>
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);
}

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion uwp/Pivot-Client/Relational/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
14 changes: 7 additions & 7 deletions uwp/Pivot-Grid/OLAP/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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<IOlapDataProvider> clientFactory = new ChannelFactory<IOlapDataProvider>(basicHttpBinding, address);
this.clientChannel = clientFactory.CreateChannel();
}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -624,7 +624,7 @@ namespace OlapManagerService
/// </summary>
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);
}

Expand Down Expand Up @@ -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

Expand Down