Sample code for 30+ languages & platforms
Tcl Requires Chilkat v11.0.0+

Transition from Http.QuickPutStr to Http.HttpNoBody

Provides instructions for replacing deprecated QuickPutStr method calls with HttpNoBody.

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

set http [new_CkHttp]

#  ...
#  ...

set url "https://example.com/test"

#  ------------------------------------------------------------------------
#  The QuickPutStr method is deprecated:

set responseBody [CkHttp_quickPutStr $http $url]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    exit
}

#  ...
#  ...

#  ------------------------------------------------------------------------
#  Do the equivalent using HttpNoBody.
#  Your application creates a new, empty HttpResponse object which is passed 
#  in the last argument and filled upon success.

set responseOut [new_CkHttpResponse]

set success [CkHttp_HttpNoBody $http "PUT" $url $responseOut]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkHttpResponse $responseOut
    exit
}

set responseBody [CkHttpResponse_bodyStr $responseOut]

delete_CkHttp $http
delete_CkHttpResponse $responseOut