Sample code for 30+ languages & platforms
Xbase++

Example: Http.RemoveRequestHeader method

Demonstrates how to call the RemoveRequestHeader method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL cResponseBody

nSuccess := 0

oHttp := CreateObject("Chilkat.Http")

//  Add a request header.
oHttp:SetRequestHeader("X-Something", "1234")

cResponseBody := oHttp:QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
//  Examine the request header we just sent..
? oHttp:LastHeader
? "----"

//  Output:

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

//  Remove the request header we previously added:
oHttp:RemoveRequestHeader("X-Something")

cResponseBody := oHttp:QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
? oHttp:LastHeader

//  Output:

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

oHttp:destroy()