C# Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C# Examples

Bounced Mail
Bz2
Character Encoding
CSV
DKIM / DomainKey
Digital Certificates
Digital Signatures
Email
Email Object
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
MIME
POP3
RSA
S/MIME
SMTP
Socket
Spider
SSH
SSH Tunnel
SSH Key
SFTP
Tar Archive
Upload
XML
XMP
Zip Compression


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

 

 

 

 

 

 

HTTP Session Logging

Demonstrates how to use the SessionLogFilename property to log HTTP requests and responses to a file.

Download Chilkat .NET for 4.0 Framework

Download Chilkat .NET for 64-bit 4.0 Framework (x64)

Download Chilkat .NET for 2.0 / 3.5 Framework

Download Chilkat .NET for 64-bit 2.0 / 3.5 Framework (x64)

Download Chilkat .NET for 1.0 / 1.1 Framework

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) {
    textBox1.Text += http.LastErrorText + "\r\n";
    return;
}

//  Set the SessionLogFilename property so that the Chilkat HTTP component
//  logs the exact HTTP requests and responses to a log file.

//  The SessionLogFilename may be used with any of the HTTP
//  methods for sending GET, POST, PUT, DELETE, HEAD, etc.
http.SessionLogFilename = "c:/temp/httpSessionLog.txt";

//  Try a simple HTTP GET and then examine the session log:
string html;
html = http.QuickGetStr("http://www.chilkatsoft.com/httpTest/abc.html");
if (html == null ) {
    textBox1.Text += http.LastErrorText + "\r\n";
    return;
}

//  Here are the contents of the session log file after doing
//  the GET request:

//  
---- Sending ----
GET /httpTest/abc.html HTTP/1.1
Accept: */*
Accept-Encoding: gzip
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Accept-Language: en-us,en;q=0.5
User-Agent: Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)
Host: www.chilkatsoft.com
Connection: Keep-Alive


---- Received ----
HTTP/1.1 200 OK
Content-Length: 37
Content-Type: text/html
Last-Modified: Wed, 09 Dec 2009 14:55:08 GMT
Accept-Ranges: bytes
ETag: "4eecd499df78ca1:28b"
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Wed, 09 Dec 2009 15:15:50 GMT

<html>
<body>
ABC
</body>
</html>

 

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

Email Component · XML Parser