Skip to content

Commit 05c5db4

Browse files
committed
- change base URL to "https://go.netlicensing.io"
1 parent 50d2463 commit 05c5db4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

NetLicensingClient-demo/NetLicensingClient-demo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ class NetLicensingClient_demo
1212
{
1313
static int Main(string[] args)
1414
{
15-
// ServicePointManager.ServerCertificateValidationCallback = delegate { return true; // Trust any (self-signed) certificate };
15+
// ServicePointManager.ServerCertificateValidationCallback = delegate { return true; // Trust any (self-signed) certificate };
1616

1717
Context context = new Context();
18-
context.baseUrl = "https://netlicensing.labs64.com";
18+
context.baseUrl = "https://go.netlicensing.io";
1919
context.username = "demo";
2020
context.password = "demo";
2121
context.securityMode = SecutiryMode.BASIC_AUTHENTICATION;
@@ -193,7 +193,7 @@ static int Main(string[] args)
193193
ConsoleWriter.WriteList("Got the following licensees:", licensees);
194194

195195
#endregion
196-
196+
197197
#region ****************** License
198198
License newLicense = new License();
199199
newLicense.number = demoLicenseNumber;
@@ -220,7 +220,7 @@ static int Main(string[] args)
220220
license = LicenseService.update(context, demoLicenseNumber, null, updateLicense);
221221
ConsoleWriter.WriteEntity("Updated license:", license);
222222

223-
#endregion
223+
#endregion
224224

225225
#region ****************** PaymentMethod
226226

NetLicensingClient/Context.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public enum SecutiryMode
2323
public class Context
2424
{
2525
/// <summary>
26-
/// Server URL base of the NetLicensing RESTful API. Normally should be "https://netlicensing.labs64.com".
26+
/// Server URL base of the NetLicensing RESTful API. Normally should be "https://go.netlicensing.io".
2727
/// </summary>
2828
public String baseUrl { get; set; }
2929

NetLicensingDemo/LicensingInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void updateLicensingInfo()
101101
private LicensingInfo()
102102
{
103103
netLicensingContext = new Context();
104-
netLicensingContext.baseUrl = "https://netlicensing.labs64.com";
104+
netLicensingContext.baseUrl = "https://go.netlicensing.io";
105105
netLicensingContext.apiKey = "18d49975-7956-47f8-aed9-f5e989722406";
106106
netLicensingContext.securityMode = SecutiryMode.APIKEY_IDENTIFICATION;
107107
module1 = new ModuleTryAndBuy("demo-try-and-buy");

0 commit comments

Comments
 (0)