Java Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Java Examples

Quick Start
Unicode
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
SFTP
Signatures
SMTP
Socket / SSL
Spider
SSH
SSH Key
SSH Tunnel
Tar
Upload
XML
XMP
Zip

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

(Java) HTTP Authentication (Basic, NTLM, Digest, Negotiate/Kerberos)

Demonstrates how to use HTTP authentication. Authentication can be added to any method that sends an HTTP request to the server, such as SynchronousRequest, QuickGetStr, PostXml, etc. To add authentication, simply set the Login and Password properties.

By default, Chilkat will use basic HTTP authentication, which sends the login/password clear-text over the connection. This is bad if SSL/TLS (i.e. HTTPS) is not used. However, if the connection is secure, there should be nothing wrong with using basic authentication.

Chilkat supports more secure authentication types as well, including Digest, NTLM, and Negotiate (which dynamically chooses between NTLM and Kerberos). To use Digest authentication, simply set the DigestAuth property = true. To use NTLM authentication, set the NtlmAuth property = true. Likewise, to use Negotiate authentication, set the NegotiateAuth property = true.

Important: Negotiate authentication is only supported for the Chilkat implementations that run on the Windows platform. This is because it is implemented internally using Microsoft's SSPI API. NTLM authentication however, is available for all supported operating systems because Chilkat implements NTLM directlly (i.e. does not use Microsoft SSPI for the underlying implementation.)

 Chilkat Java Library Downloads for Windows, Linux, and MAC OS X

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    CkHttp http = new CkHttp();

    boolean success;

    //  Any string unlocks the component for the 1st 30-days.
    success = http.UnlockComponent("Anything for 30-day trial");
    if (success != true) {
        System.out.println(http.lastErrorText());
        return;
    }

    //  Set the Login and Password properties for authentication.
    http.put_Login("chilkat");
    http.put_Password("myPassword");

    String html;
    html = http.quickGetStr("http://localhost/xyz.html");
    //  Note:
    if (html == null ) {
        System.out.println(http.lastErrorText());
        return;
    }

    //  Examine the HTTP status code returned.
    //  A status code of 401 is typically returned for "access denied"
    //  if no login/password is provided, or if the credentials (login/password)
    //  are incorrect.
    System.out.println("HTTP status code for Basic authentication: "
         + http.get_LastStatus());

    //  Examine the HTML returned for the URL:
    System.out.println(html);

    CkHttp http2 = new CkHttp();

    //  To use NTLM authentication, set the
    //  NtlmAuth property = true
    http2.put_NtlmAuth(true);

    //  The session log can be captured to a file by
    //  setting the SessionLogFilename property:
    http2.put_SessionLogFilename("ntlmAuthLog.txt");

    //  Examination of the HTTP session log will show the NTLM
    //  back-and-forth exchange between the client and server.

    //  This call will now use NTLM authentication (assuming it
    //  is supported by the web server).
    html = http2.quickGetStr("http://localhost/xyz.html");
    //  Note:
    if (html == null ) {
        System.out.println(http2.lastErrorText());
        return;
    }

    System.out.println("HTTP status code for NTLM authentication: "
         + http2.get_LastStatus());

    CkHttp http3 = new CkHttp();

    //  To use Digest Authentication, set the DigestAuth property = true
    //  Also, no more than one of the authentication type properties
    //  (NtlmAuth, DigestAuth, and NegotiateAuth)  should be set
    //  to true.
    http3.put_DigestAuth(true);

    http3.put_SessionLogFilename("digestAuthLog.txt");

    //  This call will now use Digest authentication (assuming it
    //  is supported by the web server).
    html = http3.quickGetStr("http://localhost/xyz.html");
    //  Note:
    if (html == null ) {
        System.out.println(http3.lastErrorText());
        return;
    }

    System.out.println("HTTP status code for Digest authentication: "
         + http3.get_LastStatus());
  }
}

 

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