Sample code for 30+ languages & platforms
Tcl

Duplicate TLS 1.2 SOAP Request that uses .NET HttpWebRequest

See more HTTP Examples

This example shows how to duplicate a SOAP request that uses .NET's HttpWebRequest and requires TLS 1.2.
        string xmlRequest = "...envelope..."

        System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;

        string url = "https://www3.gsis.gr/webtax2/wsgsis/RgWsPublic/RgWsPublicPort?WSDL";
        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
        req.Method = "POST";
        req.ContentType = "text/xml;charset=UTF-8";

        byte[] reqBytes = new System.Text.UTF8Encoding().GetBytes(xmlRequest);

        req.ContentLength = reqBytes.Length;

        try {
            using (System.IO.Stream reqStream = req.GetRequestStream()) {
                reqStream.Write(reqBytes, 0, reqBytes.Length);
                reqStream.Flush();
                reqStream.Close();
            }

        } catch (Exception ex) {
            actionLogger.AddError(ex.Message, null);
            actionLogger.Validate();
        }

        string xmlResponse = null;
        using (HttpWebResponse resp = (HttpWebResponse)req.GetResponse()) {
            try {
                using (System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream())) {
                    xmlResponse = sr.ReadToEnd();
                    sr.Close();
                }
            } catch (Exception ex) {
                actionLogger.AddError(ex.Message, null);
                actionLogger.Validate();
            } finally {
                resp.Close();
            }
        }

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

# This example assumes Chilkat HTTP to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

set req [new_CkHttpRequest]

CkHttpRequest_put_HttpVerb $req "POST"
CkHttpRequest_put_ContentType $req "text/xml"
CkHttpRequest_put_SendCharset $req 1
CkHttpRequest_put_Charset $req "utf-8"
CkHttpRequest_put_Path $req "/webtax2/wsgsis/RgWsPublic/RgWsPublicPort?WSDL"

set xmlRequest "...SOAP envelope..."
CkHttpRequest_LoadBodyFromString $req $xmlRequest

CkHttp_put_FollowRedirects $http 1

# Chilkat will automatically offer TLS 1.2.  It is the server that
# chooses the TLS protocol version.  Assuming the server wishes to use
# TLS 1.2, then that is what will be used.
set resp [new_CkHttpResponse]

set success [CkHttp_HttpSReq $http "www3.gsis.gr" 443 1 $req $resp]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkHttpRequest $req
    delete_CkHttpResponse $resp
    exit
}

set xmlResponse [CkHttpResponse_bodyStr $resp]
puts "$xmlResponse"

delete_CkHttp $http
delete_CkHttpRequest $req
delete_CkHttpResponse $resp