Sample code for 30+ languages & platforms
VBScript

Example: Http.ClearHeaders method

Demonstrates how to call the ClearHeaders method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat VBScript Downloads

VBScript
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)

success = 0

set http = CreateObject("Chilkat.Http")

' Add a request header.
http.SetRequestHeader "X-Something","1234"
http.SetRequestHeader "X-Example","5678"

responseBody = http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
' Examine the request header we just sent..
outFile.WriteLine(http.LastHeader)
outFile.WriteLine("----")

' Output:

' GET /helloWorld.txt HTTP/1.1
' Host: chilkatsoft.com
' Accept: */*
' Accept-Encoding: gzip
' X-Something: 1234
' X-Example: 5678

' Remove the request headers we previously added:
http.ClearHeaders 

responseBody = http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
outFile.WriteLine(http.LastHeader)

' Output:

' GET /helloWorld.txt HTTP/1.1
' Host: chilkatsoft.com
' Accept: */*
' Accept-Encoding: gzip

outFile.Close