Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Duplicate TLS 1.2 SOAP Request that uses .NET HttpWebRequestThis 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(); } }
' This example assumes Chilkat HTTP to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim http As Chilkat.Http Set http = Chilkat.NewHttp Dim req As Chilkat.HttpRequest Set req = Chilkat.NewHttpRequest req.HttpVerb = "POST" req.ContentType = "text/xml" req.SendCharset = True req.Charset = "utf-8" req.Path = "/webtax2/wsgsis/RgWsPublic/RgWsPublicPort?WSDL" xmlRequest = "...SOAP envelope..." success = req.LoadBodyFromString(xmlRequest) http.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. Set resp = http.SynchronousRequest("www3.gsis.gr",443,True,req) If (http.LastMethodSuccess <> True) Then Debug.Print http.LastErrorText Exit Sub End If xmlResponse = resp.BodyStr Debug.Print xmlResponse |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.