Archived Forum Post

Index of archived forum posts

Question:

can not HTTPS GET using SSL/TLS

Jul 02 '15 at 11:16

i get html website but it not show anything

Chilkat.Http http = new Chilkat.Http();
bool success;
//  Any string unlocks the component for the 1st 30-days.
success = http.UnlockComponent("Anything for 30-day trial");
if (success != true) {
    Console.WriteLine(http.LastErrorText);
    return;
}
//  Send the HTTP GET and return the content in a string.
string html;
html = http.QuickGetStr("https://mmo4me.com/");
Console.WriteLine(html);

Accepted Answer

It is because that particular server only accepts a single particular cipher suite: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, and Chilkat does not yet support it.