Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) REST Enable/Disable TLS 1.3Chilkat started supporting TLS 1.3 in version 9.5.0.82. For versions 9.5.0.82 and 9.5.0.83, TLS 1.3 was not enabled by default. A program could enable TLS 1.3 by including the "EnableTls13" keyword in the UncommonOptions property. In Chilkat v9.5.0.84 and later, TLS 1.3 is enabled by default. TLS 1.3 can be disabled by including the "DisableTls13" keyword in UncommonOptions. This will cause TLS 1.2 to be used instead.
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); CkRest rest = new CkRest(); // In Chilkat v9.5.0.82 and .83, TLS 1.3 is not enabled by default. // To enable TLS 1.3, add the keyword "EnableTls13" to the UncommonOptions property. rest.put_UncommonOptions("EnableTls13"); // In Chilkat v9.5.0.84 and later, TLS 1.3 is enabled by default. // If disabling TLS 1.3 is needed (for some unanticipated reason), then add the keyword // "DisableTls13" to UncommonOptions rest.put_UncommonOptions("DisableTls13"); } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.