Sample code for 30+ languages & platforms
Java

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 Java Downloads

Java
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    boolean success = false;

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

    CkHttp http = new CkHttp();

    CkHttpRequest req = new CkHttpRequest();
    req.put_HttpVerb("POST");
    req.put_ContentType("text/xml");
    req.put_SendCharset(true);
    req.put_Charset("utf-8");
    req.put_Path("/webtax2/wsgsis/RgWsPublic/RgWsPublicPort?WSDL");

    String xmlRequest = "...SOAP envelope...";
    req.LoadBodyFromString(xmlRequest);

    http.put_FollowRedirects(true);

    // 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.
    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpSReq("www3.gsis.gr",443,true,req,resp);
    if (success == false) {
        System.out.println(http.lastErrorText());
        return;
        }

    String xmlResponse = resp.bodyStr();
    System.out.println(xmlResponse);
  }
}