Perl Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Perl Examples

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

More Examples...
String
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
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.

Chilkat Module for Perl 5.8.*

Chilkat Module for Perl 5.10.*

Chilkat Module for Perl 5.8.* (x64)

Chilkat Module for Perl 5.10.* (x64)

use chilkat;

$http = new chilkat::CkHttp();

#  Any string unlocks the component for the 1st 30-days.
$success = $http->UnlockComponent("Anything for 30-day trial");
if ($success != 1) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

#  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->put_SessionLogFilename("c:/temp/httpSessionLog.txt");

#  Try a simple HTTP GET and then examine the session log:

$html = $http->quickGetStr("http://www.chilkatsoft.com/httpTest/abc.html");
if ($html eq null ) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

#  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>

 

Need a specific example? Send a request to support@chilkatsoft.com

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