Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

MFC Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(MFC) HTTP HEAD Request

Sends an HTTP HEAD request and gets the response.

Note: The response to an HTTP HEAD request is always just the response header. The reponse body is always 0 length (thus the reason it's called a "HEAD" request..)

Chilkat C/C++ Library Downloads

MS Visual C/C++ Libs

See Also: Using MFC CString in Chilkat

#include <CkHttp.h>
#include <CkHttpResponse.h>

void ChilkatSample(void)
    {
    CkString strOut;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http;

    // If the URL uses "https://", then the connection will be TLS.
    // Otherwise it will be TCP.
    CkHttpResponse *resp = http.GetHead("https://example-code.com/");
    if (http.get_LastMethodSuccess() != true) {
        // A failure is when we don't get any response.  It could be a timeout, an inability to connect, etc.
        // For example, a "404 Not Found" response is still a response, and thus deemed success in terms of the API..
        strOut.append(http.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    // Examine the response.
    strOut.append("Status Code = ");
    strOut.appendInt(resp->get_StatusCode());
    strOut.append("\r\n");
    strOut.append("Status Line = ");
    strOut.append(resp->statusLine());
    strOut.append("\r\n");
    strOut.append("Status Text = ");
    strOut.append(resp->statusText());
    strOut.append("\r\n");
    strOut.append("Full Response Header:");
    strOut.append("\r\n");
    strOut.append(resp->header());
    strOut.append("\r\n");
    strOut.append("----");
    strOut.append("\r\n");
    int numHeaderFields = resp->get_NumHeaderFields();
    strOut.append("Num Header Fields: ");
    strOut.appendInt(numHeaderFields);
    strOut.append("\r\n");
    int i;
    for (i = 0; i <= numHeaderFields - 1; i++) {
        strOut.append(resp->getHeaderName(i));
        strOut.append(": ");
        strOut.append(resp->getHeaderValue(i));
        strOut.append("\r\n");
    }

    delete resp;


    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

    }

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.